NOT
Boolean
The NOT node takes in a value input (either a bool or a number value), and functions as both a logical NOT or bitwise NOT depending on the type used.
Takes the input and reverses the result.
Inputs
A (Pseudo-generic)
The input value.
Outputs
* (Pseudo-generic)
Returns the result of a logical NOT of the input if the node is a bool type, bitwise NOT otherwise.
See Also
- Wikipedia's definition of logical NOT, bitwise not, & inverter (logic gate).
- Microsoft's documentation on the not operator.