Streaming::hasAnimSetLoaded: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
Line 1: Line 1:
Gets whether the specified animation set has finished loading. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET.<br><br>Animation set and clip set are synonymous.
Gets whether the specified animation set has finished loading. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET.<br><br>Animation set and clip set are synonymous.
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">streaming.hasAnimSetLoaded(animSet);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.streaming.hasAnimSetLoaded(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

Gets whether the specified animation set has finished loading. An animation set provides movement animations for a ped. See SET_PED_MOVEMENT_CLIPSET.

Animation set and clip set are synonymous.

Syntax

mp.game.streaming.hasAnimSetLoaded(animSet);

Required Arguments

  • animSet: String

Return value

  • Boolean

Example

// todo

See also

Template:Streaming s function c