Car/Assets/Noisy-Nodes-master/NoiseShader
Yogi 235fc548ef 新增场景 2025-01-01 11:14:52 +08:00
..
HLSL 新增场景 2025-01-01 11:14:52 +08:00
HLSL.meta 新增场景 2025-01-01 11:14:52 +08:00
README.md 新增场景 2025-01-01 11:14:52 +08:00
README.md.meta 新增场景 2025-01-01 11:14:52 +08:00

README.md

Noise Shader Library for Unity

This is a Unity shader library that contains several gradient noise functions.

From webgl-noise written by Stefan Gustavson and Ahima Arts:

https://github.com/ashima/webgl-noise

  • Classic Perlin noise (2D/3D)
  • Periodic Perlin noise (2D/3D)
  • Simplex noise (2D/3D)
  • Analytical derivatives of simplex noise (2D/3D)

From K.jpg's SuperSimplex & FastSimplex repository:

https://github.com/KdotJPG/New-Simplex-Style-Gradient-Noise

  • SuperSimplexNoise (3D)
  • FastSimplexStyleNoise (3D)

The former ones are released under the MIT license, and the latter ones are public domain (Unlicense). Please check the header comments for details.