PivotConstraint(Constraint)
base classes — bpy_struct, Constraint
- class bpy.types.PivotConstraint(Constraint)
Rotate around a different point
- head_tail
Target along length of bone: Head is 0, Tail is 1 (in [0, 1], default 0.0)
- Type:
float
- offset
Offset of pivot from target (when set), or from owner’s location (when Fixed Position is off), or the absolute pivot point (array of 3 items, in [-inf, inf], default (0.0, 0.0, 0.0))
- Type:
- rotation_range
Rotation range on which pivoting should occur (default
'NX')ALWAYS_ACTIVEAlways – Use the pivot point in every rotation.NX-X Rotation – Use the pivot point in the negative rotation range around the X-axis.NY-Y Rotation – Use the pivot point in the negative rotation range around the Y-axis.NZ-Z Rotation – Use the pivot point in the negative rotation range around the Z-axis.XX Rotation – Use the pivot point in the positive rotation range around the X-axis.YY Rotation – Use the pivot point in the positive rotation range around the Y-axis.ZZ Rotation – Use the pivot point in the positive rotation range around the Z-axis.
- Type:
Literal[‘ALWAYS_ACTIVE’, ‘NX’, ‘NY’, ‘NZ’, ‘X’, ‘Y’, ‘Z’]
- subtarget
(default “”, never None)
- Type:
str
- use_bbone_shape
Follow shape of B-Bone segments when calculating Head/Tail position (default False)
- Type:
bool
- use_relative_location
Offset will be an absolute point in space instead of relative to the target (default True)
- 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