9d5b807059
Co-Authored-By: jmb462 <jmb462@gmail.com>
11 lines
230 B
GDScript
11 lines
230 B
GDScript
# 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
|