38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class UI_TipsForPracticePanel : BasePanel
|
|
{
|
|
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 "Button":
|
|
Bootstrap.Instance.uiManager.ShowPanel<UI_TipsForPracticePanel>(this, E_UI_Layer.System, (panel) =>
|
|
{
|
|
//Bootstrap.Instance.uiManager.ShowPanel<UI_MainTitlePanel>(this, E_UI_Layer.Bot, (panel) =>
|
|
//{
|
|
// Debug.Log("¼ÓÔØÀíÂÛÑ§Ï°Ãæ°å");
|
|
// Bootstrap.Instance.uiManager.HidePanel<UI_SelectModePanel>();
|
|
// Bootstrap.Instance.uiManager.HidePanel<UI_StepsPanel>();
|
|
//});
|
|
|
|
});
|
|
break;
|
|
}
|
|
}
|
|
}
|