Project_WL/Assets/Script/UI/Gacha/GachaRateUI.cs

15 lines
387 B
C#
Raw Permalink Normal View History

2025-04-15 22:36:28 +00:00
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));
}
}