StateStatus
ZEPETO.Character.Controller.StateStatus
Represents the possible statuses of a state within a state machine, indicating the current phase of the state's lifecycle.
Name | Value | Description |
---|---|---|
Wait | 0 | The state is inactive and waiting to be entered. |
Enter | 1 | The state is in the process of being entered. |
Update | 2 | The state is active and its logic is being executed. |
End | 3 | The state has completed its active phase and is ready to end. |
Leave | 4 | The state is in the process of being exited. |