godot-accessibility/addons/accessibility/accessibility.gd

10 lines
142 B
GDScript3
Raw Normal View History

tool
extends EditorPlugin
func _enter_tree():
print("Hello, world.")
func _exit_tree():
# Clean-up of the plugin goes here
pass