ProtoFlux:Async For

From Resonite Wiki
Revision as of 21:34, 12 December 2024 by Yosh (talk | contribs) (Yosh moved page ProtoFlux:ASync For to ProtoFlux:Async For: ASync -> Async)
Async For
*
LoopStart
Count
LoopIteration
Reverse
LoopEnd
Iteration
Async

The Async For node is the analogue to the For node for an async context.

Inputs

* (IAsyncOperation)

Begin the for loop.

Count (int)

How many times to trigger LoopIteration.

Reverse (bool)

If True, the Iteration output will start at Count - 1 and go down towards 0.

Outputs

LoopStart (AsyncCall)

Fires after * is pulsed and before any iterations are done. Will be pulsed even if Count < 1.

LoopIteration (AsyncCall)

Fires for each iteration of the loop. This impulse is triggered <count>Count amount of times and the next iteration will only be fired once the current iteration's context is finished.

LoopEnd (Continuation)

Fires after the final LoopIteration completes execution.

Iteration (int)

For each LoopIteration, this output is set to be the index of the iteration for said iteration's context. By default, this will start at 0 and increment until Count - 1 unless Reverse is True.

Examples