summaryrefslogtreecommitdiff
path: root/modules/gdscript/editor_templates/EditorPlugin/plugin.gd
blob: b27b3e565537e655e4715a78a23f9b8156494531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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