blob: 8614bb8b17d647b4c56d698f64419b8a9739492f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# 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
|