Or - ||
Logical nodes
Condition
Value
Released in version:
1.0.0
Flutter/Dart link:

The "Or - ||" node is a logical node used to denote a condition where either of the two conditions is true. If both conditions are false, the return value is false.
Check the table below with the results of this node:
Item1
Item2
Result
False
False
False
True
False
True
False
True
True
True
True
True
Inputs
Input Name
Canvas Required
Type
Description
item1
Bool
Condition 1 for the or operator
item2
Bool
Condition 2 for the or operator
Outputs
Output Name
Canvas Required
Type
Description
result
Bool
Result from applying the or operator to "item1" and "item2" inputs
Last updated