initial commit
This commit is contained in:
12
AGUI.gd
Normal file
12
AGUI.gd
Normal 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 = ""
|
||||
Reference in New Issue
Block a user