diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-09-05 20:35:53 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-09-05 20:35:53 +0200 |
| commit | f20bd89dc4a7bf14a88b1effcaa1887b29314525 (patch) | |
| tree | d114787f68efd2a7d61d95fa9c84e8e5d69a7c11 /addons/gut/gut_plugin.gd | |
| parent | 1b477b62f8be8c546a35dbd1d2688ebf623c496f (diff) | |
| download | texty-f20bd89dc4a7bf14a88b1effcaa1887b29314525.tar.xz texty-f20bd89dc4a7bf14a88b1effcaa1887b29314525.zip | |
gui: split GUI into Terminal components
Diffstat (limited to 'addons/gut/gut_plugin.gd')
| -rw-r--r-- | addons/gut/gut_plugin.gd | 3 |
1 files changed, 2 insertions, 1 deletions
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() |
