Hundreds of features to explore
Games made in Construct
Your questions answered
Popular & trusted by schools and Universities world-wide
Construct 3 runs in the browser & works offline
Students do not need accounts with us
Our educational partners
Free education resources to use in the classroom
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
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.