24 lines
561 B
C#
24 lines
561 B
C#
using FSM;
|
|
namespace DongWuYiXue.QiGuanChaGuan
|
|
{
|
|
public class ChongYingTaoNangState : FsmState<FSMManager>
|
|
{
|
|
public override void OnStateEnter()
|
|
{
|
|
base.OnStateEnter();
|
|
this.Log("进入充盈套囊状态");
|
|
fsm.ShowTip(0);
|
|
fsm.ShowCamera("充盈套囊_Camera");
|
|
fsm.Show("注射器");
|
|
}
|
|
public override void OnStateStay()
|
|
{
|
|
base.OnStateStay();
|
|
}
|
|
public override void OnStateExit()
|
|
{
|
|
base.OnStateExit();
|
|
}
|
|
}
|
|
}
|