mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-06 14:59:44 +01:00
14 lines
224 B
GDScript3
14 lines
224 B
GDScript3
|
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
|