mirror of
https://github.com/lightsoutgames/godot-accessibility.git
synced 2024-11-14 01:15:56 +00:00
10 lines
142 B
GDScript3
10 lines
142 B
GDScript3
|
tool
|
||
|
extends EditorPlugin
|
||
|
|
||
|
func _enter_tree():
|
||
|
print("Hello, world.")
|
||
|
|
||
|
func _exit_tree():
|
||
|
# Clean-up of the plugin goes here
|
||
|
pass
|