Ui::resetHudComponentValues: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
mNo edit summary
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
__NOTOC__
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">ui.resetHudComponentValues(id);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.ui.resetHudComponentValues(componentIndex);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''id:''' int
*'''componentIndex:''' int (Full list: [[HUD Components|HUD Components list]])
===Return value===
===Return value===
*'''Undefined'''
*'''Undefined'''
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Ui_function_c}}
{{Ui_functions_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:UI API]]

Latest revision as of 09:49, 20 January 2018

Syntax

mp.game.ui.resetHudComponentValues(componentIndex);

Required Arguments

Return value

  • Undefined

Example

// todo

See also