While Loop
The While Loop evaluates a condition at the start of each iteration. The loop continues running its inner nodes as long as the condition is true. When the condition becomes false, the loop exits.
Configuration
| Field | Description |
|---|---|
| Title | A name for this loop node |
| Description | Optional notes about the loop's purpose |
| Condition | The binary expression evaluated before each iteration. The loop runs while this is true |
Loop Canvas
Click Configure While Loop to open the nested canvas.
A Binary Condition node is placed automatically at the start. Connect the If branch to the nodes that should run each iteration, and the Else branch to a Break node to exit the loop. Click Save to apply.

