Ped::attachSynchronizedSceneToEntity: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
 
Line 1: Line 1:


==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">ped.attachSynchronizedSceneToEntity(sceneID, entity, boneIndex);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.ped.attachSynchronizedSceneToEntity(sceneID, entity, boneIndex);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''sceneID:''' int
*'''sceneID:''' int
Line 10: Line 10:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Ped_function_c}}
{{Ped_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 21:29, 6 May 2017

Syntax

mp.game.ped.attachSynchronizedSceneToEntity(sceneID, entity, boneIndex);

Required Arguments

  • sceneID: int
  • entity: Entity handle or object
  • boneIndex: int

Return value

  • Undefined

Example

// todo

See also