Iterates over an array in steps of three and outputs three values
summary (oneliner)
doc
issues
example patch id
youtube ids (comma seperated)
caniuse query
collections
Inputs
Execute (Trigger)
Starts the iteration
Array (Array)
The array to iterate over
Step (Number)
If bigger then 1
, values will be skipped, e.g. when Step
is 2
every other triplet will be skipped
Outputs
Trigger (Trigger)
Triggers for every iteration step (triplet in the array)
Index (Number)
The index of the triplet
Value 1 (Number)
First value of the current triplet (e.g. x)
Value 2 (Number)
Second value of the current triplet (e.g. y)
Value 3 (Number)
Third value of the current triplet (e.g. z)
Patches using IteratorArray3
Changelog
Ops.Array.ArrayIterator3x renamed to Ops.Array.IteratorArray3 2019-06-13 - pandur |