Does the Repeat component pulse true every iteration of the loop, or just on the first iteration?
The documentation says that it's only for the first iteration of the loop.
However, the given example relies on a loop counter being incremented by the pulse(s) coming out of the Repeat.
If it does only pulse on the first iteration, then the example will never iterate over the array, since the loop counter, which provides the index to the array, will never move past 1.
(If however, the Repeat pulses on every iteration, then the array will be looped over infinitely, since the index is being reset every iteration of the loop.)
Since the given example is broken, can someone give a working example of how to iterate over an array?
I need to do exactly this task.
Thanks!