note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
GetActorFacingAngle
warning
This function was added in SA-MP 0.3.7 and will not work in earlier versions!
Description
Get the facing angle of an actor.
Name | Description |
---|---|
actorid | The ID of the actor to get the facing angle of. Returned by CreateActor. |
&Float:angle | A float variable, passed by reference, in to which the actor's facing angle will be stored. |
Returns
true - The function executed successfully.
false - The function failed to execute. The actor specified does not exist.
The actor's facing angle is stored in the specified variable.
Examples
new Float:facingAngle;
GetActorFacingAngle(actorid, facingAngle);
Related Functions
- SetActorFacingAngle: Set the facing angle of an actor.
- GetActorPos: Get the position of an actor.