Is it possible to use For each loops to iterate over nested loops in the following way?
For Each Sprite: set i to sprite.UID
For each Sprite: set j to Sprite.UID
Array set at XY(ii, jj) = some number
Looking at the debugger, it seems that the first loop iterates entirely, then the next loop; in other words, they are not treated as nested like it would in a typical programming context. This example is trivial, but I am wondering if/how this works in Construct generally. Can anyone help and/or explain?