From f20bd89dc4a7bf14a88b1effcaa1887b29314525 Mon Sep 17 00:00:00 2001 From: Sophia Pearson Date: Mon, 5 Sep 2022 20:35:53 +0200 Subject: gui: split GUI into Terminal components --- addons/gut/gut_plugin.gd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'addons/gut/gut_plugin.gd') diff --git a/addons/gut/gut_plugin.gd b/addons/gut/gut_plugin.gd index fec9742..9e8743a 100644 --- a/addons/gut/gut_plugin.gd +++ b/addons/gut/gut_plugin.gd @@ -3,6 +3,7 @@ extends EditorPlugin var _bottom_panel = null + func _enter_tree(): _bottom_panel = preload('res://addons/gut/gui/GutBottomPanel.tscn').instance() # Initialization of the plugin goes here @@ -24,4 +25,4 @@ func _exit_tree(): # Always remember to remove it from the engine when deactivated remove_custom_type("Gut") remove_control_from_bottom_panel(_bottom_panel) - _bottom_panel.free() \ No newline at end of file + _bottom_panel.free() -- cgit v1.2.3