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