Is there a reason that the switch node does not have a boolean option? Should I be using something else in its place to test a boolean value? (Currently I have resorted to text using 'true' and 'false'
You have is true
and is false
(these are boolean checks)
you can also use the J expression
it has an is true/false
option ?
'false' as a string will evaluate as true if you test it as boolean
Ah, haha. I was looking the wrong place!!! Thanks!!!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.