mirror of
https://github.com/DigvijaysinhGohil/Godot-Shader-Lib.git
synced 2025-09-19 11:56:01 +08:00
Documentation overhaul
This commit is contained in:
15
documentation/Nodes/Procedural/Noise/GradientNoise.md
Normal file
15
documentation/Nodes/Procedural/Noise/GradientNoise.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Gradient Noise node
|
||||
Generates a gradient, or Perlin noise based on input UV. The resulting <b><i>output</i></b> values will be between -1 and 1.
|
||||
<hr>
|
||||
|
||||
**Inputs**
|
||||
|Name|Type|Binding|Description|
|
||||
|---|---|---|---|
|
||||
|uv|vec2|UV|Input UV value|
|
||||
|scale|float|none|Noise scale|
|
||||
|
||||
**Outputs**
|
||||
|Name|Type|Binding|Description|
|
||||
|---|---|---|---|
|
||||
|output|float|None|Output noise value|
|
||||
___
|
14
documentation/Nodes/Procedural/Noise/PseudoRandomNoise.md
Normal file
14
documentation/Nodes/Procedural/Noise/PseudoRandomNoise.md
Normal file
@ -0,0 +1,14 @@
|
||||
# Pseudo Random Noise node
|
||||
Generates a pseudo random noise based on input seed. The resulting <b><i>output</i></b> values will be between 0 and 1.
|
||||
<hr>
|
||||
|
||||
**Inputs**
|
||||
|Name|Type|Binding|Description|
|
||||
|---|---|---|---|
|
||||
|seed|float|none|Input seed|
|
||||
|
||||
**Outputs**
|
||||
|Name|Type|Binding|Description|
|
||||
|---|---|---|---|
|
||||
|output|float|None|Output noise value|
|
||||
___
|
15
documentation/Nodes/Procedural/Noise/SimpleNoise.md
Normal file
15
documentation/Nodes/Procedural/Noise/SimpleNoise.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Simple Noise node
|
||||
Generates a simplex, or value noise based on input UV. The resulting <b><i>output</i></b> values will be between 0 and 1.
|
||||
<hr>
|
||||
|
||||
**Inputs**
|
||||
|Name|Type|Binding|Description|
|
||||
|---|---|---|---|
|
||||
|uv|vec2|UV|Input UV value|
|
||||
|scale|float|none|Noise scale|
|
||||
|
||||
**Outputs**
|
||||
|Name|Type|Binding|Description|
|
||||
|---|---|---|---|
|
||||
|output|float|None|Output noise value|
|
||||
___
|
17
documentation/Nodes/Procedural/Noise/Voronoi.md
Normal file
17
documentation/Nodes/Procedural/Noise/Voronoi.md
Normal file
@ -0,0 +1,17 @@
|
||||
# Voronoi node
|
||||
Generates a Voronoi or Worley noise based on input UV. Voronoi noise is generated by calculating distances between a pixel and a lattice of points. By offsetting these points by a pseudo-random number, controlled by <b><i>angle offset</i></b>, a cluster of cells can be generated.
|
||||
<hr>
|
||||
|
||||
**Inputs**
|
||||
|Name|Type|Binding|Description|
|
||||
|---|---|---|---|
|
||||
|uv|vec2|UV|Input UV value|
|
||||
|cell density|float|none|Density of generated cells|
|
||||
|angle offset|float|none|Offset values for points|
|
||||
|
||||
**Outputs**
|
||||
|Name|Type|Binding|Description|
|
||||
|---|---|---|---|
|
||||
|output|float|None|Output noise value|
|
||||
|cells|float|None|Raw cell data|
|
||||
___
|
Reference in New Issue
Block a user