Hello people of SB! You might remember me, probably not... but anyways i have come to ask a question. Could anyone explain the DIM function to me? thanks to anyone who helps!
it defines either arrays, or variables(arrays contain data of up to 4 dimensions)
examples of DIM
DIM VARIABLE
DIM ARRAY[w,h,l]
it stores data in a certain order
with the code I posted you could do something like
FOR I=0 TO LEN(X)-1
SPSET I,1+I:SPOFS I,X[I],180
NEXT
to place multiple sprites, etc. There's plenty you can do with DIM