Graphics::setFlash: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
 
Line 1: Line 1:
Purpose of p0 and p1 unknown.
Purpose of p0 and p1 unknown.
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">graphics.setFlash(p0, p1, fadeIn, duration, fadeOut);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.graphics.setFlash(p0, p1, fadeIn, duration, fadeOut);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''p0:''' float
*'''p0:''' float
Line 12: Line 12:
==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

Purpose of p0 and p1 unknown.

Syntax

mp.game.graphics.setFlash(p0, p1, fadeIn, duration, fadeOut);

Required Arguments

  • p0: float
  • p1: float
  • fadeIn: float
  • duration: float
  • fadeOut: float

Return value

  • Undefined

Example

// todo

See also