Or VEX node

Performs a logical “or” operation between its inputs and returns 1 (if at least one…

All Inputs Outputs

See also: And, Not, Compare, If

This operator performs a logical “or” operation between its inputs and returns 1 (if at least one input is non-zero) or 0 (if all inputs are zero).

Typically, “or” is used as an input to conditional operators such as If and While. All inputs and the output data type are integers.

Inputs

Any number of inputs can be specified.

Input Number 1…N

The input values to be combined together.

Next Input

Where the next input value should be connected.

Outputs

Combined Value

The logical “or” combination of all inputs.

Inputs

Input Number 1…N

The input values to be combined together.

Next Input

Where the next input value should be connected. Up to 64 inputs can be specified.

Outputs

Combined Value

The logical “or” combination of all inputs.

Usages in other examples

Example name Example for