13 lines
163 B
GDScript
Executable file
13 lines
163 B
GDScript
Executable file
@tool
|
|
extends EditorPlugin
|
|
|
|
func _enter_tree():
|
|
# Initialization of the plugin goes here.
|
|
pass
|
|
|
|
func _exit_tree():
|
|
# Clean-up of the plugin goes here.
|
|
pass
|
|
|
|
|
|
|