This function can be used to show or hide the system UI on Android and iOS only.
display_set_ui_visibility(flags);
Argument | Type | flags |
---|---|---|
flags | Real | The system flags to use (an integer value). |
N/A
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.