Player::stopAnimation: Difference between revisions

From RAGE Multiplayer Wiki
m (Replaced HTML with template)
 
(2 intermediate revisions by 2 users not shown)
Line 4: Line 4:


==Syntax==
==Syntax==
{{ServersideCode|
<pre>
<pre>
player.stopAnimation()
player.stopAnimation()
</pre>
</pre>
}}


==Example==
==Example==
{{ServersideCode|
{{ServersideCode|
<pre>
<pre>
// todo
// call this events from client side to do animation for 10s and stop it
 
mp.events.add("DoMedicalCheck", (player) => {
    player.playScenario('CODE_HUMAN_MEDIC_KNEEL');
    setTimeout(() => {
        player.stopAnimation();
    }, 10000)
})
</pre>
</pre>
}}
}}

Latest revision as of 14:56, 3 May 2021

This method stops animation of the player

Parameters

None

Syntax

player.stopAnimation()

Example

Server-Side
// call this events from client side to do animation for 10s and stop it

mp.events.add("DoMedicalCheck", (player) => {
    player.playScenario('CODE_HUMAN_MEDIC_KNEEL');
    setTimeout(() => {
        player.stopAnimation();
    }, 10000)
})

See Also