Files
engine/modules/gdscript/editor/script_templates/EditorPlugin/plugin.gd
T

14 lines
220 B
GDScript
Raw Normal View History

2021-10-11 11:30:59 +02:00
# meta-description: Basic plugin template
@tool
extends EditorPlugin
2021-10-11 11:30:59 +02:00
func _enter_tree() -> void:
# Initialization of the plugin goes here.
pass
2021-10-11 11:30:59 +02:00
func _exit_tree() -> void:
# Clean-up of the plugin goes here.
pass