OR
Boolean
The OR node takes in two value inputs (either a bool or a number value), and functions as both a logical OR or bitwise OR depending on the type used.
If at least one of the inputs are true, then the result will be true.
Inputs
A (Pseudo-generic)
The first input value.
B (Pseudo-generic)
The second input value.
Outputs
* (Pseudo-generic)
Returns the result of a logical OR of A
and B
if the node is a bool type, bitwise OR otherwise.
Further Reading
Videos
See Also
- Wikipedia's definition of logical disjunction, bitwise or, & or gate.
- Microsoft's documentation on the or operator.