Skip to content

Not

The Not node is a node that applies the NOT logical operation to a boolean input. If the input is true, it will output false, and if the input is false if will output true.

Inputs and Outputs

Inputs:

  • Value (Boolean): The first condition.

Outputs:

  • Result (Boolean): The resulting value, which is true when Value is false and false when Value is true.

Example