Unit Reference BetterIf - RealityStop/Bolt.Addons.Community GitHub Wiki
The If (Next) node evaluates a Boolean condition and branches control flow accordingly.
If the condition is true, execution continues through the True output;
if false, execution continues through the False output.
Unlike the standard If node, this version also provides a Next output port,
which will always be triggered after either branch has completed.
This makes it easier to continue execution in a unified flow after conditional branching Instead of needing a Sequence Unit.
Input Ports
- In : The incoming control flow.
- Condition : A Boolean value to evaluate.
Output Ports
-
True : Triggered if the condition evaluates to
true. -
False : Triggered if the condition evaluates to
false. - Finished : Always triggered after either the True or False branch.