Or - ||

Logical nodes

ConditionValue

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:

Item1Item2Result

False

False

False

True

False

True

False

True

True

True

True

True

Inputs

Input NameCanvas RequiredTypeDescription

item1

Bool

Condition 1 for the or operator

item2

Bool

Condition 2 for the or operator

Outputs

Output NameCanvas RequiredTypeDescription

result

Bool

Result from applying the or operator to "item1" and "item2" inputs

Last updated