summaryrefslogtreecommitdiffstats
path: root/Editor
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2024-11-09 16:48:23 -0800
committeryum <yum.food.vr@gmail.com>2024-11-09 16:48:39 -0800
commit82b3aa6059d6c118c6fd617be49ee6f070e153a0 (patch)
tree665971fe1a433e58f9484bbb1ecadf910a3cd8ef /Editor
parentc5d3fb245c692e238250a46afa60564ab4cf5eb1 (diff)
Add seed to interleaved gradient noise cutout
Diffstat (limited to 'Editor')
-rw-r--r--Editor/tooner.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Editor/tooner.cs b/Editor/tooner.cs
index 953f5c5..df3fa9d 100644
--- a/Editor/tooner.cs
+++ b/Editor/tooner.cs
@@ -2510,6 +2510,9 @@ public class ToonerGUI : ShaderGUI {
TexturePropertySingleLine(
MakeLabel(bc, "Noise mask"),
bc);
+ } else if (cmode == CutoutMode.InterleavedGradientNoise) {
+ bc = FindProperty("_Rendering_Cutout_Ign_Seed");
+ FloatProperty(bc, "Seed");
}
EditorGUI.indentLevel -= 1;
}