public static enum BlenderKey.AnimationMatchMethod extends java.lang.Enum<BlenderKey.AnimationMatchMethod>
Enum Constant and Description |
---|
ALL_NAMES_MATCH
Animation is matched when all action names are covered by the target names (bone names or the name of the
animated spatial.
|
AT_LEAST_ONE_NAME_MATCH
Animation is matched with skeleton when at leas one bone name matches the name of the action channel.
|
Modifier and Type | Method and Description |
---|---|
static BlenderKey.AnimationMatchMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlenderKey.AnimationMatchMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlenderKey.AnimationMatchMethod AT_LEAST_ONE_NAME_MATCH
public static final BlenderKey.AnimationMatchMethod ALL_NAMES_MATCH
public static BlenderKey.AnimationMatchMethod[] values()
for (BlenderKey.AnimationMatchMethod c : BlenderKey.AnimationMatchMethod.values()) System.out.println(c);
public static BlenderKey.AnimationMatchMethod 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