15 lines
303 B
GDScript
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
|