Nuking UI global scene

This commit is contained in:
2026-01-09 19:59:30 -06:00
parent 16b96de507
commit e7f55fd731
10 changed files with 21 additions and 14 deletions

View File

@@ -18,7 +18,7 @@ func removeAndHide(node:Node3D) -> void:
node.visible = false
func addAndShow(node:Node3D) -> void:
if node:
if node && node.get_parent() != self:
add_child(node)
node.visible = true