public static enum Animation.Type extends java.lang.Enum<Animation.Type>
Enum Constant and Description |
---|
Idle
Idle animations.
|
Interaction
Interaction animations.
|
InteractionPartly
Partly Interaction animations.
|
Misc
Misc animations, they affect the whole body (e.g.
|
Movement
Movement animations (e.g.
|
Modifier and Type | Method and Description |
---|---|
static Animation.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Animation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Animation.Type Idle
public static final Animation.Type Movement
Interaction
or Misc
animation is active.public static final Animation.Type Interaction
Movement
or Misc
animation is active.public static final Animation.Type InteractionPartly
public static final Animation.Type Misc
public static Animation.Type[] values()
for (Animation.Type c : Animation.Type.values()) System.out.println(c);
public static Animation.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null