fullscreen toggle

This commit is contained in:
Alexander Popov 2023-01-09 01:41:08 +03:00
parent ef497cbc5e
commit 00e0f5b1a1
2 changed files with 13 additions and 0 deletions

View File

@ -61,6 +61,11 @@ indent_size = 4
indent_style = tab
indent_size = 4
# GameMaker
[*.gml]
indent_style = tab
indent_size = 4
## for this repo
[~/SSH/config]
indent_style = tab

View File

@ -0,0 +1,8 @@
/// @description Fullscreen toggle
if window_get_fullscreen() {
window_set_fullscreen(false);
}
else {
window_set_fullscreen(true);
}