Hi,
I want to create a frame dynamically for a store, but the loopindex is not working and they all get created on the same coordinates, what am I doing wrong? Thanks!
Develop games in your browser. Powerful, performant & highly capable.
Loopindex is a system expression, and only works on system loops.
For arrays, you need to use array.curx and array.cury instead.
Or use a system repeat or for loop instead, from 0 to array.width-1.
You absolute legend, thanks!