godot/modules/gdscript/editor_templates/plugin.gd
fabriceci f80663e33d Improve editor template workflow
Co-Authored-By: jmb462 <jmb462@gmail.com>
2021-10-31 18:35:22 +01:00

11 lines
172 B
GDScript

@tool
extends EditorPlugin
func _enter_tree():
# Initialization of the plugin goes here.
pass
func _exit_tree():
# Clean-up of the plugin goes here.
pass