For Each Loop#
Executes the a loop body once for each element in the input array. The finished output is executed after all iterations are complete
Installation#
To use this Node, you must enable omni.graph.action
in the Extension Manager.
Inputs#
Name |
Type |
Description |
Default |
---|---|---|---|
Input Array (arrayIn) |
|
The array to loop over |
|
execIn |
|
Input execution |
Outputs#
Name |
Type |
Description |
Default |
---|---|---|---|
loopBody |
|
Executed for each element of the array |
|
element |
|
The current or last element of the array visited |
|
arrayIndex |
|
The current or last index visited |
|
finished |
|
Executed when the loop is finished |