I am trying to build a frame that loads it's level based on CSV that I created. I add all the values of the CSV into an Array and then using the values of the Array create the actives necessary.
The problem I am having is that other than the first row of tiles, my loop is not getting the value of the first index of X.
I've been working on it for 2 days now and can't seem to find out why this is happening.
I have attached my MFA and the CSV so that anyone can look at it to help.
Check the order of your actions. It could be incrementing the X value before reading the value.
Or it could be a 1-index thing (arrays are not 0-index by default - check the object properties)