Moved player input

This commit is contained in:
2025-07-01 15:50:08 -05:00
parent 3e95481282
commit 58126341ba
14 changed files with 138 additions and 12 deletions

View File

@@ -8,9 +8,19 @@ func cutscenePause() -> void:
func cutsceneResume() -> void:
cutscenePaused = false
func isMovementPaused() -> bool:
if cutscenePaused:
return true
if !UI.TEXTBOX.isClosed:
return true
return false
if UI.PAUSE.isOpen():
return true
return false
func menuPause() -> void:
UI.PAUSE.open()