Keyframe(bpy_struct)
base class — bpy_struct
- class bpy.types.Keyframe(bpy_struct)
Bézier curve point with two handles defining a Keyframe on an F-Curve
- amplitude
Amount to boost elastic bounces for ‘elastic’ easing (in [0, inf], default 0.0)
- Type:
float
- back
Amount of overshoot for ‘back’ easing (in [-inf, inf], default 0.0)
- Type:
float
- co
Coordinates of the control point (array of 2 items, in [-inf, inf], default (0.0, 0.0))
- Type:
- co_ui
Coordinates of the control point. Note: Changing this value also updates the handles similar to using the graph editor transform operator (array of 2 items, in [-inf, inf], default (0.0, 0.0))
- Type:
- easing
Which ends of the segment between this and the next keyframe easing interpolation is applied to (default
'AUTO')- Type:
Literal[Beztriple Interpolation Easing Items]
- handle_left
Coordinates of the left handle (before the control point) (array of 2 items, in [-inf, inf], default (0.0, 0.0))
- Type:
- handle_left_type
Handle types (default
'FREE')- Type:
Literal[Keyframe Handle Type Items]
- handle_right
Coordinates of the right handle (after the control point) (array of 2 items, in [-inf, inf], default (0.0, 0.0))
- Type:
- handle_right_type
Handle types (default
'FREE')- Type:
Literal[Keyframe Handle Type Items]
- interpolation
Interpolation method to use for segment of the F-Curve from this Keyframe until the next Keyframe (default
'CONSTANT')- Type:
Literal[Beztriple Interpolation Mode Items]
- period
Time between bounces for elastic easing (in [-inf, inf], default 0.0)
- Type:
float
- select_control_point
Control point selection status (default False)
- Type:
bool
- select_left_handle
Left handle selection status (default False)
- Type:
bool
- select_right_handle
Right handle selection status (default False)
- Type:
bool
- type
Type of keyframe (for visual purposes only) (default
'KEYFRAME')- Type:
Literal[Beztriple Keyframe Type Items]
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
Inherited Properties
Inherited Functions
References
|