SpaceSequenceEditor(Space)

base classes — bpy_struct, Space

class bpy.types.SpaceSequenceEditor(Space)

Sequence editor space data

annotation

Annotation data for this Preview region

Type:

Annotation

cache_overlay

Settings for display of overlays (readonly, never None)

Type:

SequencerCacheOverlay

cursor_location

2D cursor location for this view (array of 2 items, in [-inf, inf], default (0.0, 0.0))

Type:

mathutils.Vector

display_channel

Preview all channels less than or equal to this value. 0 shows every channel, and negative values climb that many meta-strip levels if applicable, showing every channel there. (in [-5, 128], default 0)

Type:

int

display_mode

View mode to use for displaying sequencer output (default 'IMAGE')

Type:

Literal[‘IMAGE’, ‘WAVEFORM’, ‘RGB_PARADE’, ‘VECTOR_SCOPE’, ‘HISTOGRAM’]

overlay_frame_type

Overlay display method (default 'RECTANGLE')

  • RECTANGLE Rectangle – Show rectangle area overlay.

  • REFERENCE Reference – Show reference frame only.

  • CURRENT Current – Show current frame only.

Type:

Literal[‘RECTANGLE’, ‘REFERENCE’, ‘CURRENT’]

preview_channels

Channels of the preview to display (default 'COLOR')

  • COLOR_ALPHA Color & Alpha – Display image with RGB colors and alpha transparency.

  • COLOR Color – Display image with RGB colors.

Type:

Literal[‘COLOR_ALPHA’, ‘COLOR’]

preview_overlay

Settings for display of overlays (readonly, never None)

Type:

SequencerPreviewOverlay

proxy_render_size

Display preview using full resolution or different proxy resolutions (default 'SCENE')

Type:

Literal[‘NONE’, ‘SCENE’, ‘PROXY_25’, ‘PROXY_50’, ‘PROXY_75’, ‘PROXY_100’]

show_frames

Display frames rather than seconds (default False)

Type:

bool

show_gizmo

Show gizmos of all types (default True)

Type:

bool

show_gizmo_context

Context sensitive gizmos for the active item (default True)

Type:

bool

show_gizmo_navigate

Viewport navigation gizmo (default True)

Type:

bool

show_gizmo_tool

Active tool gizmo (default True)

Type:

bool

show_markers

If any exists, show markers in a separate row at the bottom of the editor (default False)

Type:

bool

show_overexposed

Show overexposed areas with zebra stripes (in [0, 110], default 0)

Type:

int

show_overlays

(default False)

Type:

bool

show_region_channels

(default False)

Type:

bool

(default False)

Type:

bool

show_region_hud

(default False)

Type:

bool

show_region_tool_header

(default False)

Type:

bool

show_region_toolbar

(default False)

Type:

bool

show_region_ui

(default False)

Type:

bool

show_seconds

Show timing as a timecode instead of frames (default True)

Type:

bool

show_transform_preview

Show a preview of the start or end frame of a strip while transforming its respective handle (default False)

Type:

bool

timeline_overlay

Settings for display of overlays (readonly, never None)

Type:

SequencerTimelineOverlay

use_clamp_view

Limit timeline height to maximum used channel slot (default False)

Type:

bool

use_marker_sync

Transform markers as well as strips (default False)

Type:

bool

use_proxies

Use optimized files for faster scrubbing when available (default False)

Type:

bool

use_zoom_to_fit

Automatically zoom preview image to make it fully fit the region (default False)

Type:

bool

view_type

Type of the Sequencer view (sequencer, preview or both) (default 'SEQUENCER')

Type:

Literal[Space Sequencer View Type Items]

zoom_percentage

Zoom percentage (in [0.4, 80000], default 100.0)

Type:

float

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:

bpy.types.Struct

classmethod bl_rna_get_subclass_py(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (type | None) – The value to return when not found.

Returns:

The class or default when not found.

Return type:

type

classmethod 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 (Callable[..., Any]) – A function that will be called when the region is drawn. It gets the specified arguments as input, it’s return value is ignored.

  • args (tuple[Any, ...]) – 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_PIXEL for 2D drawing and POST_VIEW for 3D drawing. In some cases PRE_VIEW can be used. BACKDROP can be used for backdrops in the node editor.

Returns:

Handler that can be removed later on.

Return type:

object

classmethod 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