StreamOverlay/addons/kenny_spritesheet_importer/editor_plugin.gd

15 lines
282 B
GDScript3
Raw Normal View History

2026-02-23 18:38:03 -06:00
@tool
extends EditorPlugin
var import_plugin = null
func _enter_tree():
import_plugin = preload("import_plugin.gd").new()
# Initialization of the plugin goes here.
add_import_plugin(import_plugin)
func _exit_tree():
remove_import_plugin(import_plugin)
import_plugin = null