Player::stopAnimTask: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
 
Line 10: Line 10:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
// todo
mp.players.local.stopAnimTask("random@shop_robbery", "robbery_action_f", 3.0);
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Player_function_c}}
{{Player_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 08:48, 14 October 2020

Syntax

player.stopAnimTask(animDictionary, animationName, p3);

Required Arguments

  • animDictionary: String
  • animationName: String
  • p3: float

Return value

  • Undefined

Example

mp.players.local.stopAnimTask("random@shop_robbery", "robbery_action_f", 3.0);

See also