CopyRotationConstraint(Constraint)
base classes — bpy_struct, Constraint
- class bpy.types.CopyRotationConstraint(Constraint)
Copy the rotation of the target
- euler_order
Explicitly specify the euler rotation order (default
'AUTO')AUTODefault – Euler using the default rotation order.XYZXYZ Euler – Euler using the XYZ rotation order.XZYXZY Euler – Euler using the XZY rotation order.YXZYXZ Euler – Euler using the YXZ rotation order.YZXYZX Euler – Euler using the YZX rotation order.ZXYZXY Euler – Euler using the ZXY rotation order.ZYXZYX Euler – Euler using the ZYX rotation order.
- Type:
Literal[‘AUTO’, ‘XYZ’, ‘XZY’, ‘YXZ’, ‘YZX’, ‘ZXY’, ‘ZYX’]
- invert_x
Invert the X rotation (default False)
- Type:
bool
- invert_y
Invert the Y rotation (default False)
- Type:
bool
- invert_z
Invert the Z rotation (default False)
- Type:
bool
- mix_mode
Specify how the copied and existing rotations are combined (default
'REPLACE')REPLACEReplace – Replace the original rotation with copied.ADDAdd – Add euler component values together.BEFOREBefore Original – Apply copied rotation before original, as if the constraint target is a parent.AFTERAfter Original – Apply copied rotation after original, as if the constraint target is a child.OFFSETOffset (Legacy) – Combine rotations like the original Offset checkbox. Does not work well for multiple axis rotations..
- Type:
Literal[‘REPLACE’, ‘ADD’, ‘BEFORE’, ‘AFTER’, ‘OFFSET’]
- subtarget
Armature bone, mesh or lattice vertex group, … (default “”, never None)
- Type:
str
- use_offset
DEPRECATED: Add original rotation into copied rotation (default False)
- Type:
bool
- use_x
Copy the target’s X rotation (default False)
- Type:
bool
- use_y
Copy the target’s Y rotation (default False)
- Type:
bool
- use_z
Copy the target’s Z rotation (default False)
- Type:
bool
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type