24 lines
424 B
C#
24 lines
424 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class UI_StepsPanelItem : BaseItem
|
|
{
|
|
/// <summary>
|
|
/// 步骤文字
|
|
/// </summary>
|
|
public TextMeshProUGUI Step_Text;
|
|
|
|
/// <summary>
|
|
/// 步骤按钮
|
|
/// </summary>
|
|
public Button Step_Btn;
|
|
|
|
public void Init(string LabelDate)
|
|
{
|
|
Step_Text.text = LabelDate;
|
|
}
|
|
}
|