15 lines
387 B
C#
15 lines
387 B
C#
|
|
using TMPro;
|
||
|
|
|
||
|
|
public class GachaRateUI : uScrollViewMgr
|
||
|
|
{
|
||
|
|
public TextMeshProUGUI text_type;
|
||
|
|
|
||
|
|
public override void Set(int _id)
|
||
|
|
{
|
||
|
|
base.Set(_id);
|
||
|
|
|
||
|
|
var data = table_gachaconfig.Ins.Get_Data_orNull(_id);
|
||
|
|
text_type.text = DSUtil.Format(381, table_localtext.Ins.Get_Text(data.n_Title));
|
||
|
|
Set_ScrollView(table_gacharate.Ins.Get_DataList(_id));
|
||
|
|
}
|
||
|
|
}
|