Files
engine/modules/gdscript/editor_templates/EditorPlugin/plugin.gd
T

12 lines
230 B
GDScript
Raw Normal View History

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