25 lines
811 B
C#
25 lines
811 B
C#
using CG.Framework;
|
|
using System;
|
|
/********************************************************************************
|
|
*Create By CG
|
|
*Function 模块选择状态
|
|
*********************************************************************************/
|
|
namespace ZXK.LouDiXvMuNiu
|
|
{
|
|
public class ModelSelectState : State
|
|
{
|
|
public ModelSelectState(StateContext stateContext) : base(stateContext)
|
|
{
|
|
}
|
|
|
|
public override string _SceneName => "Home";
|
|
|
|
|
|
public override void EnterState()
|
|
{
|
|
UI_Manage.Instance.ShowPanel("AppSettingPanel", Type.GetType("ZXK.LouDiXvMuNiu.AppSettingPanel"), UIGroup.Top);
|
|
UI_Manage.Instance.ShowPanel("ModelSelectPanel", Type.GetType("ZXK.LouDiXvMuNiu.ModelSelectPanel"), UIGroup.Main);
|
|
}
|
|
}
|
|
}
|