-
Notifications
You must be signed in to change notification settings - Fork 37
Unit Reference ElseIfUnit
S2NX7 edited this page Sep 30, 2025
·
2 revisions
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.