challenge-editor/addons/popupwindow/popupwindow.gd
2024-09-11 17:44:37 +08:00

15 lines
303 B
GDScript

@tool
extends EditorPlugin
func _enter_tree() -> void:
add_autoload_singleton("PopUpWindow","res://addons/popupwindow/PopUpWindow.tscn")
# Initialization of the plugin goes here.
pass
func _exit_tree() -> void:
remove_autoload_singleton("PopUpWindow")
# Clean-up of the plugin goes here.
pass