Action(ID)
base classes — bpy_struct
, ID
- class bpy.types.Action(ID)
A collection of F-Curves for animation
- curve_frame_range
The combined frame range of all F-Curves within this action
- Type
float array of 2 items in [-inf, inf], default (0.0, 0.0), (readonly)
- fcurves
The individual F-Curves that make up the action
- Type
ActionFCurves
bpy_prop_collection
ofFCurve
, (readonly)
- frame_end
The end frame of the manually set intended playback range
- Type
float in [-inf, inf], default 0.0
- frame_range
The intended playback frame range of this action, using the manually set range if available, or the combined frame range of all F-Curves within this action if not (assigning sets the manual frame range)
- Type
float array of 2 items in [-inf, inf], default (0.0, 0.0)
- frame_start
The start frame of the manually set intended playback range
- Type
float in [-inf, inf], default 0.0
- groups
Convenient groupings of F-Curves
- Type
ActionGroups
bpy_prop_collection
ofActionGroup
, (readonly)
- id_root
Type of ID block that action can be used on - DO NOT CHANGE UNLESS YOU KNOW WHAT YOU ARE DOING
- Type
enum in [‘ACTION’, ‘ARMATURE’, ‘BRUSH’, ‘CAMERA’, ‘CACHEFILE’, ‘CURVE’, ‘FONT’, ‘GREASEPENCIL’, ‘COLLECTION’, ‘IMAGE’, ‘KEY’, ‘LIGHT’, ‘LIBRARY’, ‘LINESTYLE’, ‘LATTICE’, ‘MASK’, ‘MATERIAL’, ‘META’, ‘MESH’, ‘MOVIECLIP’, ‘NODETREE’, ‘OBJECT’, ‘PAINTCURVE’, ‘PALETTE’, ‘PARTICLE’, ‘LIGHT_PROBE’, ‘SCENE’, ‘SIMULATION’, ‘SOUND’, ‘SPEAKER’, ‘TEXT’, ‘TEXTURE’, ‘HAIR’, ‘POINTCLOUD’, ‘VOLUME’, ‘WINDOWMANAGER’, ‘WORLD’, ‘WORKSPACE’], default ‘ACTION’
- pose_markers
Markers specific to this action, for labeling poses
- Type
ActionPoseMarkers
bpy_prop_collection
ofTimelineMarker
, (readonly)
- use_cyclic
The action is intended to be used as a cycle looping over its manually set playback frame range (enabling this doesn’t automatically make it loop)
- Type
boolean, default False
- use_frame_range
Manually specify the intended playback frame range for the action (this range is used by some tools, but does not affect animation evaluation)
- Type
boolean, default False
- flip_with_pose(object)
Flip the action around the X axis using a pose
- Parameters
object (
Object
, (never None)) – The reference armature object to use when flipping
- 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