diff options
Diffstat (limited to 'scripts/gui_top_bar.gd')
-rw-r--r-- | scripts/gui_top_bar.gd | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/scripts/gui_top_bar.gd b/scripts/gui_top_bar.gd new file mode 100644 index 0000000..a002e87 --- /dev/null +++ b/scripts/gui_top_bar.gd @@ -0,0 +1,31 @@ +extends Control + +var _in_editor : bool +var _editor_button : Button +var _hbox : HBoxContainer + +var _resources : Node +var _gui : Control + +func refresh (in_editor : bool): + _in_editor = in_editor + + var root = get_tree().root.get_child(0) + _resources = root.get_node("player").get_node("resources") + + if _gui == null: _gui = get_parent() + if _hbox == null: _hbox = $panel/resources/HBoxContainer + if _editor_button == null: _editor_button = $panel/editor_button + + if _in_editor: _editor_button.text = "Editor" + else: _editor_button.text = "Playmode" + +func _process (_delta): + for r in _resources.get_names(): + _hbox.get_node(r).text = str(_resources[r]) + r + +func _on_editor_button_down(): + _gui.player.gui_editor_toggle_event() + +func _on_wave_button_pressed(): + _gui.player.gui_start_wave_event() |