Or (Logic)
Menu Path : Operator > Logic > Or
The Or Operator takes two inputs and outputs the result of a logical or operation between them. The result of A Or B is true if either A or B is true. This Operator is equivalent to the C# || operator.
Operator properties
| Input | Type | Description | 
|---|---|---|
| A | bool | The left operand. If this is truethen o istrue. | 
| B | bool | The right operand. If this is truethen o istrue. | 
| Output | Type | Description | 
|---|---|---|
| o | bool | If A or B is true, this value istrue. Otherwise, if both A and B arefalsethis value isfalse. |