Transition

public bool Transition(int nextStateID, TransitionTiming transitionTiming) ;

State transition

Parameter Name Description
nextStateID State ID for the transition destination.
transitionTiming Transition timing.

Whether or not the transition

Obsolete public bool Transition(int nextStateID, bool immediateTransition) ;

State transition

Parameter Name Description
nextStateID State ID for the transition destination.
immediateTransition Whether or not to transition immediately. If false I will transition to the end of the current frame (when LateUpdate).

Whether or not the transition

public bool Transition(int nextStateID) ;

State transition. Timing to actually transition current frame last (when LateUpdate).

Parameter Name Description
nextStateID State ID for the transition destination.

Whether or not the transition

public bool Transition(State nextState, TransitionTiming transitionTiming) ;

State transition

Parameter Name Description
nextState Destination state.
transitionTiming Transition timing.

Whether or not the transition

Obsolete public bool Transition(State nextState, bool immediateTransition) ;

State transition

Parameter Name Description
nextState Destination state.
immediateTransition Whether or not to transition immediately. If false I will transition to the end of the current frame (when LateUpdate).

Whether or not the transition

public bool Transition(State nextState) ;

State transition. Timing to actually transition current frame last (when LateUpdate).

Parameter Name Description
nextState Destination state.

Whether or not the transition

public bool Transition(StateLink nextStateLink, TransitionTiming transitionTiming) ;

State transition

Parameter Name Description
nextStateLink The destination of transition.
transitionTiming Transition timing.

Whether or not the transition

Obsolete public bool Transition(StateLink nextStateLink, bool immediateTransition) ;

State transition

Parameter Name Description
nextStateLink The destination of transition.
immediateTransition Whether or not to transition immediately. If false I will transition to the end of the current frame (when LateUpdate).

Whether or not the transition

public bool Transition(StateLink nextStateLink) ;

State transition. Timing to actually transition current frame last (when LateUpdate).

Parameter Name Description
nextStateLink The destination of transition.

Whether or not the transition