SpaceGraphEditor(Space)¶
base classes — bpy_struct, Space
- class bpy.types.SpaceGraphEditor(Space)¶
Graph Editor space data
- auto_snap¶
Automatic time snapping settings for transformations
NONENo Auto-Snap.STEPFrame Step, Snap to 1.0 frame intervals.TIME_STEPSecond Step, Snap to 1.0 second intervals.FRAMENearest Frame, Snap to actual frames (nla-action time).SECONDNearest Second, Snap to actual seconds (nla-action time).MARKERNearest Marker, Snap to nearest marker.
- Type
enum in [‘NONE’, ‘STEP’, ‘TIME_STEP’, ‘FRAME’, ‘SECOND’, ‘MARKER’], default ‘NONE’
- cursor_position_x¶
Graph Editor 2D-Value cursor - X-Value component
- Type
float in [-inf, inf], default 0.0
- cursor_position_y¶
Graph Editor 2D-Value cursor - Y-Value component
- Type
float in [-inf, inf], default 0.0
- has_ghost_curves¶
Graph Editor instance has some ghost curves stored
- Type
boolean, default False, (readonly)
- mode¶
Editing context being displayed
FCURVESGraph Editor, Edit animation/keyframes displayed as 2D curves.DRIVERSDrivers, Edit drivers.
- Type
enum in [‘FCURVES’, ‘DRIVERS’], default ‘FCURVES’
- pivot_point¶
Pivot center for rotation/scaling
- Type
enum in [‘BOUNDING_BOX_CENTER’, ‘CURSOR’, ‘INDIVIDUAL_ORIGINS’], default ‘BOUNDING_BOX_CENTER’
- show_cursor¶
Show 2D cursor
- Type
boolean, default False
- show_extrapolation¶
- Type
boolean, default False
- show_handles¶
Show handles of Bezier control points
- Type
boolean, default False
- show_markers¶
If any exists, show markers in a separate row at the bottom of the editor
- Type
boolean, default False
- show_region_hud¶
- Type
boolean, default False
- show_region_ui¶
- Type
boolean, default False
- show_seconds¶
Show timing in seconds not frames
- Type
boolean, default False
- show_sliders¶
Show sliders beside F-Curve channels
- Type
boolean, default False
- use_auto_merge_keyframes¶
Automatically merge nearby keyframes
- Type
boolean, default False
- use_auto_normalization¶
Automatically recalculate curve normalization on every curve edit
- Type
boolean, default False
- use_beauty_drawing¶
Display F-Curves using Anti-Aliasing and other fancy effects (disable for better performance)
- Type
boolean, default False
- use_normalization¶
Display curves in normalized range from -1 to 1, for easier editing of multiple curves with different ranges
- Type
boolean, default False
- use_only_selected_curves_handles¶
Only keyframes of selected F-Curves are visible and editable
- Type
boolean, default False
- use_only_selected_keyframe_handles¶
Only show and edit handles of selected keyframes
- Type
boolean, default False
- use_realtime_update¶
When transforming keyframes, changes to the animation data are flushed to other views
- Type
boolean, default False
- 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.Structsubclass
- 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
- draw_handler_add(callback, args, region_type, draw_type)¶
Add a new draw handler to this space type. It will be called every time the specified region in the space type will be drawn. Note: All arguments are positional only for now.
- Parameters
callback (function) – A function that will be called when the region is drawn. It gets the specified arguments as input.
args (tuple) – Arguments that will be passed to the callback.
region_type (str) – The region type the callback draws in; usually
WINDOW. (bpy.types.Region.type)draw_type (str) – Usually
POST_PIXELfor 2D drawing andPOST_VIEWfor 3D drawing. In some casesPRE_VIEWcan be used.BACKDROPcan be used for backdrops in the node editor.
- Returns
Handler that can be removed later on.
- Return type
object
- draw_handler_remove(handler, region_type)¶
Remove a draw handler that was added previously.
- Parameters
handler (object) – The draw handler that should be removed.
region_type (str) – Region type the callback was added to.
Inherited Properties
Inherited Functions