Boolean nodes

utilities for nodes that output true or false values.


And boolean.and

outputs true only if all the inputs are true.


Button boolean.button

gives you a button to press and outputs its current state as a boolean.


Latch boolean.latch

stores a true or false value that can be changed through inputs.


Negate boolean.not

outputs true if the input is false, and vice-versa.


On Change boolean.change

outputs true the instant that the boolean input changes from true to false and vice-versa.

differently from the other change detection node, this one is specialized in booleans; for example, you can configure it so that it only outputs when turning from false to true, and not the other way around.


Or boolean.or

outputs true as long as any of the inputs is true.


Value boolean.constant

outputs a user-defined constant boolean value.