FCurveKeyframePoints(bpy_struct)¶
base class — bpy_struct
-
class
bpy.types.FCurveKeyframePoints(bpy_struct)¶ Collection of keyframe points
-
insert(frame, value, options={})¶ Add a keyframe point to a F-Curve
Parameters: - frame (float in [-inf, inf]) – X Value of this keyframe point
- value (float in [-inf, inf]) – Y Value of this keyframe point
- options (enum set in {‘REPLACE’, ‘NEEDED’, ‘FAST’}, (optional)) –
Keyframe options
REPLACEReplace, Don’t add any new keyframes, but just replace existing ones.NEEDEDNeeded, Only adds keyframes that are needed.FASTFast, Fast keyframe insertion to avoid recalculating the curve each time.
Returns: Newly created keyframe
Return type:
-
add(count=1)¶ Add a keyframe point to a F-Curve
Parameters: count (int in [0, inf], (optional)) – Number, Number of points to add to the spline
-
Inherited Properties
Inherited Functions
References