Hi, I have here in the .capx (link provided) a spawning system using an array that I recreated in a fresh empty project. I find that the values when entered manually work fine, however using the csv2array plugin creates errors in the spawning it's kind of all over the place. (Double spawns and skipped spawns).
I am most likely missing something very obvious as usual lol.
OneDrive .capx:
1drv.ms/u/s!ArCLSBh94cMH2l1Vo1aMdtQIw1nA
Thanks.
Your mistake is that you think X is the horizontal axis, but in 2D arrays it's vertical. So rows are X or Width, and columns are Y or Height.
You need to update your code like this:
Note that XValue should start with -1
Develop games in your browser. Powerful, performant & highly capable.
You're a star it works perfectly! Thanks a lot for your help and clear/detailed instructions.