public static enum KinematicRagdollControl.Mode extends java.lang.Enum<KinematicRagdollControl.Mode>
Enum Constant and Description |
---|
IK
skeleton is controlled by inverse-kinematic targets
|
Kinematic
collision shapes follow the movements of bones in the skeleton
|
Ragdoll
skeleton is controlled by Bullet physics (gravity and collisions)
|
Modifier and Type | Method and Description |
---|---|
static KinematicRagdollControl.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KinematicRagdollControl.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KinematicRagdollControl.Mode Kinematic
public static final KinematicRagdollControl.Mode Ragdoll
public static final KinematicRagdollControl.Mode IK
public static KinematicRagdollControl.Mode[] values()
for (KinematicRagdollControl.Mode c : KinematicRagdollControl.Mode.values()) System.out.println(c);
public static KinematicRagdollControl.Mode 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