mirror of
https://github.com/godotengine/godot
synced 2024-11-02 14:43:31 +00:00
c9b75431f3
Not a full refactor as it still goes through ScriptLanguage so it's hacky, but at least it can now compile without this.
13 lines
220 B
GDScript
13 lines
220 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
|