Community ProtoFlux Library/AmasterAmaster/Flow/For Float: Difference between revisions
From Resonite Wiki
Created a page for the For Float custom node. |
Style - Forgot it was "Call". |
||
Line 24: | Line 24: | ||
== Inputs == | == Inputs == | ||
=== * ([[Impulses]]) === | === * ([[Impulses|Call]]) === | ||
Calls to start the for loop. | Calls to start the for loop. |
Latest revision as of 03:22, 23 August 2024
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
* (Call)
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.