display_set_ui_visibility

This function can be used to show or hide the system UI on Android and iOS only.

 

Syntax:

display_set_ui_visibility(flags);

ArgumentTypeflags
flagsRealThe system flags to use (an integer value).

 

Returns:

N/A

 

Example:

var flags = 1024|4096;
display_set_ui_visibility(flags);

The above code will use the Android system flags "SYSTEM_UI_FLAG_IMMERSIVE_STICKY" and "SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN" to set the visibility of the display.