fullscreen toggle

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

View File

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