(Formerly known as StopObjectMoving, which is now obsolete)
Object.StopMoving()
Stops the object from moving. It will remain in its current position
until any further commands are issued.
Example:
if (object[2].Moving) {
object[2].StopMoving();
}
will stop object 2 moving if it currently is doing so.
See Also: Object.Moving, Object.Move,
Character.StopMoving
|