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

@@ -0,0 +1,17 @@
class_name PauseMenu extends Control
@export var MAIN:PauseMain
func _ready() -> void:
hide()
func isOpen() -> bool:
return visible
func open() -> void:
visible = true
MAIN.visible = true
func close() -> void:
visible = false
MAIN.visible = false