코드 정리 및 DataValidator 추가, HttpPipeLine 쓰레드에서 실행되도록 수정

This commit is contained in:
logonkhi
2025-06-24 19:29:37 +09:00
parent 3acff06eca
commit b3bf7e6eff
50 changed files with 1544 additions and 3064 deletions

View File

@@ -61,7 +61,6 @@ namespace UVC.Factory.Component
/// <param name="eventData">포인터 클릭과 관련된 이벤트 데이터입니다.</param>
public override void OnPointerClick(PointerEventData eventData)
{
Debug.Log($"OnPointerClick2: {gameObject.name}");
if (data != null && data.Count > 0)
{
Dictionary<string, object> info = new Dictionary<string, object>();
@@ -81,7 +80,6 @@ namespace UVC.Factory.Component
// dataOrderedMask가 설정되어 있지 않으면 모든 데이터를 사용합니다.
info = new Dictionary<string, object>(data);
}
Debug.Log($"OnPointerClick: {gameObject.name} - {info.Count} items");
InfoWindow.Instance.Show(transform, info);
}
}