Ui::setRadarBigmapEnabled: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
Line 1: Line 1:
Toggles the big minimap state like in GTA:Online.
Toggles the big minimap state like in GTA:Online.
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">ui.setRadarBigmapEnabled(toggleBigMap, showFullMap);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.ui.setRadarBigmapEnabled(toggleBigMap, showFullMap);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''toggleBigMap:''' Boolean
*'''toggleBigMap:''' Boolean
Line 9: Line 9:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Ui_function_c}}
{{Ui_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Revision as of 21:33, 6 May 2017

Toggles the big minimap state like in GTA:Online.

Syntax

mp.game.ui.setRadarBigmapEnabled(toggleBigMap, showFullMap);

Required Arguments

  • toggleBigMap: Boolean
  • showFullMap: Boolean

Return value

  • Undefined

Example

// todo

See also