Graphics::drawDebugCross: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
 
Line 1: Line 1:
NOTE: Debugging functions are not present in the retail version of the game.
NOTE: Debugging functions are not present in the retail version of the game.
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">graphics.drawDebugCross(x, y, z, size, r, g, b, alpha);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.graphics.drawDebugCross(x, y, z, size, r, g, b, alpha);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''x:''' float
*'''x:''' float
Line 15: Line 15:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Graphics_function_c}}
{{Graphics_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 21:13, 6 May 2017

NOTE: Debugging functions are not present in the retail version of the game.

Syntax

mp.game.graphics.drawDebugCross(x, y, z, size, r, g, b, alpha);

Required Arguments

  • x: float
  • y: float
  • z: float
  • size: float
  • r: int
  • g: int
  • b: int
  • alpha: int

Return value

  • Undefined

Example

// todo

See also