-
-
Notifications
You must be signed in to change notification settings - Fork 18
window_get_fullscreen
drewmccluskey edited this page Feb 12, 2019
·
3 revisions
Returns if window is fullscreen or not
window_get_fullscreen()
Returns: bool
Returns true or false based on if the window is fullscreen or windowed
bool full_screen = window_get_fullscreen();
show_debug_message(full_screen.ToString());
The above code will return wether the current window is fullscren or not. If yes it will return True
, if not it will return False
.
Back to window-functions