26 lines
848 B
C#
26 lines
848 B
C#
using CG.Framework;
|
|
using System;
|
|
/********************************************************************************
|
|
*Create By CG
|
|
*Function 主页状态
|
|
*********************************************************************************/
|
|
namespace ZXK.GYJQR
|
|
{
|
|
public class ModelSelectState : State
|
|
{
|
|
public ModelSelectState(StateContext stateContext) : base(stateContext)
|
|
{
|
|
}
|
|
|
|
public override string _SceneName => "Home";
|
|
|
|
|
|
public override void EnterState()
|
|
{
|
|
UI_Manage.Instance.ClosePanel("OperationTopPanel");
|
|
UI_Manage.Instance.ShowPanel("AppSettingPanel", Type.GetType("ZXK.GYJQR.AppSettingPanel"), UIGroup.Top);
|
|
UI_Manage.Instance.ShowPanel("ModelSelectPanel", Type.GetType("ZXK.GYJQR.ModelSelectPanel"), UIGroup.Main);
|
|
}
|
|
}
|
|
}
|