first commit

This commit is contained in:
2025-07-20 10:34:21 +02:00
commit a5634c4619
812 changed files with 61126 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
extends Button
func _ready() -> void:
pressed.connect(_toggle_fullscreen)
# Set scaling properties and base resolution
get_window().mode = Window.MODE_FULLSCREEN
get_window().content_scale_aspect = Window.CONTENT_SCALE_ASPECT_KEEP
get_window().content_scale_mode = Window.CONTENT_SCALE_MODE_CANVAS_ITEMS
get_window().content_scale_size = Vector2i(1920,1080)
func _toggle_fullscreen() -> void:
if get_window().mode != Window.MODE_FULLSCREEN:
get_window().mode = Window.MODE_FULLSCREEN
else:
get_window().mode = Window.MODE_MAXIMIZED