2021-10-11 11:30:59 +02:00
|
|
|
# meta-description: Basic plugin template
|
2023-09-12 10:52:43 +02:00
|
|
|
|
2021-10-11 11:30:59 +02:00
|
|
|
@tool
|
2023-09-12 10:52:43 +02:00
|
|
|
extends _BASE_
|
2021-10-11 11:30:59 +02:00
|
|
|
|
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
|