yyl
22 小时以前 4b5b31a23a74c1559460643836d70778d7d49931
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System.Collections.Generic;
using LitJson;
using UnityEngine;
 
public class BoxItemLineCell : CellView
{
    [SerializeField] BoxItemCell[] itemList;
 
    public void Display(List<Item> list)
    { 
        for (int i = 0; i < itemList.Length; i++)
        {
            if (i < list.Count)
            {
                itemList[i].SetActive(true);
                itemList[i].Display(list[i]);
            }
            else
            {
                itemList[i].SetActive(false);
            }
        }
    }
}