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