initial commit
This commit is contained in:
commit
fe3761d448
122 changed files with 3439 additions and 0 deletions
10
Menus/MainMenu/scripts/fullscreen.gd
Normal file
10
Menus/MainMenu/scripts/fullscreen.gd
Normal file
|
@ -0,0 +1,10 @@
|
|||
extends Node
|
||||
|
||||
func _ready():
|
||||
pass
|
||||
|
||||
func _process(delta: float):
|
||||
pass
|
||||
|
||||
func toggle_fullscreen(state: bool):
|
||||
DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_FULLSCREEN if state else DisplayServer.WINDOW_MODE_WINDOWED)
|
Reference in a new issue