BoneGroups(bpy_struct)

base class — bpy_struct

class bpy.types.BoneGroups(bpy_struct)

Collection of bone groups

active

Active bone group for this pose

Type:BoneGroup
active_index

Active index in bone groups array

Type:int in [0, inf], default 0
new(name="Group")

Add a new bone group to the object

Parameters:name (string, (optional, never None)) – Name of the new group
Returns:New bone group
Return type:BoneGroup
remove(group)

Remove a bone group from this object

Parameters:group (BoneGroup, (never None)) – Removed bone group
classmethod bl_rna_get_subclass(id, default=None)
Parameters:id (string) – 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 (string) – The RNA type identifier.
Returns:The class or default when not found.
Return type:type

Inherited Properties

Inherited Functions

References