Quote:
Originally Posted by sam_is_me
k i kept my mouth shut for a while, but what is a temp.i, and why do you add ++ to it?
|
temp.i is set to 0, it's just a variable
while temp.i is still less than 100, each time it loops, 1 will be added to temp.i, untill it hits 99 (since he didnt use <= ) so it will basically loop the "screen shake" 99 times.