AnimalCurrentMoveToAction Property |
After your creature has begun moving you can get the MoveToAction object that
represents your creature's current movement action. You can use this to examine
the movement location and speed that your creature moving to see if you'll need
to alter your course.
Namespace: Terrarium.Sdk.Classes.CreatureAssembly: Terrarium.Sdk (in Terrarium.Sdk.dll) Version: 1.1.0.0 (1.1.0.0)
Syntaxpublic MoveToAction CurrentMoveToAction { get; }
Public ReadOnly Property CurrentMoveToAction As MoveToAction
Get
public:
property MoveToAction^ CurrentMoveToAction {
MoveToAction^ get ();
}
member CurrentMoveToAction : MoveToAction with get
Return Value
Type:
MoveToAction
A MoveToAction object representing the current movement and the values
passed into BeginMoving.
See Also