hayored
12-08-2002, 06:51 PM
I have a loop, that moves an object. My code is:
n = 1
do {
object._x = n ;
n = n + 1 ;
} while (n < 600) ;
The problem is that the object moves very fast. Is there any command I can insert to waiting for 10 miliseconds and doing nothing?
Thanks,
YH
n = 1
do {
object._x = n ;
n = n + 1 ;
} while (n < 600) ;
The problem is that the object moves very fast. Is there any command I can insert to waiting for 10 miliseconds and doing nothing?
Thanks,
YH