Streaming::requestAnimSet: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
 
(One intermediate revision by one other user not shown)
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_functions_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 03:35, 27 May 2024

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