11 lines
160 B
GDScript
11 lines
160 B
GDScript
class_name PauseSettings extends Control
|
|
|
|
func open() -> void:
|
|
visible = true
|
|
|
|
func close() -> void:
|
|
visible = false
|
|
|
|
func isOpen() -> bool:
|
|
return visible
|