Player::playerAttachVirtualBound: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
 
Line 1: Line 1:
Only 1 match. ob_sofa_michael.<br><br>PLAYER::PLAYER_ATTACH_VIRTUAL_BOUND(-804.5928f, 173.1801f, 71.68436f, 0f, 0f, 0.590625f, 1f, 0.7f);1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1;
Only 1 match. ob_sofa_michael.<br><br>PLAYER::PLAYER_ATTACH_VIRTUAL_BOUND(-804.5928f, 173.1801f, 71.68436f, 0f, 0f, 0.590625f, 1f, 0.7f);1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1;
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">player.playerAttachVirtualBound(p0, p1, p2, p3, p4, p5, p6, p7);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.player.playerAttachVirtualBound(p0, p1, p2, p3, p4, p5, p6, p7);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''p0:''' float
*'''p0:''' float
Line 15: Line 15:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Player_function_c}}
{{Player_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 21:31, 6 May 2017

Only 1 match. ob_sofa_michael.

PLAYER::PLAYER_ATTACH_VIRTUAL_BOUND(-804.5928f, 173.1801f, 71.68436f, 0f, 0f, 0.590625f, 1f, 0.7f);1.0.335.2, 1.0.350.1/2, 1.0.372.2, 1.0.393.2, 1.0.393.4, 1.0.463.1;

Syntax

mp.game.player.playerAttachVirtualBound(p0, p1, p2, p3, p4, p5, p6, p7);

Required Arguments

  • p0: float
  • p1: float
  • p2: float
  • p3: float
  • p4: float
  • p5: float
  • p6: float
  • p7: float

Return value

  • Undefined

Example

// todo

See also