Transition
Transition(int, 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)
Description
State transition
Parameters
| Parameter Name | Description |
|---|---|
| nextState | Destination state. |
| transitionTiming | Transition timing. |
Returns
Whether or not the transition
Transition(State, bool)
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)
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)
Description
State transition
Parameters
| Parameter Name | Description |
|---|---|
| nextStateLink | The destination of transition. |
| transitionTiming | Transition timing. |
Returns
Whether or not the transition
Transition(StateLink, bool)
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)
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