Data 패키지 개선

This commit is contained in:
logonkhi
2025-06-10 20:16:35 +09:00
parent 649a359ab4
commit 7ef6825368
22 changed files with 1416 additions and 248 deletions

View File

@@ -5,6 +5,7 @@ using System.Text;
using System.Text.RegularExpressions;
using UnityEngine;
using UVC.Json;
using UVC.Log;
namespace UVC.Extention
{
@@ -195,7 +196,7 @@ namespace UVC.Extention
catch (Exception ex)
{
// 변환 실패 시 예외 정보 로깅 (선택적)
Debug.LogError($"JSON을 Dictionary로 변환하는 중 오류 발생: {ex.Message}");
ULog.Error($"JSON을 Dictionary로 변환하는 중 오류 발생: {ex.Message}", ex);
return new Dictionary<TKey, TValue>();
}
}