FSMState.DoBeforeLeaving C# (CSharp) 메소드

DoBeforeLeaving() 공개 메소드

public DoBeforeLeaving ( ) : void
리턴 void
    public virtual void DoBeforeLeaving()
    {
    }

Usage Example

예제 #1
0
	// for AI controled FSM transfer
	public void PerformAITransition(StateID NextStateID)
	{
		currentStateID = NextStateID;
		foreach (FSMState state in states)
		{
			if (state.ID == currentStateID)
			{
				currentState.DoBeforeLeaving();
				currentState = state;
				currentState.DoBeforeEntering();
				break;
			}
		}
	}
All Usage Examples Of FSMState::DoBeforeLeaving