ClearActorAnimations

From SA-MP Wiki

Jump to: navigation, search

ClearActorAnimations was added in SA-MP 0.3.7 This function was added in SA-MP 0.3.7 and will not work in earlier versions!


Description:

Clear any animations applied to an actor.


Parameters:
(actorid)
actoridThe 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.

In other languages