Difference between revisions of "SendShowOrHideAllUIEvent"

From Nomad DB
Line 18: Line 18:
 
SendShowOrHideAllUIEvent(1)
 
SendShowOrHideAllUIEvent(1)
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
== Related Pages ==
 +
* [[:Category:WD2 UI|UI Functions]]
  
 
[[Category:WD2 UI]]
 
[[Category:WD2 UI]]

Revision as of 14:55, 15 April 2020

Toggle the HUD visibility state

Syntax

SendShowOrHideAllUIEvent(visible)
  • visible (number): 0 to disable and 1 to enable the HUD
  • Returns (boolean): Wether the call has been successful or not

Example

The example below will disable my HUD

SendShowOrHideAllUIEvent(0)

The example below will enable my HUD

SendShowOrHideAllUIEvent(1)

Related Pages