Streaming::requestAnimSet: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
Line 1: Line 1:
Starts loading the specified animation set. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET.
Starts loading the specified animation set. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET.
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">streaming.requestAnimSet(animSet);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.streaming.requestAnimSet(animSet);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''animSet:''' String
*'''animSet:''' String
Line 8: Line 8:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Streaming_function_c}}
{{Streaming_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Revision as of 21:32, 6 May 2017

Starts loading the specified animation set. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET.

Syntax

mp.game.streaming.requestAnimSet(animSet);

Required Arguments

  • animSet: String

Return value

  • Undefined

Example

// todo

See also

Template:Streaming s function c