summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/editor/script_templates/EditorPlugin/plugin.gd
blob: 547943b910103ccc336c9e43319efdd7d4c22f7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# meta-description: Basic plugin template

@tool
extends _BASE_


func _enter_tree() -> void:
	# Initialization of the plugin goes here.
	pass


func _exit_tree() -> void:
	# Clean-up of the plugin goes here.
	pass