Instead of just for each element, also include a for each x, for each y, for each xy, for each yz, etc.
This actually exists already. When you go to the array and select "FOR EACH" you then a drop down box to select: X, XY, or XYZ. Providing you have 2D or 3D array.
Is there something different you were looking for?
Develop games in your browser. Powerful, performant & highly capable.
for each y doesn't exist though, but you can simulate it with
repeat array.height times:
(your cury will be loopindex)
Hmm, thank you. The manual entry on arrays wasn't clear on that part.