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)

arrays, bool[]

The array to loop over

execIn

execution

Input execution

Outputs#

Name

Type

Description

Default

loopBody

execution

Executed for each element of the array

element

array_elements, bool

The current or last element of the array visited

arrayIndex

int

The current or last index visited

finished

execution

Executed when the loop is finished