← Back to Documentation

Loops & Flow Control

Loop Node

Repeats contained actions a specified number of times.

Settings

Iterations: Number of repeats (or infinite)

Counter Variable: Optional loop counter variable

While Loop

Repeats while condition is true.

Break Node

Exits the current loop early.

Continue Node

Skips to next loop iteration.

Conditional Branch

Splits flow based on condition. True path and False path.

Random Branch

Randomly chooses between multiple paths with configurable weights.