Scriptnode Square shape
-
Hi there, how can I add a extra step to this in script node?
-
@Christoph-Hart I've used your Scriptnode LFO example maybe you could help me
-
@treynterrio add another ternary step
input < 0.6f ? 0.0f : (input < 0.7f ? 1.0f : 2.0f)
-
@treynterrio Concatenate the ternary operator:
(input < 0.5f) ? 0 : (input < 0.75f) ? 1.0f : 2.0f