public static enum ConstraintHelper.Space extends java.lang.Enum<ConstraintHelper.Space>
Enum Constant and Description |
---|
CONSTRAINT_SPACE_LOCAL
For spatial it is the transformation in its parent space or in WORLD space if it has no parent.
|
CONSTRAINT_SPACE_PARLOCAL |
CONSTRAINT_SPACE_POSE
This space IS NOT applicable for spatials.
|
CONSTRAINT_SPACE_WORLD
A transformation of the bone or spatial in the world space.
|
Modifier and Type | Method and Description |
---|---|
static ConstraintHelper.Space |
valueOf(byte c)
This method returns the enum instance when given the appropriate
value from the blend file.
|
static ConstraintHelper.Space |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConstraintHelper.Space[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstraintHelper.Space CONSTRAINT_SPACE_WORLD
public static final ConstraintHelper.Space CONSTRAINT_SPACE_LOCAL
public static final ConstraintHelper.Space CONSTRAINT_SPACE_POSE
public static final ConstraintHelper.Space CONSTRAINT_SPACE_PARLOCAL
public static ConstraintHelper.Space[] values()
for (ConstraintHelper.Space c : ConstraintHelper.Space.values()) System.out.println(c);
public static ConstraintHelper.Space 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 nullpublic static ConstraintHelper.Space valueOf(byte c)
c
- the blender's value of the space modifier