diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2022-03-27 23:00:02 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2022-03-28 01:32:12 -0300 |
commit | 42df9ed0599154cd4894cbcf0c6d9761c5ab3a4e (patch) | |
tree | cd54171a269f5280bd7480ed7b571c243029d13b /modules/gdscript/editor_templates/EditorPlugin | |
parent | a0071029f2c4ec006d3443f25aa77e2c2c7a1ece (diff) |
Make script templates follow the GDScript style guide
Diffstat (limited to 'modules/gdscript/editor_templates/EditorPlugin')
-rw-r--r-- | modules/gdscript/editor_templates/EditorPlugin/plugin.gd | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/gdscript/editor_templates/EditorPlugin/plugin.gd b/modules/gdscript/editor_templates/EditorPlugin/plugin.gd index 8614bb8b17..b27b3e5655 100644 --- a/modules/gdscript/editor_templates/EditorPlugin/plugin.gd +++ b/modules/gdscript/editor_templates/EditorPlugin/plugin.gd @@ -2,10 +2,12 @@ @tool extends EditorPlugin + func _enter_tree() -> void: - # Initialization of the plugin goes here. - pass + # Initialization of the plugin goes here. + pass + func _exit_tree() -> void: - # Clean-up of the plugin goes here. - pass + # Clean-up of the plugin goes here. + pass |