31 lines
779 B
C#
31 lines
779 B
C#
|
|
using FSM;
|
|||
|
|
using ZXKFramework;
|
|||
|
|
namespace DongWuYiXue.DaoNiaoShu
|
|||
|
|
{
|
|||
|
|
public class YiShengZhunBeiState : FsmState<FSMManager>
|
|||
|
|
{
|
|||
|
|
public override void OnStateEnter()
|
|||
|
|
{
|
|||
|
|
base.OnStateEnter();
|
|||
|
|
this.Log("<22><><EFBFBD><EFBFBD>ҽ<EFBFBD><D2BD><EFBFBD><D7BC>״̬");
|
|||
|
|
fsm.ShowCamera("WuPinZhunBei_Camera");
|
|||
|
|
if (fsm.main_gameModel.modeType == ModeType.ShiXun)
|
|||
|
|
{
|
|||
|
|
fsm.ShowDragQuestion(0, 5, 0, () =>
|
|||
|
|
{
|
|||
|
|
fsm.nextState = true;
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
public override void OnStateStay()
|
|||
|
|
{
|
|||
|
|
base.OnStateStay();
|
|||
|
|
}
|
|||
|
|
public override void OnStateExit()
|
|||
|
|
{
|
|||
|
|
base.OnStateExit();
|
|||
|
|
fsm.nextState = false;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|