public enum BoneLinkMode extends java.lang.Enum<BoneLinkMode>
| Enum Constant and Description |
|---|
ADDITIVE
Additive mode calculates the transformations of child bones by adding their own local transformations to those of their parent bones.
|
NORMALIZE
In this mode, the transformations of child bones are normalized concerning their parent bone's transformations.
|
TOTAL_ONE
Total One ensures that combined transformations of the parent and child bones result in a combined transformation that scales to an overall length of one unit.
|
| Modifier and Type | Method and Description |
|---|---|
static BoneLinkMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BoneLinkMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoneLinkMode NORMALIZE
public static final BoneLinkMode ADDITIVE
public static final BoneLinkMode TOTAL_ONE
public static BoneLinkMode[] values()
for (BoneLinkMode c : BoneLinkMode.values()) System.out.println(c);
public static BoneLinkMode 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