From 5781b7dad68c3e01d83365f73b0d35d9e5252f97 Mon Sep 17 00:00:00 2001 From: jacopograndi Date: Sun, 16 Jan 2022 17:14:36 +0100 Subject: control system --- scripts/gui.gd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/gui.gd') diff --git a/scripts/gui.gd b/scripts/gui.gd index 03a2e04..71eaf76 100644 --- a/scripts/gui.gd +++ b/scripts/gui.gd @@ -1,21 +1,21 @@ extends Control var player : Node -var _in_editor : bool +var control : Node var bottom_bar : Control var top_bar : Control func _fetch (): - var root = get_tree().root.get_child(0) + var root = get_tree().root.get_node("world") player = root.get_node("player") + control = player.get_node("control") if bottom_bar == null: bottom_bar = get_node("bottom_bar") if top_bar == null: top_bar = get_node("top_bar") func _ready(): _fetch() - bottom_bar.build() func refresh (in_editor : bool): _fetch() -- cgit v1.2.3-54-g00ecf