diff options
Diffstat (limited to 'scripts/GUI.gd')
| -rw-r--r-- | scripts/GUI.gd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/GUI.gd b/scripts/GUI.gd new file mode 100644 index 0000000..1e0a781 --- /dev/null +++ b/scripts/GUI.gd @@ -0,0 +1,18 @@ +extends MarginContainer +class_name GUI + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(_delta): + pass + +func set_debug_text(text: String): + $VBoxContainer/Label.set_text(text) |
