I am making a version of the iPhone game Don't Step On The White Tiles (hence the name), but need help with one thing- moving the tiles down. I've tried this:
Code:
It just takes too long. Also, I've done this to display the matrix:
Code:
Again, it takes too long. The code itself is easy, but very lagging. Any help would be appreciated.
Code:
For(A,3,1,-1
rowSwap([A],A,A+1→[A]
End
It just takes too long. Also, I've done this to display the matrix:
Code:
For(A,1,4
For(B,1,4
Output(A,B,sub("0-",[A](A,B)+1,1
End:End
Again, it takes too long. The code itself is easy, but very lagging. Any help would be appreciated.