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')

  • AUTO Default – Euler using the default rotation order.

  • XYZ XYZ Euler – Euler using the XYZ rotation order.

  • XZY XZY Euler – Euler using the XZY rotation order.

  • YXZ YXZ Euler – Euler using the YXZ rotation order.

  • YZX YZX Euler – Euler using the YZX rotation order.

  • ZXY ZXY Euler – Euler using the ZXY rotation order.

  • ZYX ZYX 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')

  • REPLACE Replace – Replace the original rotation with copied.

  • ADD Add – Add euler component values together.

  • BEFORE Before Original – Apply copied rotation before original, as if the constraint target is a parent.

  • AFTER After Original – Apply copied rotation after original, as if the constraint target is a child.

  • OFFSET Offset (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

target

Target object

Type:

Object

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:

bpy.types.Struct

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

Inherited Properties

Inherited Functions