Is it possible to loop backwards in a For Loop? i.e Step -1 from other languages? I can't see anything in the manual.
Develop games in your browser. Powerful, performant & highly capable.
I usually subtract the loopindex from the max value.
for 1 to max
a=max-loopindex
would that work?
Yeah, that'd do the trick, better than my plan to have a local variable just count down. C2 could use a 'step' counter though in my opinion.
Thanks :)