I have a switch node with 3 inputs and i would like to switch the input evry 140 frame.
0-140 input 0
140-280 input 1
280-420 input 2
How can i achieve that?
thank you
demonsd_miles17put an expression in the switch Input parm, something like this:
i would like to switch the input evry 140 frame.
floor($F/140)
($F>=140) + ($F>=280)