GPUNoiseForUnity
GPUNoiseForUnity copied to clipboard
[Suggestion] Node Additions
Just a list of nodes that would be nice to have. I may contribute these myself if I find time.
Constant values
- Pi
- Phi
- Tau
- Root 2
- Custom internal constant value - Probably useful if a single constant value is shared between a lot of different nodes, so you can easily change them all at once
Conditional Nodes These all have 4 inputs: A, B, True, False A and B are compared, if true then True is the ouput, otherwise False is the output. This is currently possible using a custom expression: "$1 > $2 ? $3 : $4"
- A > B
- A >= B
- A == B
- A <= B
- A < B
- A != B
Misc
- Redirect Node - Just a node used for organizing input/output lines. Would work similar to LBP: http://i.imgur.com/hz2Qk.png (The tiny circles with the triangles)