예제 #1
0
파일: ShopUI.cs 프로젝트: BigGriz/Grizzy
 private void Start()
 {
     foreach (Gear n in gear)
     {
         ShopSlot temp = Instantiate(shopSlotPrefab, layoutGroup.transform).GetComponent <ShopSlot>();
         temp.EquipItem(n);
     }
 }