2021-05-26 20:02:51 +00:00
|
|
|
tool
|
|
|
|
extends EditorPlugin
|
|
|
|
|
|
|
|
var import_plugin = null
|
|
|
|
|
|
|
|
func get_name():
|
|
|
|
return "CastleDB Importer"
|
|
|
|
|
|
|
|
func _enter_tree():
|
|
|
|
import_plugin = preload("castledb_importer.gd").new()
|
|
|
|
add_import_plugin(import_plugin)
|
|
|
|
|
|
|
|
func _exit_tree():
|
|
|
|
remove_import_plugin(import_plugin)
|
2021-05-28 21:41:35 +00:00
|
|
|
import_plugin = null
|