CultivationOfBrewing/Assets/Scripts/UI/UIItem/UI_StepsPanelItem.cs

18 lines
319 B
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
public class UI_StepsPanelItem : BaseItem
{
/// <summary>
/// 步骤文字
/// </summary>
public TextMeshProUGUI Step_Text;
public void Init(string LabelDate)
{
Step_Text.text = LabelDate;
}
}