DIM TableMap[25] = [
5,2,1,3,5,
5,4,3,3,1,
3,3,1,1,4,
3,2,5,1,2,
5,2,4,2,3]
fills the array from 0 to 24 => 25 entries
0 = 1 ; 1 = 2 ; 2 = 3 .....
so you have to use:
DO
FOR x = 0 TO 24
Print(TableMap[x])
NEXT x
Sync()
LOOP
Quote: "Orthographic mode [ SetCameraFOV(1,0) ] seems to have some culling issues"
I can't confirm it, because I don't use it right now, can you please build a snippet for Paul with the culling error?
If the culling is urgent for you, you can disable the object culling and write a custom routine, this should work until the bug is fixed.