11 lines
220 B
GDScript
11 lines
220 B
GDScript
|
|
@tool
|
||
|
|
extends EditorPlugin
|
||
|
|
|
||
|
|
var inspector = preload("res://addons/CustomEditors/BuildingDataHelper.gd").new()
|
||
|
|
|
||
|
|
func _enter_tree():
|
||
|
|
add_inspector_plugin(inspector)
|
||
|
|
|
||
|
|
func _exit_tree():
|
||
|
|
remove_inspector_plugin(inspector)
|