PoseBoneConstraints(bpy_struct)¶
base class — bpy_struct
- class bpy.types.PoseBoneConstraints(bpy_struct)¶
Collection of pose bone constraints
- active¶
Active PoseChannel constraint
- Type:
- new(type)¶
Add a constraint to this object
- Parameters:
type (enum in Constraint Type Items) – Constraint type to add
- Returns:
New constraint
- Return type:
- remove(constraint)¶
Remove a constraint from this object
- Parameters:
constraint (
Constraint
, (never None)) – Removed constraint
- move(from_index, to_index)¶
Move a constraint to a different position
- Parameters:
from_index (int in [-inf, inf]) – From Index, Index to move
to_index (int in [-inf, inf]) – To Index, Target index
- copy(constraint)¶
Add a new constraint that is a copy of the given one
- Parameters:
constraint (
Constraint
, (never None)) – Constraint to copy - may belong to a different object- Returns:
New constraint
- Return type:
- classmethod bl_rna_get_subclass(id, default=None)¶
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Struct
subclass
- classmethod bl_rna_get_subclass_py(id, default=None)¶
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type