For<float>
Amaster's Flow Library
The For Float node acts like a For loop but using a float input instead of using an int. This is mainly used to loop between two points (a bezier curve line is a good example to this), and each segment of that line gets its own iteration for the loop between 0
and 1
.
Inputs
* (Impulses)
Calls to start the for loop.
Increment (float)
The condition to check to keep looping (as long as this number is between 0
and 1
).
Reverse (bool)
Allows the loop to go in reverse.
Outputs
LoopStart (Continuation)
Fires when the loop begins.
LoopIteration (Continuation)
Fires for the loop iteration.
LoopEnd (Continuation)
Fires when the loop ends.
Iteration (int)
Shows the current iteration for this loop.