diff options
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() |
