Lots of little tweaks and fixes

This commit is contained in:
2026-06-12 20:26:00 -05:00
parent 7fc1a4645c
commit 3d01fcce86
32 changed files with 570 additions and 160 deletions
+2
View File
@@ -9,6 +9,8 @@ func _unhandled_input(event:InputEvent) -> void:
var menu:PauseMenu = UI.PAUSE_MENU
if menu == null:
return
if SCENE.currentScene == SceneSingleton.SceneType.INITIAL and !menu.isOpen():
return
if menu.isOpen():
menu.close()
else:
+1
View File
@@ -4,3 +4,4 @@ var invertCameraX:bool = false
var invertCameraY:bool = false
var cameraSpeedController:float = 1.0
var cameraSpeedMouse:float = 1.0
var textSpeed:float = 1.0