버그 수정

This commit is contained in:
2026-05-11 17:27:04 +09:00
parent 73aebe2d8c
commit fcdae4947e
99 changed files with 5478 additions and 15 deletions

View File

@@ -1,5 +1,6 @@
using TMPro;
using UnityEngine;
using VRShopping.Items;
using VRShopping.Shopping;
namespace VRShopping.UI
@@ -17,7 +18,7 @@ public void Bind(ShoppingOrderEntry entry)
return;
}
if (_nameText != null) _nameText.text = entry.ProductGroup.ToString();
if (_nameText != null) _nameText.text = entry.ProductGroup.ToKorean();
if (_quantityText != null) _quantityText.text = $"x{entry.RequiredQuantity}";
}
}