NOT
The NOT node flips a boolean value. If the input is true, the output is false. If the input is false, the output is true. This is a simple but essential logic node for reversing conditions in your flow.
Inputs
| Name | Type | Description |
|---|---|---|
Value | boolean | The boolean value to invert |
Outputs
| Name | Type | Description |
|---|---|---|
Result | boolean | The inverted boolean value |
Example
You want to run an effect only when your stream is offline. The Stream Status data node outputs true when you are live. Connect it to a NOT node to flip it -- now it outputs true when you are offline. Feed that into a Gate node to control when your offline-only effects run.