spacer graphic
spacer graphic
Montage of games AGS Logo
spacer graphic

 

spacer graphic
Menu
spacer graphic Home
About
News
Features
Download AGS
spacer graphic Games 
Games main page
Award Winners
Picks of the month
Short games
Medium length games
Full length games
In Production
Hints & Tips
Community
Forums
AGSers World Map
Member websites
Chat
Resources
Tutorials
FAQ
Knowledge Base
Downloads
Links
AGS-related links
* AGS Manual
  * Scripting
    * Object functions and properties

StopMoving (object)

(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


User comments and notes
There are currently no user comments on this page.
The user comment facility is currently disabled.