cameraController 기능 개선

This commit is contained in:
logonkhi
2025-07-01 20:10:15 +09:00
parent 750d38153d
commit b7ad8686f6
25 changed files with 941 additions and 159 deletions

View File

@@ -127,10 +127,10 @@ namespace UVC.Factory.Component
set
{
info = value;
if (value != null)
if (info != null)
{
// 객체의 이름을 GameObject의 이름으로 설정합니다.
gameObject.name = value.Name;
gameObject.name = info.Name;
FactoryObjectManager.Instance.RegisterFactoryObject(this);
}
}