Can someone please look at my example project file and explain to me, why the player sprite doesn't show up in the most up place of the terrain. (the bottom code in the event sheet).
I thought an array iterates from left to right (x or width) and at end of x goes down (y or hight) to the next line.
Like array(0,0) -> (1,0) -> (2,0) ...
and NOT
array(0,0) -> (0,1) -> (0,2) ...