ActionKeyframeStrip(ActionStrip)
base classes — bpy_struct
, ActionStrip
- class bpy.types.ActionKeyframeStrip(ActionStrip)
Strip with a set of F-Curves for each action slot
- channelbags
- Type
ActionChannelbags
bpy_prop_collection
ofActionChannelbag
, (readonly)
- channelbag(slot, *, ensure=False)
Find the ActionChannelbag for a specific Slot
- Parameters
slot (
ActionSlot
) – Slot, The slot for which to find the channelbagensure (boolean, (optional)) – Create if necessary, Ensure the channelbag exists for this slot, creating it if necessary
- Returns
Channels
- Return type
- key_insert(slot, data_path, array_index, value, time)
key_insert
- Parameters
slot (
ActionSlot
) – Slot, The slot that identifies which ‘thing’ should be keyeddata_path (string, (never None)) – Data Path, F-Curve data path
array_index (int in [-inf, inf]) – Array Index, Index of the animated array element, or -1 if the property is not an array
value (float in [-inf, inf]) – Value to key, Value of the animated property
time (float in [-inf, inf]) – Time of the key, Time, in frames, of the key
- Returns
Success, Whether the key was successfully inserted
- Return type
boolean
- 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