               MOVE (10,0,0)
               AGAIN
               
     2         INCLUDE (2)
               LOOP (10)
               MOVE (40,0,0)
               AGAIN

Animation 1 will move a lot slower than Animation 2 even
though they are both going over the same distance.

     To make an object glide backwards and forwards across
the screen, enter the following into the animation
controller,

               INCLUDE (2)
               LOOP (20)
               MOVE (10,0,20)
               AGAIN
               LOOP (20)
               MOVE (-10,0,-20)
               AGAIN

     These are the main commands that are used in
animations and if you play around with combinations of
these, you can get some good results.