Graph Operators

bpy.ops.graph.bake()

Bake selected F-Curves to a set of sampled points defining a similar curve

bpy.ops.graph.clean(threshold=0.001)

Simplify F-Curves by removing closely spaced keyframes

Parameters:
  • threshold (float in [0, inf], (optional)) – Threshold
bpy.ops.graph.click_insert(frame=1.0, value=1.0)

Insert new keyframe at the cursor position for the active F-Curve

Parameters:
  • frame (float in [-inf, inf], (optional)) – Frame Number, Frame to insert keyframe on
  • value (float in [-inf, inf], (optional)) – Value, Value for keyframe on
bpy.ops.graph.clickselect(left_right='OFF', extend=False, column=False, curves=False)

Select keyframes by clicking on them

Parameters:
  • left_right (enum in [‘CHECK’, ‘OFF’, ‘LEFT’, ‘RIGHT’], (optional, never None)) – Left Right
  • extend (boolean, (optional)) – Extend Select
  • column (boolean, (optional)) – Column Select, Select all keyframes that occur on the same frame as the one under the mouse
  • curves (boolean, (optional)) – Only Curves, Select all the keyframes in the curve
bpy.ops.graph.copy()

Copy selected keyframes to the copy/paste buffer

bpy.ops.graph.cursor_set(frame=0, value=0.0)

Interactively set the current frame number and value cursor

Parameters:
  • frame (int in [-300000, 300000], (optional)) – Frame
  • value (float in [1.17549e-38, inf], (optional)) – Value
bpy.ops.graph.delete()

Remove all selected keyframes

bpy.ops.graph.duplicate(mode=1)

Make a copy of all selected keyframes

Parameters:
  • mode (int in [0, inf], (optional)) – Mode
bpy.ops.graph.euler_filter()

Fixes the most common causes of gimbal lock in the fcurves of the active bone

File :op/fcurve_euler_filter.py:55
bpy.ops.graph.extrapolation_type(type='CONSTANT')

Set extrapolation mode for selected F-Curves

Parameters:
  • type (enum in [‘CONSTANT’, ‘LINEAR’], (optional, never None)) – Type
bpy.ops.graph.fmodifier_add(type='NULL', only_active=True)

Add F-Modifiers to the selected F-Curves

Parameters:
  • type (enum in [‘NULL’, ‘GENERATOR’, ‘FNGENERATOR’, ‘ENVELOPE’, ‘CYCLES’, ‘NOISE’, ‘FILTER’, ‘LIMITS’, ‘STEPPED’], (optional, never None)) – Type
  • only_active (boolean, (optional)) – Only Active, Only add F-Modifier to active F-Curve.
bpy.ops.graph.fmodifier_copy()

Copy the F-Modifier(s) of the active F-Curve.

bpy.ops.graph.fmodifier_paste()

Add copied F-Modifiers to the selected F-Curves

bpy.ops.graph.frame_jump()

Set the current frame to the average frame of the selected keyframes

bpy.ops.graph.ghost_curves_clear()

Clear F-Curve snapshots (Ghosts) for active Graph Editor

bpy.ops.graph.ghost_curves_create()

Create snapshot (Ghosts) of selected F-Curves as background aid for active Graph Editor

bpy.ops.graph.handle_type(type='FREE')

Set type of handle for selected keyframes

Parameters:
  • type (enum in [‘FREE’, ‘VECTOR’, ‘ALIGNED’, ‘AUTO’, ‘ANIM_CLAMPED’], (optional, never None)) – Type
bpy.ops.graph.handles_view_toggle()

Undocumented (contribute)

bpy.ops.graph.interpolation_type(type='CONSTANT')

Set interpolation mode for the F-Curve segments starting from the selected keyframes

Parameters:
  • type (enum in [‘CONSTANT’, ‘LINEAR’, ‘BEZIER’], (optional, never None)) – Type
bpy.ops.graph.keyframe_insert(type='ALL')

Insert keyframes for the specified channels

Parameters:
  • type (enum in [‘ALL’, ‘SEL’], (optional, never None)) – Type
bpy.ops.graph.mirror(type='CFRA')

Flip selected keyframes over the selected mirror line

