Package | Description |
---|---|
enumerate | |
fighting | |
structs |
Modifier and Type | Method and Description |
---|---|
static State |
State.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
State.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
State |
Motion.getState() |
State |
Character.getState() |
Modifier and Type | Method and Description |
---|---|
void |
Motion.setState(State state) |
Modifier and Type | Field and Description |
---|---|
State |
MotionData.state
the resulting state after running this motion
|
Modifier and Type | Method and Description |
---|---|
State |
MotionData.getState()
Returns the resulting state after running this motion.
|
State |
CharacterData.getState()
Returns the character's state: stand / crouch / in air / down.
|
Modifier and Type | Method and Description |
---|---|
void |
MotionData.setState(State state)
Sets the resulting state after running this motion.
|
void |
CharacterData.setState(State state)
Sets the character's state: stand / crouch / in air / down.
|