ProtoFlux:NOR

From Resonite Wiki
NOR
A
*
B
Boolean

The NOR node takes in two value inputs (either a bool or a number value), and functions as both a logical NOR or bitwise NOR depending on the type used.

- If all inputs are false, then the result will be true.
- If any input is true, then the result is false.

Inputs

A (Pseudo-generic)

The first input value.

B (Pseudo-generic)

The second input value.

Outputs

* (Pseudo-generic)

Returns the result of a logical NOR of A and B if the node is a bool type, bitwise NOR otherwise.

See Also