true
if at least one of the inputs is true
, and false
only if both inputs are false
.
a
(boolean): The first boolean value. Defaults to false
if not connected.b
(boolean): The second boolean value. Defaults to false
if not connected.result
(boolean): The result of the logical OR operation on the two input values.a
and b
input ports. These can come from other nodes or be set manually.result
output port will emit true
if at least one of a
or b
is true
, and false
if both are false
.result
output to other nodes as needed in your spell.[Trigger Action]
will receive true
and fire whenever either [Button Pressed]
or [Condition Met]
(or both) are true
.
a
and b
inputs are actually booleans. Connecting other data types may lead to unexpected behavior.false
which will not affect the result.true
even when you expect false
, double check that you haven’t accidentally connected a true
value to one of the inputs.true
if either or both inputs are true
. If you need true
only when both are true
, use the Boolean AND node instead.