You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
全炜民 76d40207cb
FinalVersion
1 year ago
..
LICENSE FinalVersion 1 year ago
LICENSE.meta FinalVersion 1 year ago
README FinalVersion 1 year ago
README.meta FinalVersion 1 year ago
cellular2D.cs FinalVersion 1 year ago
cellular2D.cs.meta FinalVersion 1 year ago
cellular2x2.cs FinalVersion 1 year ago
cellular2x2.cs.meta FinalVersion 1 year ago
cellular2x2x2.cs FinalVersion 1 year ago
cellular2x2x2.cs.meta FinalVersion 1 year ago
cellular3D.cs FinalVersion 1 year ago
cellular3D.cs.meta FinalVersion 1 year ago
classicnoise2D.cs FinalVersion 1 year ago
classicnoise2D.cs.meta FinalVersion 1 year ago
classicnoise3D.cs FinalVersion 1 year ago
classicnoise3D.cs.meta FinalVersion 1 year ago
classicnoise4D.cs FinalVersion 1 year ago
classicnoise4D.cs.meta FinalVersion 1 year ago
common.cs FinalVersion 1 year ago
common.cs.meta FinalVersion 1 year ago
noise2D.cs FinalVersion 1 year ago
noise2D.cs.meta FinalVersion 1 year ago
noise3D.cs FinalVersion 1 year ago
noise3D.cs.meta FinalVersion 1 year ago
noise3Dgrad.cs FinalVersion 1 year ago
noise3Dgrad.cs.meta FinalVersion 1 year ago
noise4D.cs FinalVersion 1 year ago
noise4D.cs.meta FinalVersion 1 year ago
psrdnoise2D.cs FinalVersion 1 year ago
psrdnoise2D.cs.meta FinalVersion 1 year ago

README

These files contain noise functions that are compatible with all
current versions of GLSL (1.20 and up), and all you need to use them
is provided in the source file. There is no external data, and no
setup procedure. Just cut and paste and call the function.

GLSL has a very rudimentary linker, so some helper functions are
included in several of the files with the same name. If you want to
use more than one of these functions in the same shader, you may run
into problems with redefinition of the functions mod289() and permute().
If that happens, just delete any superfluous definitions.

-----

Source: https://github.com/ashima/webgl-noise
Changes:
 - 10 April 2018, Unity Technologies, Ported to HPC#