Transition

Transition(int, TransitionTiming)

public bool Transition(int nextStateID, TransitionTiming transitionTiming) ;

Description

State transition

Parameters

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

Returns

Whether or not the transition

Transition(int, bool)

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

Description

State transition

Parameters

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).

Returns

Whether or not the transition

Transition(int)

public bool Transition(int nextStateID) ;

Description

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

Parameters

Parameter Name Description
nextStateID State ID for the transition destination.

Returns

Whether or not the transition

Transition(State, TransitionTiming)

public bool Transition(State nextState, TransitionTiming transitionTiming) ;

Description

State transition

Parameters

Parameter Name Description
nextState Destination state.
transitionTiming Transition timing.

Returns

Whether or not the transition

Transition(State, bool)

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

Description

State transition

Parameters

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).

Returns

Whether or not the transition

Transition(State)

public bool Transition(State nextState) ;

Description

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

Parameters

Parameter Name Description
nextState Destination state.

Returns

Whether or not the transition

Transition(StateLink, TransitionTiming)

public bool Transition(StateLink nextStateLink, TransitionTiming transitionTiming) ;

Description

State transition

Parameters

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

Returns

Whether or not the transition

Transition(StateLink, bool)

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

Description

State transition

Parameters

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).

Returns

Whether or not the transition

Transition(StateLink)

public bool Transition(StateLink nextStateLink) ;

Description

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

Parameters

Parameter Name Description
nextStateLink The destination of transition.

Returns

Whether or not the transition