ProtoFlux:NOR

From Resonite Wiki
Revision as of 15:52, 29 June 2024 by AmasterAmaster (talk | contribs) (Created a page for the NOR node.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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