initial commit

This commit is contained in:
2026-06-09 23:53:19 -05:00
commit 625f1eb1f9
9 changed files with 128 additions and 0 deletions

12
AGUI.gd Normal file
View File

@@ -0,0 +1,12 @@
extends Node
var GUIScreens : Dictionary = {
"Main": load("res://Player/AGUI.WatchPanels/AGUI.Watch.Main.tscn"),
"Settings": load("res://Player/AGUI.WatchPanels/AGUI.Watch.Settings.tscn")
}
var CurrentScreen : String = ""
func freeWatch():
if CurrentScreen != "":
get_node("/root/" + CurrentScreen).queue_free()
CurrentScreen = ""