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