CultivationOfBrewing-2/Assets/Scripts/UI/UIPanel/UI_GraphicRextualPanel.cs

41 lines
888 B
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
public class UI_GraphicRextualPanel : BasePanel
{
public RawImage rawImage;
//¶¥²¿ÎÄ×Ö
public TextMeshProUGUI ToptextMeshProUGUI;
//ÄÚÈÝ
public TextMeshProUGUI ContentTextMeshProUGUI;
protected override void Awake()
{
base.Awake();
}
public override void ShowMe()
{
base.ShowMe();
}
public override void HideMe()
{
base.HideMe();
}
protected override void OnClick(string btnName)
{
switch (btnName)
{
case "returnBtn":
//Bootstrap.Instance.uiManager.HidePanel<UI_GraphicRextualPanel>();
//LiveSceneManger.Instance.TipBtn.gameObject.SetActive(true);
break;
}
}
}