Object.StopAnimating()
Stops the object from animating. It will remain on its current frame until you change it
or start a new animation.
Example:
if (object[2].Animating) {
object[2].StopAnimating();
}
will stop object 2 animating if it currently is doing so.
See Also: Object.Animate,
Object.Animating
|