FSMState.DoBeforeLeaving C# (CSharp) Method

DoBeforeLeaving() public method

public DoBeforeLeaving ( ) : void
return void
    public virtual void DoBeforeLeaving()
    {
    }

Usage Example

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