SequencerToolSettings(bpy_struct)

base class — bpy_struct

class bpy.types.SequencerToolSettings(bpy_struct)
fit_method

Scale fit method (default 'FIT')

Type:

Literal[Strip Scale Method Items]

overlap_mode

How to resolve overlap after transformation (default 'EXPAND')

  • EXPAND Expand – Move strips so transformed strips fit.

  • OVERWRITE Overwrite – Trim or split strips to resolve overlap.

  • SHUFFLE Shuffle – Move transformed strips to nearest free space to resolve overlap.

Type:

Literal[‘EXPAND’, ‘OVERWRITE’, ‘SHUFFLE’]

pivot_point

Rotation or scaling pivot point (default 'CENTER')

  • CENTER Bounding Box Center.

  • MEDIAN Median Point.

  • CURSOR 2D Cursor – Pivot around the 2D cursor.

  • INDIVIDUAL_ORIGINS Individual Origins – Pivot around each selected island’s own median point.

Type:

Literal[‘CENTER’, ‘MEDIAN’, ‘CURSOR’, ‘INDIVIDUAL_ORIGINS’]

snap_distance

Maximum distance for snapping in pixels (in [-inf, inf], default 15)

Type:

int

snap_ignore_muted

Don’t snap to hidden strips (default False)

Type:

bool

snap_ignore_sound

Don’t snap to sound strips (default False)

Type:

bool

snap_to_borders

Snap to preview borders (default False)

Type:

bool

snap_to_center

Snap to preview center (default False)

Type:

bool

snap_to_current_frame

Snap to current frame (default False)

Type:

bool

snap_to_frame_range

Snap to preview or scene start and end frame (default False)

Type:

bool

snap_to_hold_offset

Snap to underlying strip content start and end in cases where the strip length extends beyond this range, producing holds (default False)

Type:

bool

snap_to_markers

Snap to markers (default False)

Type:

bool

snap_to_retiming_keys

Snap to retiming keys (default False)

Type:

bool

snap_to_strips_preview

Snap to borders and origins of deselected, visible strips (default False)

Type:

bool

use_snap_current_frame_to_strips

Snap current frame to strip start or end (default False)

Type:

bool

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

Inherited Properties

Inherited Functions

References