mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-02 14:39:37 +01:00
14 lines
224 B
GDScript
14 lines
224 B
GDScript
tool
|
|
extends EditorPlugin
|
|
|
|
var import_plugin
|
|
|
|
func _enter_tree():
|
|
import_plugin = preload("import.gd").new()
|
|
add_import_plugin(import_plugin)
|
|
|
|
|
|
func _exit_tree():
|
|
remove_import_plugin(import_plugin)
|
|
import_plugin = null
|