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)
- channels(slot_handle)#
Find the ActionChannelBag for a specific Slot
- Parameters:
slot_handle (int in [0, inf]) – Slot Handle, Number that identifies a specific action slot
- 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