BrainGrid Controller
Process Orchestrator
Loops
Loop Blocks

Loop Blocks

Loop blocks are special control nodes used inside the nested canvas of any loop. They modify the flow of the current iteration.

Break and Continue loop block nodes

Break

The Break block immediately exits the loop when the process reaches it. No further iterations run and the process continues to the next node after the loop on the main canvas.

Place a Break node on the branch that should stop the loop — typically the Else branch of a condition node inside the loop.

Continue

The Continue block skips the remaining nodes in the current iteration and jumps directly to the start of the next iteration. The loop itself keeps running.

Place a Continue node on a branch where you want to skip the rest of the logic for that cycle without stopping the loop entirely.