Moving objects

Each object on screen has a direction it is moving in. This is a numerical value from 0 to 8:

When an object is moving normally (and has a direction greater than 0), it will continue moving until it is told to stop, move in another direction, or runs into an obstacle (such as a control line, a block, or another object).

An object's direction can be changed using the set.dir command. The get.dir command will allow you to find out what its current direction is. The direction of ego (object 0) is always stored in v6. To stop an object's movement, use stop.motion.

There are several commands which will make an object move in different ways:

move.obj/move.obj.v

wander

follow.ego

The normal.motion command will make the object to move in the way described above after it has been moving from one of these three commands.

An object's step size (the number of pixels moved each step) and step time (the number of interpreter cycles between steps) can be set with the step.size and step.time commands.

See also

set.dir

get.dir

stop.motion

start.motion

move.obj

move.obj.v

wander

follow.ego

normal.motion

step.size

step.time

Objects