코스튬명 및 설명
This commit is contained in:
parent
f08725dc67
commit
d39216f9b6
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -13,9 +13,11 @@ public class CostumeListTableData : TableDataBase
|
|||
set { _CostumeID = value; _CostumeID.RandomizeCryptoKey(); }
|
||||
} // 클래스 ID
|
||||
|
||||
public int n_CostumeDesc;
|
||||
public string s_Image, s_Prefab;
|
||||
|
||||
public override string Get_Name() { return table_itemlist.Ins.Get_ItemName(n_CostumeID); }
|
||||
public string Get_Desc() { return table_localtext.Ins.Get_Text(n_CostumeDesc); }
|
||||
}
|
||||
|
||||
public class table_costumelist : table_missionbase
|
||||
|
|
|
|||
|
|
@ -32,6 +32,8 @@ public class PCInfoUI_Center : UI3DModel
|
|||
|
||||
var costumeid = SelectCard.Get_IntData();
|
||||
var costumeData = table_costumelist.Ins.Get_Data_orNull(costumeid);
|
||||
texts[0].text = costumeData.Get_Name();
|
||||
texts[1].text = costumeData.Get_Desc();
|
||||
Set_2DIlust(costumeData);
|
||||
Set_3DModel(true, costumeData.s_Prefab, tr => { tr.GetComponent<PCActor>().Set_Obj(); });
|
||||
RawImage_costume.enabled = false;
|
||||
|
|
|
|||
Loading…
Reference in New Issue