Project_WL/Assets/Script/UI/PC/Info/PCCostumeCollection.cs

16 lines
502 B
C#

public class PCCostumeCollection : uScrollViewMgr
{
public PCCostumeCollection_Effect m_PCCostumeCollection_Effect;
public override void Set()
{
gameObject.SetActive(true);
Set_ScrollView(table_pccostumecollectionlist.Ins.Get_DataList());
// 착용 중인 코스튬 UI 설정
for (int i = 0; i < list_CardBase.Count; i++)
(list_CardBase[i] as PCInfoUI_CollectionCard).SelectCard_MyCostume();
m_PCCostumeCollection_Effect.Set();
}
}