ChildOfConstraint(Constraint)¶
base classes — bpy_struct, Constraint
- class bpy.types.ChildOfConstraint(Constraint)¶
Create constraint-based parent-child relationship
- inverse_matrix¶
Transformation matrix to apply before (multi-dimensional array of 4 * 4 items, in [-inf, inf], default ((0.0, 0.0, 0.0, 0.0), (0.0, 0.0, 0.0, 0.0), (0.0, 0.0, 0.0, 0.0), (0.0, 0.0, 0.0, 0.0)))
- Type:
- set_inverse_pending¶
Set to true to request recalculation of the inverse matrix (default False)
- Type:
bool
- subtarget¶
Armature bone, mesh or lattice vertex group, … (default “”, never None)
- Type:
str
- use_location_x¶
Use X Location of Parent (default False)
- Type:
bool
- use_location_y¶
Use Y Location of Parent (default False)
- Type:
bool
- use_location_z¶
Use Z Location of Parent (default False)
- Type:
bool
- use_rotation_x¶
Use X Rotation of Parent (default False)
- Type:
bool
- use_rotation_y¶
Use Y Rotation of Parent (default False)
- Type:
bool
- use_rotation_z¶
Use Z Rotation of Parent (default False)
- Type:
bool
- use_scale_x¶
Use X Scale of Parent (default False)
- Type:
bool
- use_scale_y¶
Use Y Scale of Parent (default False)
- Type:
bool
- use_scale_z¶
Use Z Scale of Parent (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