Parameters:
  • type (enum in [‘CFRA’, ‘VALUE’, ‘YAXIS’, ‘XAXIS’, ‘MARKER’], (optional, never None)) – Type
bpy.ops.graph.paste()

Paste keyframes from copy/paste buffer for the selected channels, starting on the current frame

bpy.ops.graph.previewrange_set()

Undocumented (contribute)

bpy.ops.graph.properties()

Undocumented (contribute)

bpy.ops.graph.sample()

Add keyframes on every frame between the selected keyframes

bpy.ops.graph.select_all_toggle(invert=False)

Toggle selection of all keyframes

Parameters:
  • invert (boolean, (optional)) – Invert
bpy.ops.graph.select_border(gesture_mode=0, xmin=0, xmax=0, ymin=0, ymax=0, axis_range=False, include_handles=False)

Select all keyframes within the specified region

Parameters:
  • gesture_mode (int in [-inf, inf], (optional)) – Gesture Mode
  • xmin (int in [-inf, inf], (optional)) – X Min
  • xmax (int in [-inf, inf], (optional)) – X Max
  • ymin (int in [-inf, inf], (optional)) – Y Min
  • ymax (int in [-inf, inf], (optional)) – Y Max
  • axis_range (boolean, (optional)) – Axis Range
  • include_handles (boolean, (optional)) – Include Handles, Are handles tested individually against the selection criteria
bpy.ops.graph.select_column(mode='KEYS')

Select all keyframes on the specified frame(s)

Parameters:
  • mode (enum in [‘KEYS’, ‘CFRA’, ‘MARKERS_COLUMN’, ‘MARKERS_BETWEEN’], (optional, never None)) – Mode
bpy.ops.graph.select_less()

Deselect keyframes on ends of selection islands

bpy.ops.graph.select_linked()

Select keyframes occurring the same F-Curves as selected ones

bpy.ops.graph.select_more()

Select keyframes beside already selected ones

bpy.ops.graph.smooth()

Apply weighted moving means to make selected F-Curves less bumpy

bpy.ops.graph.snap(type='CFRA')

Snap selected keyframes to the chosen times/values

Parameters:
  • type (enum in [‘CFRA’, ‘VALUE’, ‘NEAREST_FRAME’, ‘NEAREST_SECOND’, ‘NEAREST_MARKER’, ‘HORIZONTAL’], (optional, never None)) – Type
bpy.ops.graph.sound_bake(filepath="", filter_blender=False, filter_image=False, filter_movie=True, filter_python=False, filter_font=False, filter_sound=True, filter_text=False, filter_btx=False, filter_collada=False, filter_folder=True, filemode=9, low=0.0, high=100000.0, attack=0.005, release=0.2, threshold=0.0, accumulate=False, use_additive=False, square=False, sthreshold=0.1)

Bakes a sound wave to selected F-Curves

Parameters:
  • filepath (string, (optional)) – File Path, Path to file
  • filter_blender (boolean, (optional)) – Filter .blend files
  • filter_image (boolean, (optional)) – Filter image files
  • filter_movie (boolean, (optional)) – Filter movie files
  • filter_python (boolean, (optional)) – Filter python files
  • filter_font (boolean, (optional)) – Filter font files
  • filter_sound (boolean, (optional)) – Filter sound files
  • filter_text (boolean, (optional)) – Filter text files
  • filter_btx (boolean, (optional)) – Filter btx files
  • filter_collada (boolean, (optional)) – Filter COLLADA files
  • filter_folder (boolean, (optional)) – Filter folders
  • filemode (int in [1, 9], (optional)) – File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
  • low (float in [0, 100000], (optional)) – Lowest frequency
  • high (float in [0, 100000], (optional)) – Highest frequency
  • attack (float in [0, 2], (optional)) – Attack time
  • release (float in [0, 5], (optional)) – Release time
  • threshold (float in [0, 1], (optional)) – Threshold
  • accumulate (boolean, (optional)) – Accumulate
  • use_additive (boolean, (optional)) – Additive
  • square (boolean, (optional)) – Square
  • sthreshold (float in [0, 1], (optional)) – Square Threshold
bpy.ops.graph.view_all()

Reset viewable area to show full keyframe range

Previous topic

Gpencil Operators

Next topic

Group Operators