yes, they canjj st!

This commit is contained in:
Haze Weathers 2025-12-14 17:06:42 -06:00
parent 6b92473eeb
commit a6421235f8
22 changed files with 510 additions and 14 deletions

View file

@ -0,0 +1,17 @@
@tool
extends EditorPlugin
const Inspectors = preload("inspectors.gd")
var inspector_plugin: Inspectors
func _enter_tree() -> void:
inspector_plugin = Inspectors.new()
add_inspector_plugin(inspector_plugin)
func _exit_tree() -> void:
remove_inspector_plugin(inspector_plugin)