This commit is contained in:
2025-05-09 23:06:36 +02:00
parent f3d332f39c
commit dda8eac39a
135 changed files with 8297 additions and 186 deletions

View File

@@ -0,0 +1,16 @@
extends EditorInspectorPlugin
var ui_control: PackedScene = preload("controls_scene.tscn")
var ui: Control = null
func _can_handle(object: Object) -> bool:
if object is LightmapProbeGrid:
return true
else:
return false
func _parse_category(_object: Object, category: String) -> void:
if category.begins_with("lightmap_probe_grid"):
if ui == null:
ui = ui_control.instantiate()
add_property_editor("LighmapProbeGrid", ui)