fix library scan

This commit is contained in:
Nathan
2025-08-20 17:12:21 -06:00
parent 2addfc4e02
commit c6d90bf343
3 changed files with 397 additions and 14 deletions

6
ui.py
View File

@@ -30,7 +30,11 @@ class DYNAMICLINK_PT_main_panel(Panel):
box.label(text="Scene Analysis")
row = box.row()
row.operator("dynamiclink.scan_linked_assets", text="Scan Linked Assets")
row.label(text=f"Found: {props.linked_assets_count}")
row.label(text=f"Libraries: {props.linked_assets_count}")
# Show more detailed info if we have results
if props.linked_assets_count > 0:
box.label(text="Note: Counts unique library files, not individual objects")
# Asset replacement section
box = layout.box()