You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
457 B
24 lines
457 B
using TMPro;
|
|
using UnityEngine;
|
|
|
|
public class GoodsDetailItem : GoodsItem
|
|
{
|
|
#region UI
|
|
protected TextMeshProUGUI txtLv;
|
|
protected GameObject goBadge;
|
|
//protected GameObject goSelect;
|
|
//protected GameObject goSet;
|
|
#endregion UI
|
|
|
|
|
|
|
|
|
|
|
|
protected override void Init()
|
|
{
|
|
base.Init();
|
|
txtLv = transform.Find("txtLv").GetComponent<TextMeshProUGUI>();
|
|
goBadge = transform.Find("badge").gameObject;
|
|
}
|
|
|
|
}
|