Skip to content

window_get_fullscreen

drewmccluskey edited this page Feb 12, 2019 · 3 revisions

window_get_fullscreen

Returns if window is fullscreen or not

Syntax:

window_get_fullscreen()

Returns: bool

Description:

Returns true or false based on if the window is fullscreen or windowed

Example:

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

Clone this wiki locally