ComponentList Tab 기능 추가

This commit is contained in:
logonkhi
2025-09-26 12:01:35 +09:00
parent 1aa64487d0
commit 52f60f3fc4
22 changed files with 94761 additions and 324418 deletions

View File

@@ -94,8 +94,7 @@ namespace UVC.UI.Window
/// </summary>
public void Refresh()
{
var infos = FactoryObjectManager.Instance.GetFactoryObjectInfosByCategory();
componentList?.SetupData(infos);
SetupData();
}
/// <summary>

View File

@@ -63,7 +63,7 @@ namespace UVC.UI.Window.PropertyWindow
// UI를 다시 그리기 전에 기존에 생성된 모든 자식 오브젝트를 삭제합니다.
foreach (Transform child in _container)
{
Destroy(child.gameObject);
DestroyImmediate(child.gameObject);
}
if (_controller == null) return;