arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.shadergraph@940512a5d7e1/Documentation~/Not-Node.md
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

556 B

Not node

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.

Ports

Name Direction Type Binding Description
In Input Boolean None The input value.
Out Output Boolean None The opposite of In.

Generated code example

The following example code represents one possible outcome of this node.

Out = !In;