ClearActorAnimations
From SA-MP Wiki
Description:
Clear any animations applied to an actor.
(actorid)
actorid | The ID of the actor (returned by CreateActor) to clear the animations for. |
Return Values:
- 1: The function executed successfully.
- 0: The function failed to execute. The actor specified does not exist.
new MyActor; public OnGameModeInit() { MyActor = CreateActor(...); } // Somewhere else ApplyActorAnimation(MyActor, ...); // Somewhere else ClearActorAnimations(MyActor);
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- ApplyActorAnimation: Apply an animation to an actor.