This site has been archived and made available for preservation purposes. No edits can be made.

GetActorMovingAnimation

Retrieves the current moving animation (see Actor animation) of an Actor.

[top]Declaration

Code cpp:
VAULTSCRIPT vaultmp::Index (*GetActorMovingAnimation)(vaultmp::ID);
native GetActorMovingAnimation(ID);

[top]Parameters

vaultmp::ID - the ID of the Actor

[top]Return value

Returns a vaultmp::Index containing the Actor animation.

[top]Usage example (C++)

Code cpp:
vaultmp::Index index;
index = GetActorMovingAnimation(actor);

[top]Related pages