The Not node outputs the opposite of an input. If the input is true the output is false, otherwise the output is true. This node is useful for branching.
| Name | Direction | Type | Binding | Description |
|---|---|---|---|---|
| In | Input | Boolean | None | The input value. |
| Out | Output | Boolean | None | The opposite of In. |
The following example code represents one possible outcome of this node.
Out = !In;