Unit Reference ElseIfUnit - RealityStop/Bolt.Addons.Community GitHub Wiki
The Else If node allows checking multiple conditions in sequence.
It executes the first branch whose condition evaluates to true. If none of the conditions are true, execution continues through the Else branch.
Properties
- amount : The number of else if conditions to evaluate (max 10).
Input Ports
- Enter : The control flow input to start evaluating conditions.
- condition : The primary condition to evaluate.
- [ElseIf Conditions] : Additional conditions for sequential else if checks.
Output Ports
- If : Triggered if the main condition is true.
- [ElseIf Outputs] : Triggered if the corresponding else if condition is true.
- Else : Triggered if none of the conditions evaluate to true.