Prepping cooking

This commit is contained in:
2026-01-15 17:28:39 -06:00
parent 098a9d47f9
commit 3b7de160dc
27 changed files with 151 additions and 19 deletions

31
scene/Pause.gd Normal file
View File

@@ -0,0 +1,31 @@
class_name PauseSingleton extends Node
# var cutscenePaused:bool = false
# func cutscenePause() -> void:
# cutscenePaused = true
# func cutsceneResume() -> void:
# cutscenePaused = false
# func isMovementPaused() -> bool:
# if cutscenePaused:
# return true
# if !UI.TEXTBOX.isClosed:
# return true
# if UI.PAUSE.isOpen():
# return true
# if OVERWORLD.isMapChanging():
# return true
# return false
# func menuPause() -> void:
# # if UI.PAUSE.isOpen():
# # UI.PAUSE.close()
# # else:
# # UI.PAUSE.open()
# pass