fake-bpy-module 20250612__py3-none-any.whl → 20260118__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -7,6 +7,76 @@ import bpy.stub_internal.rna_enums
|
|
|
7
7
|
import bpy.types
|
|
8
8
|
import mathutils
|
|
9
9
|
|
|
10
|
+
def add_scene_strip_from_scene_asset(
|
|
11
|
+
execution_context: int | str | None = None,
|
|
12
|
+
undo: bool | None = None,
|
|
13
|
+
/,
|
|
14
|
+
*,
|
|
15
|
+
move_strips: bool | None = True,
|
|
16
|
+
frame_start: int | None = 0,
|
|
17
|
+
channel: int | None = 1,
|
|
18
|
+
replace_sel: bool | None = True,
|
|
19
|
+
overlap: bool | None = False,
|
|
20
|
+
overlap_shuffle_override: bool | None = False,
|
|
21
|
+
skip_locked_or_muted_channels: bool | None = True,
|
|
22
|
+
asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems
|
|
23
|
+
| None = "LOCAL",
|
|
24
|
+
asset_library_identifier: str = "",
|
|
25
|
+
relative_asset_identifier: str = "",
|
|
26
|
+
) -> None:
|
|
27
|
+
"""Add a strip using a duplicate of this scene asset as the source
|
|
28
|
+
|
|
29
|
+
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
30
|
+
:param frame_start: Start Frame, Start frame of the strip
|
|
31
|
+
:param channel: Channel, Channel to place this strip into
|
|
32
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips after add operation completes
|
|
33
|
+
:param overlap: Allow Overlap, Dont correct overlap on new strips
|
|
34
|
+
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
35
|
+
:param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
|
|
36
|
+
:param asset_library_type: Asset Library Type
|
|
37
|
+
:param asset_library_identifier: Asset Library Identifier
|
|
38
|
+
:param relative_asset_identifier: Relative Asset Identifier
|
|
39
|
+
"""
|
|
40
|
+
|
|
41
|
+
def box_blade(
|
|
42
|
+
execution_context: int | str | None = None,
|
|
43
|
+
undo: bool | None = None,
|
|
44
|
+
/,
|
|
45
|
+
*,
|
|
46
|
+
xmin: int | None = 0,
|
|
47
|
+
xmax: int | None = 0,
|
|
48
|
+
ymin: int | None = 0,
|
|
49
|
+
ymax: int | None = 0,
|
|
50
|
+
wait_for_input: bool | None = True,
|
|
51
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
52
|
+
type: typing.Literal["SOFT", "HARD"] | None = "SOFT",
|
|
53
|
+
ignore_selection: bool | None = True,
|
|
54
|
+
ignore_connections: bool | None = False,
|
|
55
|
+
remove_gaps: bool | None = True,
|
|
56
|
+
) -> None:
|
|
57
|
+
"""Draw a box around the parts of strips you want to cut away
|
|
58
|
+
|
|
59
|
+
:param xmin: X Min
|
|
60
|
+
:param xmax: X Max
|
|
61
|
+
:param ymin: Y Min
|
|
62
|
+
:param ymax: Y Max
|
|
63
|
+
:param wait_for_input: Wait for Input
|
|
64
|
+
:param mode: Mode
|
|
65
|
+
|
|
66
|
+
SET
|
|
67
|
+
Set -- Set a new selection.
|
|
68
|
+
|
|
69
|
+
ADD
|
|
70
|
+
Extend -- Extend existing selection.
|
|
71
|
+
|
|
72
|
+
SUB
|
|
73
|
+
Subtract -- Subtract existing selection.
|
|
74
|
+
:param type: Type, The type of split operation to perform on strips
|
|
75
|
+
:param ignore_selection: Ignore Selection, In box blade mode, make cuts to all strips, even if they are not selected
|
|
76
|
+
:param ignore_connections: Ignore Connections, Dont propagate split to connected strips
|
|
77
|
+
:param remove_gaps: Remove Gaps, In box blade mode, close gaps between cut strips, rippling later strips on the same channel
|
|
78
|
+
"""
|
|
79
|
+
|
|
10
80
|
def change_effect_type(
|
|
11
81
|
execution_context: int | str | None = None,
|
|
12
82
|
undo: bool | None = None,
|
|
@@ -22,7 +92,6 @@ def change_effect_type(
|
|
|
22
92
|
"MULTIPLY",
|
|
23
93
|
"WIPE",
|
|
24
94
|
"GLOW",
|
|
25
|
-
"TRANSFORM",
|
|
26
95
|
"COLOR",
|
|
27
96
|
"SPEED",
|
|
28
97
|
"MULTICAM",
|
|
@@ -35,8 +104,6 @@ def change_effect_type(
|
|
|
35
104
|
) -> None:
|
|
36
105
|
"""Replace effect strip with another that takes the same number of inputs
|
|
37
106
|
|
|
38
|
-
:type execution_context: int | str | None
|
|
39
|
-
:type undo: bool | None
|
|
40
107
|
:param type: Type, Strip effect type
|
|
41
108
|
|
|
42
109
|
CROSS
|
|
@@ -46,7 +113,7 @@ def change_effect_type(
|
|
|
46
113
|
Add -- Add together color channels from two videos.
|
|
47
114
|
|
|
48
115
|
SUBTRACT
|
|
49
|
-
Subtract -- Subtract one
|
|
116
|
+
Subtract -- Subtract one strips color from another.
|
|
50
117
|
|
|
51
118
|
ALPHA_OVER
|
|
52
119
|
Alpha Over -- Blend alpha on top of another video.
|
|
@@ -66,9 +133,6 @@ def change_effect_type(
|
|
|
66
133
|
GLOW
|
|
67
134
|
Glow -- Add blur and brightness to light areas.
|
|
68
135
|
|
|
69
|
-
TRANSFORM
|
|
70
|
-
Transform -- Apply scale, rotation, or translation.
|
|
71
|
-
|
|
72
136
|
COLOR
|
|
73
137
|
Color -- Add a simple color strip.
|
|
74
138
|
|
|
@@ -89,7 +153,6 @@ def change_effect_type(
|
|
|
89
153
|
|
|
90
154
|
COLORMIX
|
|
91
155
|
Color Mix -- Combine two strips using blend modes.
|
|
92
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
|
|
93
156
|
"""
|
|
94
157
|
|
|
95
158
|
def change_path(
|
|
@@ -130,54 +193,29 @@ def change_path(
|
|
|
130
193
|
) -> None:
|
|
131
194
|
"""Undocumented, consider contributing.
|
|
132
195
|
|
|
133
|
-
:type execution_context: int | str | None
|
|
134
|
-
:type undo: bool | None
|
|
135
196
|
:param filepath: File Path, Path to file
|
|
136
|
-
:type filepath: str
|
|
137
197
|
:param directory: Directory, Directory of the file
|
|
138
|
-
:type directory: str
|
|
139
198
|
:param files: Files
|
|
140
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
141
199
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
142
|
-
:type hide_props_region: bool | None
|
|
143
200
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
144
|
-
:type check_existing: bool | None
|
|
145
201
|
:param filter_blender: Filter .blend files
|
|
146
|
-
:type filter_blender: bool | None
|
|
147
202
|
:param filter_backup: Filter .blend files
|
|
148
|
-
:type filter_backup: bool | None
|
|
149
203
|
:param filter_image: Filter image files
|
|
150
|
-
:type filter_image: bool | None
|
|
151
204
|
:param filter_movie: Filter movie files
|
|
152
|
-
:type filter_movie: bool | None
|
|
153
205
|
:param filter_python: Filter Python files
|
|
154
|
-
:type filter_python: bool | None
|
|
155
206
|
:param filter_font: Filter font files
|
|
156
|
-
:type filter_font: bool | None
|
|
157
207
|
:param filter_sound: Filter sound files
|
|
158
|
-
:type filter_sound: bool | None
|
|
159
208
|
:param filter_text: Filter text files
|
|
160
|
-
:type filter_text: bool | None
|
|
161
209
|
:param filter_archive: Filter archive files
|
|
162
|
-
:type filter_archive: bool | None
|
|
163
210
|
:param filter_btx: Filter btx files
|
|
164
|
-
:type filter_btx: bool | None
|
|
165
211
|
:param filter_alembic: Filter Alembic files
|
|
166
|
-
:type filter_alembic: bool | None
|
|
167
212
|
:param filter_usd: Filter USD files
|
|
168
|
-
:type filter_usd: bool | None
|
|
169
213
|
:param filter_obj: Filter OBJ files
|
|
170
|
-
:type filter_obj: bool | None
|
|
171
214
|
:param filter_volume: Filter OpenVDB volume files
|
|
172
|
-
:type filter_volume: bool | None
|
|
173
215
|
:param filter_folder: Filter folders
|
|
174
|
-
:type filter_folder: bool | None
|
|
175
216
|
:param filter_blenlib: Filter Blender IDs
|
|
176
|
-
:type filter_blenlib: bool | None
|
|
177
217
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
178
|
-
:type filemode: int | None
|
|
179
218
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
180
|
-
:type relative_path: bool | None
|
|
181
219
|
:param display_type: Display Type
|
|
182
220
|
|
|
183
221
|
DEFAULT
|
|
@@ -191,11 +229,8 @@ def change_path(
|
|
|
191
229
|
|
|
192
230
|
THUMBNAIL
|
|
193
231
|
Thumbnails -- Display files as thumbnails.
|
|
194
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
195
232
|
:param sort_method: File sorting mode
|
|
196
|
-
:type sort_method: str | None
|
|
197
233
|
:param use_placeholders: Use Placeholders, Use placeholders for missing frames of the strip
|
|
198
|
-
:type use_placeholders: bool | None
|
|
199
234
|
"""
|
|
200
235
|
|
|
201
236
|
def change_scene(
|
|
@@ -207,10 +242,7 @@ def change_scene(
|
|
|
207
242
|
) -> None:
|
|
208
243
|
"""Change Scene assigned to Strip
|
|
209
244
|
|
|
210
|
-
:type execution_context: int | str | None
|
|
211
|
-
:type undo: bool | None
|
|
212
245
|
:param scene: Scene
|
|
213
|
-
:type scene: str | None
|
|
214
246
|
"""
|
|
215
247
|
|
|
216
248
|
def connect(
|
|
@@ -222,27 +254,22 @@ def connect(
|
|
|
222
254
|
) -> None:
|
|
223
255
|
"""Link selected strips together for simplified group selection
|
|
224
256
|
|
|
225
|
-
:type execution_context: int | str | None
|
|
226
|
-
:type undo: bool | None
|
|
227
257
|
:param toggle: Toggle, Toggle strip connections
|
|
228
|
-
:type toggle: bool | None
|
|
229
258
|
"""
|
|
230
259
|
|
|
231
|
-
def copy(
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
"""
|
|
260
|
+
def copy(
|
|
261
|
+
execution_context: int | str | None = None,
|
|
262
|
+
undo: bool | None = None,
|
|
263
|
+
/,
|
|
264
|
+
) -> None:
|
|
265
|
+
"""Copy the selected strips to the internal clipboard"""
|
|
237
266
|
|
|
238
267
|
def crossfade_sounds(
|
|
239
|
-
execution_context: int | str | None = None,
|
|
268
|
+
execution_context: int | str | None = None,
|
|
269
|
+
undo: bool | None = None,
|
|
270
|
+
/,
|
|
240
271
|
) -> None:
|
|
241
|
-
"""Do cross-fading volume animation of two selected sound strips
|
|
242
|
-
|
|
243
|
-
:type execution_context: int | str | None
|
|
244
|
-
:type undo: bool | None
|
|
245
|
-
"""
|
|
272
|
+
"""Do cross-fading volume animation of two selected sound strips"""
|
|
246
273
|
|
|
247
274
|
def cursor_set(
|
|
248
275
|
execution_context: int | str | None = None,
|
|
@@ -253,20 +280,15 @@ def cursor_set(
|
|
|
253
280
|
) -> None:
|
|
254
281
|
"""Set 2D cursor location
|
|
255
282
|
|
|
256
|
-
:type execution_context: int | str | None
|
|
257
|
-
:type undo: bool | None
|
|
258
283
|
:param location: Location, Cursor location in normalized preview coordinates
|
|
259
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
260
284
|
"""
|
|
261
285
|
|
|
262
286
|
def deinterlace_selected_movies(
|
|
263
|
-
execution_context: int | str | None = None,
|
|
287
|
+
execution_context: int | str | None = None,
|
|
288
|
+
undo: bool | None = None,
|
|
289
|
+
/,
|
|
264
290
|
) -> None:
|
|
265
|
-
"""Deinterlace all selected movie sources
|
|
266
|
-
|
|
267
|
-
:type execution_context: int | str | None
|
|
268
|
-
:type undo: bool | None
|
|
269
|
-
"""
|
|
291
|
+
"""Deinterlace all selected movie sources"""
|
|
270
292
|
|
|
271
293
|
def delete(
|
|
272
294
|
execution_context: int | str | None = None,
|
|
@@ -277,28 +299,26 @@ def delete(
|
|
|
277
299
|
) -> None:
|
|
278
300
|
"""Delete selected strips from the sequencer
|
|
279
301
|
|
|
280
|
-
:type execution_context: int | str | None
|
|
281
|
-
:type undo: bool | None
|
|
282
302
|
:param delete_data: Delete Data, After removing the Strip, delete the associated data also
|
|
283
|
-
:type delete_data: bool | None
|
|
284
303
|
"""
|
|
285
304
|
|
|
286
305
|
def disconnect(
|
|
287
|
-
execution_context: int | str | None = None,
|
|
306
|
+
execution_context: int | str | None = None,
|
|
307
|
+
undo: bool | None = None,
|
|
308
|
+
/,
|
|
288
309
|
) -> None:
|
|
289
|
-
"""Unlink selected strips so that they can be selected individually
|
|
290
|
-
|
|
291
|
-
:type execution_context: int | str | None
|
|
292
|
-
:type undo: bool | None
|
|
293
|
-
"""
|
|
310
|
+
"""Unlink selected strips so that they can be selected individually"""
|
|
294
311
|
|
|
295
312
|
def duplicate(
|
|
296
|
-
execution_context: int | str | None = None,
|
|
313
|
+
execution_context: int | str | None = None,
|
|
314
|
+
undo: bool | None = None,
|
|
315
|
+
/,
|
|
316
|
+
*,
|
|
317
|
+
linked: bool | None = False,
|
|
297
318
|
) -> None:
|
|
298
319
|
"""Duplicate the selected strips
|
|
299
320
|
|
|
300
|
-
:
|
|
301
|
-
:type undo: bool | None
|
|
321
|
+
:param linked: Linked, Duplicate strip but not strip data, linking to the original data
|
|
302
322
|
"""
|
|
303
323
|
|
|
304
324
|
def duplicate_move(
|
|
@@ -311,12 +331,22 @@ def duplicate_move(
|
|
|
311
331
|
) -> None:
|
|
312
332
|
"""Duplicate selected strips and move them
|
|
313
333
|
|
|
314
|
-
:type execution_context: int | str | None
|
|
315
|
-
:type undo: bool | None
|
|
316
334
|
:param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
|
|
317
|
-
:type SEQUENCER_OT_duplicate: duplicate | None
|
|
318
335
|
:param TRANSFORM_OT_seq_slide: Sequence Slide, Slide a sequence strip in time
|
|
319
|
-
|
|
336
|
+
"""
|
|
337
|
+
|
|
338
|
+
def duplicate_move_linked(
|
|
339
|
+
execution_context: int | str | None = None,
|
|
340
|
+
undo: bool | None = None,
|
|
341
|
+
/,
|
|
342
|
+
*,
|
|
343
|
+
SEQUENCER_OT_duplicate: duplicate | None = None,
|
|
344
|
+
TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide | None = None,
|
|
345
|
+
) -> None:
|
|
346
|
+
"""Duplicate selected strips, but not their data, and move them
|
|
347
|
+
|
|
348
|
+
:param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
|
|
349
|
+
:param TRANSFORM_OT_seq_slide: Sequence Slide, Slide a sequence strip in time
|
|
320
350
|
"""
|
|
321
351
|
|
|
322
352
|
def effect_strip_add(
|
|
@@ -334,7 +364,6 @@ def effect_strip_add(
|
|
|
334
364
|
"MULTIPLY",
|
|
335
365
|
"WIPE",
|
|
336
366
|
"GLOW",
|
|
337
|
-
"TRANSFORM",
|
|
338
367
|
"COLOR",
|
|
339
368
|
"SPEED",
|
|
340
369
|
"MULTICAM",
|
|
@@ -346,7 +375,7 @@ def effect_strip_add(
|
|
|
346
375
|
| None = "CROSS",
|
|
347
376
|
move_strips: bool | None = True,
|
|
348
377
|
frame_start: int | None = 0,
|
|
349
|
-
|
|
378
|
+
length: int | None = 0,
|
|
350
379
|
channel: int | None = 1,
|
|
351
380
|
replace_sel: bool | None = True,
|
|
352
381
|
overlap: bool | None = False,
|
|
@@ -356,8 +385,6 @@ def effect_strip_add(
|
|
|
356
385
|
) -> None:
|
|
357
386
|
"""Add an effect to the sequencer, most are applied on top of existing strips
|
|
358
387
|
|
|
359
|
-
:type execution_context: int | str | None
|
|
360
|
-
:type undo: bool | None
|
|
361
388
|
:param type: Type, Sequencer effect type
|
|
362
389
|
|
|
363
390
|
CROSS
|
|
@@ -367,7 +394,7 @@ def effect_strip_add(
|
|
|
367
394
|
Add -- Add together color channels from two videos.
|
|
368
395
|
|
|
369
396
|
SUBTRACT
|
|
370
|
-
Subtract -- Subtract one
|
|
397
|
+
Subtract -- Subtract one strips color from another.
|
|
371
398
|
|
|
372
399
|
ALPHA_OVER
|
|
373
400
|
Alpha Over -- Blend alpha on top of another video.
|
|
@@ -387,9 +414,6 @@ def effect_strip_add(
|
|
|
387
414
|
GLOW
|
|
388
415
|
Glow -- Add blur and brightness to light areas.
|
|
389
416
|
|
|
390
|
-
TRANSFORM
|
|
391
|
-
Transform -- Apply scale, rotation, or translation.
|
|
392
|
-
|
|
393
417
|
COLOR
|
|
394
418
|
Color -- Add a simple color strip.
|
|
395
419
|
|
|
@@ -410,25 +434,15 @@ def effect_strip_add(
|
|
|
410
434
|
|
|
411
435
|
COLORMIX
|
|
412
436
|
Color Mix -- Combine two strips using blend modes.
|
|
413
|
-
:
|
|
414
|
-
:param
|
|
415
|
-
:
|
|
416
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
417
|
-
:type frame_start: int | None
|
|
418
|
-
:param frame_end: End Frame, End frame for the color strip
|
|
419
|
-
:type frame_end: int | None
|
|
437
|
+
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
438
|
+
:param frame_start: Start Frame, Start frame of the strip
|
|
439
|
+
:param length: Length, Length of the strip in frames, or the length of each strip if multiple are added
|
|
420
440
|
:param channel: Channel, Channel to place this strip into
|
|
421
|
-
:
|
|
422
|
-
:param
|
|
423
|
-
:type replace_sel: bool | None
|
|
424
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
425
|
-
:type overlap: bool | None
|
|
441
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips after add operation completes
|
|
442
|
+
:param overlap: Allow Overlap, Dont correct overlap on new strips
|
|
426
443
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
427
|
-
:type overlap_shuffle_override: bool | None
|
|
428
444
|
:param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
|
|
429
|
-
:type skip_locked_or_muted_channels: bool | None
|
|
430
445
|
:param color: Color, Initialize the strip with this color
|
|
431
|
-
:type color: collections.abc.Sequence[float] | mathutils.Color | None
|
|
432
446
|
"""
|
|
433
447
|
|
|
434
448
|
def enable_proxies(
|
|
@@ -444,18 +458,11 @@ def enable_proxies(
|
|
|
444
458
|
) -> None:
|
|
445
459
|
"""Enable selected proxies on all selected Movie and Image strips
|
|
446
460
|
|
|
447
|
-
:type execution_context: int | str | None
|
|
448
|
-
:type undo: bool | None
|
|
449
461
|
:param proxy_25: 25%
|
|
450
|
-
:type proxy_25: bool | None
|
|
451
462
|
:param proxy_50: 50%
|
|
452
|
-
:type proxy_50: bool | None
|
|
453
463
|
:param proxy_75: 75%
|
|
454
|
-
:type proxy_75: bool | None
|
|
455
464
|
:param proxy_100: 100%
|
|
456
|
-
:type proxy_100: bool | None
|
|
457
465
|
:param overwrite: Overwrite
|
|
458
|
-
:type overwrite: bool | None
|
|
459
466
|
"""
|
|
460
467
|
|
|
461
468
|
def export_subtitles(
|
|
@@ -491,48 +498,26 @@ def export_subtitles(
|
|
|
491
498
|
) -> None:
|
|
492
499
|
"""Export .srt file containing text strips
|
|
493
500
|
|
|
494
|
-
:type execution_context: int | str | None
|
|
495
|
-
:type undo: bool | None
|
|
496
501
|
:param filepath: File Path, Path to file
|
|
497
|
-
:type filepath: str
|
|
498
502
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
499
|
-
:type hide_props_region: bool | None
|
|
500
503
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
501
|
-
:type check_existing: bool | None
|
|
502
504
|
:param filter_blender: Filter .blend files
|
|
503
|
-
:type filter_blender: bool | None
|
|
504
505
|
:param filter_backup: Filter .blend files
|
|
505
|
-
:type filter_backup: bool | None
|
|
506
506
|
:param filter_image: Filter image files
|
|
507
|
-
:type filter_image: bool | None
|
|
508
507
|
:param filter_movie: Filter movie files
|
|
509
|
-
:type filter_movie: bool | None
|
|
510
508
|
:param filter_python: Filter Python files
|
|
511
|
-
:type filter_python: bool | None
|
|
512
509
|
:param filter_font: Filter font files
|
|
513
|
-
:type filter_font: bool | None
|
|
514
510
|
:param filter_sound: Filter sound files
|
|
515
|
-
:type filter_sound: bool | None
|
|
516
511
|
:param filter_text: Filter text files
|
|
517
|
-
:type filter_text: bool | None
|
|
518
512
|
:param filter_archive: Filter archive files
|
|
519
|
-
:type filter_archive: bool | None
|
|
520
513
|
:param filter_btx: Filter btx files
|
|
521
|
-
:type filter_btx: bool | None
|
|
522
514
|
:param filter_alembic: Filter Alembic files
|
|
523
|
-
:type filter_alembic: bool | None
|
|
524
515
|
:param filter_usd: Filter USD files
|
|
525
|
-
:type filter_usd: bool | None
|
|
526
516
|
:param filter_obj: Filter OBJ files
|
|
527
|
-
:type filter_obj: bool | None
|
|
528
517
|
:param filter_volume: Filter OpenVDB volume files
|
|
529
|
-
:type filter_volume: bool | None
|
|
530
518
|
:param filter_folder: Filter folders
|
|
531
|
-
:type filter_folder: bool | None
|
|
532
519
|
:param filter_blenlib: Filter Blender IDs
|
|
533
|
-
:type filter_blenlib: bool | None
|
|
534
520
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
535
|
-
:type filemode: int | None
|
|
536
521
|
:param display_type: Display Type
|
|
537
522
|
|
|
538
523
|
DEFAULT
|
|
@@ -546,9 +531,7 @@ def export_subtitles(
|
|
|
546
531
|
|
|
547
532
|
THUMBNAIL
|
|
548
533
|
Thumbnails -- Display files as thumbnails.
|
|
549
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
550
534
|
:param sort_method: File sorting mode
|
|
551
|
-
:type sort_method: str | None
|
|
552
535
|
"""
|
|
553
536
|
|
|
554
537
|
def fades_add(
|
|
@@ -562,10 +545,7 @@ def fades_add(
|
|
|
562
545
|
) -> None:
|
|
563
546
|
"""Adds or updates a fade animation for either visual or audio strips
|
|
564
547
|
|
|
565
|
-
:type execution_context: int | str | None
|
|
566
|
-
:type undo: bool | None
|
|
567
548
|
:param duration_seconds: Fade Duration, Duration of the fade in seconds
|
|
568
|
-
:type duration_seconds: float | None
|
|
569
549
|
:param type: Fade Type, Fade in, out, both in and out, to, or from the current frame. Default is both in and out
|
|
570
550
|
|
|
571
551
|
IN_OUT
|
|
@@ -582,17 +562,14 @@ def fades_add(
|
|
|
582
562
|
|
|
583
563
|
CURSOR_TO
|
|
584
564
|
To Current Frame -- Fade from the start of strips under the time cursor to the current frame.
|
|
585
|
-
:type type: typing.Literal['IN_OUT','IN','OUT','CURSOR_FROM','CURSOR_TO'] | None
|
|
586
565
|
"""
|
|
587
566
|
|
|
588
567
|
def fades_clear(
|
|
589
|
-
execution_context: int | str | None = None,
|
|
568
|
+
execution_context: int | str | None = None,
|
|
569
|
+
undo: bool | None = None,
|
|
570
|
+
/,
|
|
590
571
|
) -> None:
|
|
591
|
-
"""Removes fade animation from selected strips
|
|
592
|
-
|
|
593
|
-
:type execution_context: int | str | None
|
|
594
|
-
:type undo: bool | None
|
|
595
|
-
"""
|
|
572
|
+
"""Removes fade animation from selected strips"""
|
|
596
573
|
|
|
597
574
|
def gap_insert(
|
|
598
575
|
execution_context: int | str | None = None,
|
|
@@ -603,10 +580,7 @@ def gap_insert(
|
|
|
603
580
|
) -> None:
|
|
604
581
|
"""Insert gap at current frame to first strips at the right, independent of selection or locked state of strips
|
|
605
582
|
|
|
606
|
-
:type execution_context: int | str | None
|
|
607
|
-
:type undo: bool | None
|
|
608
583
|
:param frames: Frames, Frames to insert after current strip
|
|
609
|
-
:type frames: int | None
|
|
610
584
|
"""
|
|
611
585
|
|
|
612
586
|
def gap_remove(
|
|
@@ -618,10 +592,7 @@ def gap_remove(
|
|
|
618
592
|
) -> None:
|
|
619
593
|
"""Remove gap at current frame to first strip at the right, independent of selection or locked state of strips
|
|
620
594
|
|
|
621
|
-
:type execution_context: int | str | None
|
|
622
|
-
:type undo: bool | None
|
|
623
595
|
:param all: All Gaps, Do all gaps to right of current frame
|
|
624
|
-
:type all: bool | None
|
|
625
596
|
"""
|
|
626
597
|
|
|
627
598
|
def image_strip_add(
|
|
@@ -668,66 +639,44 @@ def image_strip_add(
|
|
|
668
639
|
| None = "",
|
|
669
640
|
move_strips: bool | None = True,
|
|
670
641
|
frame_start: int | None = 0,
|
|
671
|
-
|
|
642
|
+
length: int | None = 0,
|
|
672
643
|
channel: int | None = 1,
|
|
673
644
|
replace_sel: bool | None = True,
|
|
674
645
|
overlap: bool | None = False,
|
|
675
646
|
overlap_shuffle_override: bool | None = False,
|
|
676
647
|
skip_locked_or_muted_channels: bool | None = True,
|
|
677
|
-
fit_method:
|
|
648
|
+
fit_method: bpy.stub_internal.rna_enums.StripScaleMethodItems | None = "FIT",
|
|
678
649
|
set_view_transform: bool | None = True,
|
|
650
|
+
image_import_type: typing.Literal["DETECT", "SEQUENCE", "INDIVIDUAL"]
|
|
651
|
+
| None = "DETECT",
|
|
652
|
+
use_sequence_detection: bool | None = True,
|
|
679
653
|
use_placeholders: bool | None = False,
|
|
680
654
|
) -> None:
|
|
681
655
|
"""Add an image or image sequence to the sequencer
|
|
682
656
|
|
|
683
|
-
:type execution_context: int | str | None
|
|
684
|
-
:type undo: bool | None
|
|
685
657
|
:param directory: Directory, Directory of the file
|
|
686
|
-
:type directory: str
|
|
687
658
|
:param files: Files
|
|
688
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
689
659
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
690
|
-
:type check_existing: bool | None
|
|
691
660
|
:param filter_blender: Filter .blend files
|
|
692
|
-
:type filter_blender: bool | None
|
|
693
661
|
:param filter_backup: Filter .blend files
|
|
694
|
-
:type filter_backup: bool | None
|
|
695
662
|
:param filter_image: Filter image files
|
|
696
|
-
:type filter_image: bool | None
|
|
697
663
|
:param filter_movie: Filter movie files
|
|
698
|
-
:type filter_movie: bool | None
|
|
699
664
|
:param filter_python: Filter Python files
|
|
700
|
-
:type filter_python: bool | None
|
|
701
665
|
:param filter_font: Filter font files
|
|
702
|
-
:type filter_font: bool | None
|
|
703
666
|
:param filter_sound: Filter sound files
|
|
704
|
-
:type filter_sound: bool | None
|
|
705
667
|
:param filter_text: Filter text files
|
|
706
|
-
:type filter_text: bool | None
|
|
707
668
|
:param filter_archive: Filter archive files
|
|
708
|
-
:type filter_archive: bool | None
|
|
709
669
|
:param filter_btx: Filter btx files
|
|
710
|
-
:type filter_btx: bool | None
|
|
711
670
|
:param filter_alembic: Filter Alembic files
|
|
712
|
-
:type filter_alembic: bool | None
|
|
713
671
|
:param filter_usd: Filter USD files
|
|
714
|
-
:type filter_usd: bool | None
|
|
715
672
|
:param filter_obj: Filter OBJ files
|
|
716
|
-
:type filter_obj: bool | None
|
|
717
673
|
:param filter_volume: Filter OpenVDB volume files
|
|
718
|
-
:type filter_volume: bool | None
|
|
719
674
|
:param filter_folder: Filter folders
|
|
720
|
-
:type filter_folder: bool | None
|
|
721
675
|
:param filter_blenlib: Filter Blender IDs
|
|
722
|
-
:type filter_blenlib: bool | None
|
|
723
676
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
724
|
-
:type filemode: int | None
|
|
725
677
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
726
|
-
:type relative_path: bool | None
|
|
727
678
|
:param show_multiview: Enable Multi-View
|
|
728
|
-
:type show_multiview: bool | None
|
|
729
679
|
:param use_multiview: Use Multi-View
|
|
730
|
-
:type use_multiview: bool | None
|
|
731
680
|
:param display_type: Display Type
|
|
732
681
|
|
|
733
682
|
DEFAULT
|
|
@@ -741,7 +690,6 @@ def image_strip_add(
|
|
|
741
690
|
|
|
742
691
|
THUMBNAIL
|
|
743
692
|
Thumbnails -- Display files as thumbnails.
|
|
744
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
745
693
|
:param sort_method: File sorting mode
|
|
746
694
|
|
|
747
695
|
DEFAULT
|
|
@@ -761,41 +709,28 @@ def image_strip_add(
|
|
|
761
709
|
|
|
762
710
|
ASSET_CATALOG
|
|
763
711
|
Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
764
|
-
:
|
|
765
|
-
:param
|
|
766
|
-
:
|
|
767
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
768
|
-
:type frame_start: int | None
|
|
769
|
-
:param frame_end: End Frame, End frame for the color strip
|
|
770
|
-
:type frame_end: int | None
|
|
712
|
+
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
713
|
+
:param frame_start: Start Frame, Start frame of the strip
|
|
714
|
+
:param length: Length, Length of the strip in frames, or the length of each strip if multiple are added
|
|
771
715
|
:param channel: Channel, Channel to place this strip into
|
|
772
|
-
:
|
|
773
|
-
:param
|
|
774
|
-
:type replace_sel: bool | None
|
|
775
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
776
|
-
:type overlap: bool | None
|
|
716
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips after add operation completes
|
|
717
|
+
:param overlap: Allow Overlap, Dont correct overlap on new strips
|
|
777
718
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
778
|
-
:type overlap_shuffle_override: bool | None
|
|
779
719
|
:param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
|
|
780
|
-
:
|
|
781
|
-
:param
|
|
782
|
-
|
|
783
|
-
FIT
|
|
784
|
-
Scale to Fit -- Scale image to fit within the canvas.
|
|
720
|
+
:param fit_method: Fit Method, Mode for fitting the image to the canvas
|
|
721
|
+
:param set_view_transform: Set View Transform, Set appropriate view transform based on media color space
|
|
722
|
+
:param image_import_type: Import As, Mode for importing selected images
|
|
785
723
|
|
|
786
|
-
|
|
787
|
-
|
|
724
|
+
DETECT
|
|
725
|
+
Auto Detect -- Add images as individual strips, unless their filenames match Blenders numbered sequence pattern, in which case they are grouped into a single image sequence.
|
|
788
726
|
|
|
789
|
-
|
|
790
|
-
|
|
727
|
+
SEQUENCE
|
|
728
|
+
Image Sequence -- Import all selected images as a single image sequence. The sequence of images does not have to match Blenders numbered sequence pattern, so placeholders cannot be inferred.
|
|
791
729
|
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
:
|
|
795
|
-
:param
|
|
796
|
-
:type set_view_transform: bool | None
|
|
797
|
-
:param use_placeholders: Use Placeholders, Use placeholders for missing frames of the strip
|
|
798
|
-
:type use_placeholders: bool | None
|
|
730
|
+
INDIVIDUAL
|
|
731
|
+
Individual Images -- Add each selected image as an individual strip.
|
|
732
|
+
:param use_sequence_detection: Detect Sequences, Automatically detect animated sequences in selected images (based on file names)
|
|
733
|
+
:param use_placeholders: Use Placeholders, Reserve placeholder frames for missing frames of the image sequence
|
|
799
734
|
"""
|
|
800
735
|
|
|
801
736
|
def images_separate(
|
|
@@ -807,18 +742,15 @@ def images_separate(
|
|
|
807
742
|
) -> None:
|
|
808
743
|
"""On image sequence strips, it returns a strip for each image
|
|
809
744
|
|
|
810
|
-
:type execution_context: int | str | None
|
|
811
|
-
:type undo: bool | None
|
|
812
745
|
:param length: Length, Length of each frame
|
|
813
|
-
:type length: int | None
|
|
814
746
|
"""
|
|
815
747
|
|
|
816
|
-
def lock(
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
"""
|
|
748
|
+
def lock(
|
|
749
|
+
execution_context: int | str | None = None,
|
|
750
|
+
undo: bool | None = None,
|
|
751
|
+
/,
|
|
752
|
+
) -> None:
|
|
753
|
+
"""Lock strips so they cannot be transformed"""
|
|
822
754
|
|
|
823
755
|
def mask_strip_add(
|
|
824
756
|
execution_context: int | str | None = None,
|
|
@@ -836,52 +768,36 @@ def mask_strip_add(
|
|
|
836
768
|
) -> None:
|
|
837
769
|
"""Add a mask strip to the sequencer
|
|
838
770
|
|
|
839
|
-
:
|
|
840
|
-
:
|
|
841
|
-
:param move_strips: Move Strips, Move strips after adding them to the timeline
|
|
842
|
-
:type move_strips: bool | None
|
|
843
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
844
|
-
:type frame_start: int | None
|
|
771
|
+
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
772
|
+
:param frame_start: Start Frame, Start frame of the strip
|
|
845
773
|
:param channel: Channel, Channel to place this strip into
|
|
846
|
-
:
|
|
847
|
-
:param
|
|
848
|
-
:type replace_sel: bool | None
|
|
849
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
850
|
-
:type overlap: bool | None
|
|
774
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips after add operation completes
|
|
775
|
+
:param overlap: Allow Overlap, Dont correct overlap on new strips
|
|
851
776
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
852
|
-
:type overlap_shuffle_override: bool | None
|
|
853
777
|
:param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
|
|
854
|
-
:type skip_locked_or_muted_channels: bool | None
|
|
855
778
|
:param mask: Mask
|
|
856
|
-
:type mask: str | None
|
|
857
779
|
"""
|
|
858
780
|
|
|
859
781
|
def meta_make(
|
|
860
|
-
execution_context: int | str | None = None,
|
|
782
|
+
execution_context: int | str | None = None,
|
|
783
|
+
undo: bool | None = None,
|
|
784
|
+
/,
|
|
861
785
|
) -> None:
|
|
862
|
-
"""Group selected strips into a meta-strip
|
|
863
|
-
|
|
864
|
-
:type execution_context: int | str | None
|
|
865
|
-
:type undo: bool | None
|
|
866
|
-
"""
|
|
786
|
+
"""Group selected strips into a meta-strip"""
|
|
867
787
|
|
|
868
788
|
def meta_separate(
|
|
869
|
-
execution_context: int | str | None = None,
|
|
789
|
+
execution_context: int | str | None = None,
|
|
790
|
+
undo: bool | None = None,
|
|
791
|
+
/,
|
|
870
792
|
) -> None:
|
|
871
|
-
"""Put the contents of a meta-strip back in the sequencer
|
|
872
|
-
|
|
873
|
-
:type execution_context: int | str | None
|
|
874
|
-
:type undo: bool | None
|
|
875
|
-
"""
|
|
793
|
+
"""Put the contents of a meta-strip back in the sequencer"""
|
|
876
794
|
|
|
877
795
|
def meta_toggle(
|
|
878
|
-
execution_context: int | str | None = None,
|
|
796
|
+
execution_context: int | str | None = None,
|
|
797
|
+
undo: bool | None = None,
|
|
798
|
+
/,
|
|
879
799
|
) -> None:
|
|
880
|
-
"""Toggle a meta-strip (to edit enclosed strips)
|
|
881
|
-
|
|
882
|
-
:type execution_context: int | str | None
|
|
883
|
-
:type undo: bool | None
|
|
884
|
-
"""
|
|
800
|
+
"""Toggle a meta-strip (to edit enclosed strips)"""
|
|
885
801
|
|
|
886
802
|
def movie_strip_add(
|
|
887
803
|
execution_context: int | str | None = None,
|
|
@@ -933,7 +849,7 @@ def movie_strip_add(
|
|
|
933
849
|
overlap: bool | None = False,
|
|
934
850
|
overlap_shuffle_override: bool | None = False,
|
|
935
851
|
skip_locked_or_muted_channels: bool | None = True,
|
|
936
|
-
fit_method:
|
|
852
|
+
fit_method: bpy.stub_internal.rna_enums.StripScaleMethodItems | None = "FIT",
|
|
937
853
|
set_view_transform: bool | None = True,
|
|
938
854
|
adjust_playback_rate: bool | None = True,
|
|
939
855
|
sound: bool | None = True,
|
|
@@ -941,56 +857,30 @@ def movie_strip_add(
|
|
|
941
857
|
) -> None:
|
|
942
858
|
"""Add a movie strip to the sequencer
|
|
943
859
|
|
|
944
|
-
:type execution_context: int | str | None
|
|
945
|
-
:type undo: bool | None
|
|
946
860
|
:param filepath: File Path, Path to file
|
|
947
|
-
:type filepath: str
|
|
948
861
|
:param directory: Directory, Directory of the file
|
|
949
|
-
:type directory: str
|
|
950
862
|
:param files: Files
|
|
951
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
952
863
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
953
|
-
:type check_existing: bool | None
|
|
954
864
|
:param filter_blender: Filter .blend files
|
|
955
|
-
:type filter_blender: bool | None
|
|
956
865
|
:param filter_backup: Filter .blend files
|
|
957
|
-
:type filter_backup: bool | None
|
|
958
866
|
:param filter_image: Filter image files
|
|
959
|
-
:type filter_image: bool | None
|
|
960
867
|
:param filter_movie: Filter movie files
|
|
961
|
-
:type filter_movie: bool | None
|
|
962
868
|
:param filter_python: Filter Python files
|
|
963
|
-
:type filter_python: bool | None
|
|
964
869
|
:param filter_font: Filter font files
|
|
965
|
-
:type filter_font: bool | None
|
|
966
870
|
:param filter_sound: Filter sound files
|
|
967
|
-
:type filter_sound: bool | None
|
|
968
871
|
:param filter_text: Filter text files
|
|
969
|
-
:type filter_text: bool | None
|
|
970
872
|
:param filter_archive: Filter archive files
|
|
971
|
-
:type filter_archive: bool | None
|
|
972
873
|
:param filter_btx: Filter btx files
|
|
973
|
-
:type filter_btx: bool | None
|
|
974
874
|
:param filter_alembic: Filter Alembic files
|
|
975
|
-
:type filter_alembic: bool | None
|
|
976
875
|
:param filter_usd: Filter USD files
|
|
977
|
-
:type filter_usd: bool | None
|
|
978
876
|
:param filter_obj: Filter OBJ files
|
|
979
|
-
:type filter_obj: bool | None
|
|
980
877
|
:param filter_volume: Filter OpenVDB volume files
|
|
981
|
-
:type filter_volume: bool | None
|
|
982
878
|
:param filter_folder: Filter folders
|
|
983
|
-
:type filter_folder: bool | None
|
|
984
879
|
:param filter_blenlib: Filter Blender IDs
|
|
985
|
-
:type filter_blenlib: bool | None
|
|
986
880
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
987
|
-
:type filemode: int | None
|
|
988
881
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
989
|
-
:type relative_path: bool | None
|
|
990
882
|
:param show_multiview: Enable Multi-View
|
|
991
|
-
:type show_multiview: bool | None
|
|
992
883
|
:param use_multiview: Use Multi-View
|
|
993
|
-
:type use_multiview: bool | None
|
|
994
884
|
:param display_type: Display Type
|
|
995
885
|
|
|
996
886
|
DEFAULT
|
|
@@ -1004,7 +894,6 @@ def movie_strip_add(
|
|
|
1004
894
|
|
|
1005
895
|
THUMBNAIL
|
|
1006
896
|
Thumbnails -- Display files as thumbnails.
|
|
1007
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
1008
897
|
:param sort_method: File sorting mode
|
|
1009
898
|
|
|
1010
899
|
DEFAULT
|
|
@@ -1024,43 +913,18 @@ def movie_strip_add(
|
|
|
1024
913
|
|
|
1025
914
|
ASSET_CATALOG
|
|
1026
915
|
Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
1027
|
-
:
|
|
1028
|
-
:param
|
|
1029
|
-
:type move_strips: bool | None
|
|
1030
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1031
|
-
:type frame_start: int | None
|
|
916
|
+
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
917
|
+
:param frame_start: Start Frame, Start frame of the strip
|
|
1032
918
|
:param channel: Channel, Channel to place this strip into
|
|
1033
|
-
:
|
|
1034
|
-
:param
|
|
1035
|
-
:type replace_sel: bool | None
|
|
1036
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1037
|
-
:type overlap: bool | None
|
|
919
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips after add operation completes
|
|
920
|
+
:param overlap: Allow Overlap, Dont correct overlap on new strips
|
|
1038
921
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1039
|
-
:type overlap_shuffle_override: bool | None
|
|
1040
922
|
:param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
|
|
1041
|
-
:
|
|
1042
|
-
:param fit_method: Fit Method, Scale fit method
|
|
1043
|
-
|
|
1044
|
-
FIT
|
|
1045
|
-
Scale to Fit -- Scale image to fit within the canvas.
|
|
1046
|
-
|
|
1047
|
-
FILL
|
|
1048
|
-
Scale to Fill -- Scale image to completely fill the canvas.
|
|
1049
|
-
|
|
1050
|
-
STRETCH
|
|
1051
|
-
Stretch to Fill -- Stretch image to fill the canvas.
|
|
1052
|
-
|
|
1053
|
-
ORIGINAL
|
|
1054
|
-
Use Original Size -- Keep image at its original size.
|
|
1055
|
-
:type fit_method: typing.Literal['FIT','FILL','STRETCH','ORIGINAL'] | None
|
|
923
|
+
:param fit_method: Fit Method, Mode for fitting the image to the canvas
|
|
1056
924
|
:param set_view_transform: Set View Transform, Set appropriate view transform based on media color space
|
|
1057
|
-
:type set_view_transform: bool | None
|
|
1058
925
|
:param adjust_playback_rate: Adjust Playback Rate, Play at normal speed regardless of scene FPS
|
|
1059
|
-
:type adjust_playback_rate: bool | None
|
|
1060
926
|
:param sound: Sound, Load sound with the movie
|
|
1061
|
-
:type sound: bool | None
|
|
1062
927
|
:param use_framerate: Set Scene Frame Rate, Set frame rate of the current scene to the frame rate of the movie
|
|
1063
|
-
:type use_framerate: bool | None
|
|
1064
928
|
"""
|
|
1065
929
|
|
|
1066
930
|
def movieclip_strip_add(
|
|
@@ -1079,24 +943,14 @@ def movieclip_strip_add(
|
|
|
1079
943
|
) -> None:
|
|
1080
944
|
"""Add a movieclip strip to the sequencer
|
|
1081
945
|
|
|
1082
|
-
:
|
|
1083
|
-
:
|
|
1084
|
-
:param move_strips: Move Strips, Move strips after adding them to the timeline
|
|
1085
|
-
:type move_strips: bool | None
|
|
1086
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1087
|
-
:type frame_start: int | None
|
|
946
|
+
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
947
|
+
:param frame_start: Start Frame, Start frame of the strip
|
|
1088
948
|
:param channel: Channel, Channel to place this strip into
|
|
1089
|
-
:
|
|
1090
|
-
:param
|
|
1091
|
-
:type replace_sel: bool | None
|
|
1092
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1093
|
-
:type overlap: bool | None
|
|
949
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips after add operation completes
|
|
950
|
+
:param overlap: Allow Overlap, Dont correct overlap on new strips
|
|
1094
951
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1095
|
-
:type overlap_shuffle_override: bool | None
|
|
1096
952
|
:param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
|
|
1097
|
-
:type skip_locked_or_muted_channels: bool | None
|
|
1098
953
|
:param clip: Clip
|
|
1099
|
-
:type clip: str | None
|
|
1100
954
|
"""
|
|
1101
955
|
|
|
1102
956
|
def mute(
|
|
@@ -1108,20 +962,15 @@ def mute(
|
|
|
1108
962
|
) -> None:
|
|
1109
963
|
"""Mute (un)selected strips
|
|
1110
964
|
|
|
1111
|
-
:type execution_context: int | str | None
|
|
1112
|
-
:type undo: bool | None
|
|
1113
965
|
:param unselected: Unselected, Mute unselected rather than selected strips
|
|
1114
|
-
:type unselected: bool | None
|
|
1115
966
|
"""
|
|
1116
967
|
|
|
1117
968
|
def offset_clear(
|
|
1118
|
-
execution_context: int | str | None = None,
|
|
969
|
+
execution_context: int | str | None = None,
|
|
970
|
+
undo: bool | None = None,
|
|
971
|
+
/,
|
|
1119
972
|
) -> None:
|
|
1120
|
-
"""Clear strip offsets from the start and end
|
|
1121
|
-
|
|
1122
|
-
:type execution_context: int | str | None
|
|
1123
|
-
:type undo: bool | None
|
|
1124
|
-
"""
|
|
973
|
+
"""Clear strip in/out offsets from the start and end of content"""
|
|
1125
974
|
|
|
1126
975
|
def paste(
|
|
1127
976
|
execution_context: int | str | None = None,
|
|
@@ -1129,13 +978,14 @@ def paste(
|
|
|
1129
978
|
/,
|
|
1130
979
|
*,
|
|
1131
980
|
keep_offset: bool | None = False,
|
|
981
|
+
x: int | None = 0,
|
|
982
|
+
y: int | None = 0,
|
|
1132
983
|
) -> None:
|
|
1133
984
|
"""Paste strips from the internal clipboard
|
|
1134
985
|
|
|
1135
|
-
:type execution_context: int | str | None
|
|
1136
|
-
:type undo: bool | None
|
|
1137
986
|
:param keep_offset: Keep Offset, Keep strip offset relative to the current frame when pasting
|
|
1138
|
-
:
|
|
987
|
+
:param x: X
|
|
988
|
+
:param y: Y
|
|
1139
989
|
"""
|
|
1140
990
|
|
|
1141
991
|
def preview_duplicate_move(
|
|
@@ -1148,40 +998,44 @@ def preview_duplicate_move(
|
|
|
1148
998
|
) -> None:
|
|
1149
999
|
"""Duplicate selected strips and move them
|
|
1150
1000
|
|
|
1151
|
-
:type execution_context: int | str | None
|
|
1152
|
-
:type undo: bool | None
|
|
1153
1001
|
:param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
|
|
1154
|
-
:type SEQUENCER_OT_duplicate: duplicate | None
|
|
1155
1002
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1156
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
1157
1003
|
"""
|
|
1158
1004
|
|
|
1159
|
-
def
|
|
1160
|
-
execution_context: int | str | None = None,
|
|
1005
|
+
def preview_duplicate_move_linked(
|
|
1006
|
+
execution_context: int | str | None = None,
|
|
1007
|
+
undo: bool | None = None,
|
|
1008
|
+
/,
|
|
1009
|
+
*,
|
|
1010
|
+
SEQUENCER_OT_duplicate: duplicate | None = None,
|
|
1011
|
+
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1161
1012
|
) -> None:
|
|
1162
|
-
"""
|
|
1013
|
+
"""Duplicate selected strips, but not their data, and move them
|
|
1163
1014
|
|
|
1164
|
-
:
|
|
1165
|
-
:
|
|
1015
|
+
:param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
|
|
1016
|
+
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1166
1017
|
"""
|
|
1167
1018
|
|
|
1168
|
-
def
|
|
1169
|
-
execution_context: int | str | None = None,
|
|
1019
|
+
def reassign_inputs(
|
|
1020
|
+
execution_context: int | str | None = None,
|
|
1021
|
+
undo: bool | None = None,
|
|
1022
|
+
/,
|
|
1170
1023
|
) -> None:
|
|
1171
|
-
"""
|
|
1024
|
+
"""Reassign the inputs for the effect strip"""
|
|
1172
1025
|
|
|
1173
|
-
|
|
1174
|
-
:
|
|
1175
|
-
|
|
1026
|
+
def rebuild_proxy(
|
|
1027
|
+
execution_context: int | str | None = None,
|
|
1028
|
+
undo: bool | None = None,
|
|
1029
|
+
/,
|
|
1030
|
+
) -> None:
|
|
1031
|
+
"""Rebuild all selected proxies and timecode indices"""
|
|
1176
1032
|
|
|
1177
1033
|
def refresh_all(
|
|
1178
|
-
execution_context: int | str | None = None,
|
|
1034
|
+
execution_context: int | str | None = None,
|
|
1035
|
+
undo: bool | None = None,
|
|
1036
|
+
/,
|
|
1179
1037
|
) -> None:
|
|
1180
|
-
"""Refresh the sequencer editor
|
|
1181
|
-
|
|
1182
|
-
:type execution_context: int | str | None
|
|
1183
|
-
:type undo: bool | None
|
|
1184
|
-
"""
|
|
1038
|
+
"""Refresh the sequencer editor"""
|
|
1185
1039
|
|
|
1186
1040
|
def reload(
|
|
1187
1041
|
execution_context: int | str | None = None,
|
|
@@ -1192,29 +1046,22 @@ def reload(
|
|
|
1192
1046
|
) -> None:
|
|
1193
1047
|
"""Reload strips in the sequencer
|
|
1194
1048
|
|
|
1195
|
-
:type execution_context: int | str | None
|
|
1196
|
-
:type undo: bool | None
|
|
1197
1049
|
:param adjust_length: Adjust Length, Adjust length of strips to their data length
|
|
1198
|
-
:type adjust_length: bool | None
|
|
1199
1050
|
"""
|
|
1200
1051
|
|
|
1201
1052
|
def rename_channel(
|
|
1202
|
-
execution_context: int | str | None = None,
|
|
1053
|
+
execution_context: int | str | None = None,
|
|
1054
|
+
undo: bool | None = None,
|
|
1055
|
+
/,
|
|
1203
1056
|
) -> None:
|
|
1204
|
-
"""Undocumented, consider contributing.
|
|
1205
|
-
|
|
1206
|
-
:type execution_context: int | str | None
|
|
1207
|
-
:type undo: bool | None
|
|
1208
|
-
"""
|
|
1057
|
+
"""Undocumented, consider contributing."""
|
|
1209
1058
|
|
|
1210
1059
|
def rendersize(
|
|
1211
|
-
execution_context: int | str | None = None,
|
|
1060
|
+
execution_context: int | str | None = None,
|
|
1061
|
+
undo: bool | None = None,
|
|
1062
|
+
/,
|
|
1212
1063
|
) -> None:
|
|
1213
|
-
"""Set render size and aspect from active strip
|
|
1214
|
-
|
|
1215
|
-
:type execution_context: int | str | None
|
|
1216
|
-
:type undo: bool | None
|
|
1217
|
-
"""
|
|
1064
|
+
"""Set render size and aspect from active strip"""
|
|
1218
1065
|
|
|
1219
1066
|
def retiming_add_freeze_frame_slide(
|
|
1220
1067
|
execution_context: int | str | None = None,
|
|
@@ -1226,12 +1073,8 @@ def retiming_add_freeze_frame_slide(
|
|
|
1226
1073
|
) -> None:
|
|
1227
1074
|
"""Add freeze frame and move it
|
|
1228
1075
|
|
|
1229
|
-
:type execution_context: int | str | None
|
|
1230
|
-
:type undo: bool | None
|
|
1231
1076
|
:param SEQUENCER_OT_retiming_freeze_frame_add: Add Freeze Frame, Add freeze frame
|
|
1232
|
-
:type SEQUENCER_OT_retiming_freeze_frame_add: retiming_freeze_frame_add | None
|
|
1233
1077
|
:param TRANSFORM_OT_seq_slide: Sequence Slide, Slide a sequence strip in time
|
|
1234
|
-
:type TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide | None
|
|
1235
1078
|
"""
|
|
1236
1079
|
|
|
1237
1080
|
def retiming_add_transition_slide(
|
|
@@ -1244,12 +1087,8 @@ def retiming_add_transition_slide(
|
|
|
1244
1087
|
) -> None:
|
|
1245
1088
|
"""Add smooth transition between 2 retimed segments and change its duration
|
|
1246
1089
|
|
|
1247
|
-
:type execution_context: int | str | None
|
|
1248
|
-
:type undo: bool | None
|
|
1249
1090
|
:param SEQUENCER_OT_retiming_transition_add: Add Speed Transition, Add smooth transition between 2 retimed segments
|
|
1250
|
-
:type SEQUENCER_OT_retiming_transition_add: retiming_transition_add | None
|
|
1251
1091
|
:param TRANSFORM_OT_seq_slide: Sequence Slide, Slide a sequence strip in time
|
|
1252
|
-
:type TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide | None
|
|
1253
1092
|
"""
|
|
1254
1093
|
|
|
1255
1094
|
def retiming_freeze_frame_add(
|
|
@@ -1261,10 +1100,7 @@ def retiming_freeze_frame_add(
|
|
|
1261
1100
|
) -> None:
|
|
1262
1101
|
"""Add freeze frame
|
|
1263
1102
|
|
|
1264
|
-
:type execution_context: int | str | None
|
|
1265
|
-
:type undo: bool | None
|
|
1266
1103
|
:param duration: Duration, Duration of freeze frame segment
|
|
1267
|
-
:type duration: int | None
|
|
1268
1104
|
"""
|
|
1269
1105
|
|
|
1270
1106
|
def retiming_key_add(
|
|
@@ -1276,29 +1112,22 @@ def retiming_key_add(
|
|
|
1276
1112
|
) -> None:
|
|
1277
1113
|
"""Add retiming Key
|
|
1278
1114
|
|
|
1279
|
-
:type execution_context: int | str | None
|
|
1280
|
-
:type undo: bool | None
|
|
1281
1115
|
:param timeline_frame: Timeline Frame, Frame where key will be added
|
|
1282
|
-
:type timeline_frame: int | None
|
|
1283
1116
|
"""
|
|
1284
1117
|
|
|
1285
1118
|
def retiming_key_delete(
|
|
1286
|
-
execution_context: int | str | None = None,
|
|
1119
|
+
execution_context: int | str | None = None,
|
|
1120
|
+
undo: bool | None = None,
|
|
1121
|
+
/,
|
|
1287
1122
|
) -> None:
|
|
1288
|
-
"""Delete selected retiming keys from the sequencer
|
|
1289
|
-
|
|
1290
|
-
:type execution_context: int | str | None
|
|
1291
|
-
:type undo: bool | None
|
|
1292
|
-
"""
|
|
1123
|
+
"""Delete selected retiming keys from the sequencer"""
|
|
1293
1124
|
|
|
1294
1125
|
def retiming_reset(
|
|
1295
|
-
execution_context: int | str | None = None,
|
|
1126
|
+
execution_context: int | str | None = None,
|
|
1127
|
+
undo: bool | None = None,
|
|
1128
|
+
/,
|
|
1296
1129
|
) -> None:
|
|
1297
|
-
"""Reset strip retiming
|
|
1298
|
-
|
|
1299
|
-
:type execution_context: int | str | None
|
|
1300
|
-
:type undo: bool | None
|
|
1301
|
-
"""
|
|
1130
|
+
"""Reset strip retiming"""
|
|
1302
1131
|
|
|
1303
1132
|
def retiming_segment_speed_set(
|
|
1304
1133
|
execution_context: int | str | None = None,
|
|
@@ -1310,22 +1139,16 @@ def retiming_segment_speed_set(
|
|
|
1310
1139
|
) -> None:
|
|
1311
1140
|
"""Set speed of retimed segment
|
|
1312
1141
|
|
|
1313
|
-
:type execution_context: int | str | None
|
|
1314
|
-
:type undo: bool | None
|
|
1315
1142
|
:param speed: Speed, New speed of retimed segment
|
|
1316
|
-
:type speed: float | None
|
|
1317
1143
|
:param keep_retiming: Preserve Current Retiming, Keep speed of other segments unchanged, change strip length instead
|
|
1318
|
-
:type keep_retiming: bool | None
|
|
1319
1144
|
"""
|
|
1320
1145
|
|
|
1321
1146
|
def retiming_show(
|
|
1322
|
-
execution_context: int | str | None = None,
|
|
1147
|
+
execution_context: int | str | None = None,
|
|
1148
|
+
undo: bool | None = None,
|
|
1149
|
+
/,
|
|
1323
1150
|
) -> None:
|
|
1324
|
-
"""Show retiming keys in selected strips
|
|
1325
|
-
|
|
1326
|
-
:type execution_context: int | str | None
|
|
1327
|
-
:type undo: bool | None
|
|
1328
|
-
"""
|
|
1151
|
+
"""Show retiming keys in selected strips"""
|
|
1329
1152
|
|
|
1330
1153
|
def retiming_transition_add(
|
|
1331
1154
|
execution_context: int | str | None = None,
|
|
@@ -1336,10 +1159,7 @@ def retiming_transition_add(
|
|
|
1336
1159
|
) -> None:
|
|
1337
1160
|
"""Add smooth transition between 2 retimed segments
|
|
1338
1161
|
|
|
1339
|
-
:type execution_context: int | str | None
|
|
1340
|
-
:type undo: bool | None
|
|
1341
1162
|
:param duration: Duration, Duration of freeze frame segment
|
|
1342
|
-
:type duration: int | None
|
|
1343
1163
|
"""
|
|
1344
1164
|
|
|
1345
1165
|
def sample(
|
|
@@ -1351,20 +1171,15 @@ def sample(
|
|
|
1351
1171
|
) -> None:
|
|
1352
1172
|
"""Use mouse to sample color in current frame
|
|
1353
1173
|
|
|
1354
|
-
:type execution_context: int | str | None
|
|
1355
|
-
:type undo: bool | None
|
|
1356
1174
|
:param size: Sample Size
|
|
1357
|
-
:type size: int | None
|
|
1358
1175
|
"""
|
|
1359
1176
|
|
|
1360
1177
|
def scene_frame_range_update(
|
|
1361
|
-
execution_context: int | str | None = None,
|
|
1178
|
+
execution_context: int | str | None = None,
|
|
1179
|
+
undo: bool | None = None,
|
|
1180
|
+
/,
|
|
1362
1181
|
) -> None:
|
|
1363
|
-
"""Update frame range of scene strip
|
|
1364
|
-
|
|
1365
|
-
:type execution_context: int | str | None
|
|
1366
|
-
:type undo: bool | None
|
|
1367
|
-
"""
|
|
1182
|
+
"""Update frame range of scene strip"""
|
|
1368
1183
|
|
|
1369
1184
|
def scene_strip_add(
|
|
1370
1185
|
execution_context: int | str | None = None,
|
|
@@ -1380,26 +1195,16 @@ def scene_strip_add(
|
|
|
1380
1195
|
skip_locked_or_muted_channels: bool | None = True,
|
|
1381
1196
|
scene: str | None = "",
|
|
1382
1197
|
) -> None:
|
|
1383
|
-
"""Add a strip
|
|
1198
|
+
"""Add a strip re-using this scene as the source
|
|
1384
1199
|
|
|
1385
|
-
:
|
|
1386
|
-
:
|
|
1387
|
-
:param move_strips: Move Strips, Move strips after adding them to the timeline
|
|
1388
|
-
:type move_strips: bool | None
|
|
1389
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1390
|
-
:type frame_start: int | None
|
|
1200
|
+
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
1201
|
+
:param frame_start: Start Frame, Start frame of the strip
|
|
1391
1202
|
:param channel: Channel, Channel to place this strip into
|
|
1392
|
-
:
|
|
1393
|
-
:param
|
|
1394
|
-
:type replace_sel: bool | None
|
|
1395
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1396
|
-
:type overlap: bool | None
|
|
1203
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips after add operation completes
|
|
1204
|
+
:param overlap: Allow Overlap, Dont correct overlap on new strips
|
|
1397
1205
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1398
|
-
:type overlap_shuffle_override: bool | None
|
|
1399
1206
|
:param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
|
|
1400
|
-
:type skip_locked_or_muted_channels: bool | None
|
|
1401
1207
|
:param scene: Scene
|
|
1402
|
-
:type scene: str | None
|
|
1403
1208
|
"""
|
|
1404
1209
|
|
|
1405
1210
|
def scene_strip_add_new(
|
|
@@ -1416,24 +1221,15 @@ def scene_strip_add_new(
|
|
|
1416
1221
|
skip_locked_or_muted_channels: bool | None = True,
|
|
1417
1222
|
type: typing.Literal["NEW", "EMPTY", "LINK_COPY", "FULL_COPY"] | None = "NEW",
|
|
1418
1223
|
) -> None:
|
|
1419
|
-
"""
|
|
1224
|
+
"""Add a strip using a new scene as the source
|
|
1420
1225
|
|
|
1421
|
-
:
|
|
1422
|
-
:
|
|
1423
|
-
:param move_strips: Move Strips, Move strips after adding them to the timeline
|
|
1424
|
-
:type move_strips: bool | None
|
|
1425
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1426
|
-
:type frame_start: int | None
|
|
1226
|
+
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
1227
|
+
:param frame_start: Start Frame, Start frame of the strip
|
|
1427
1228
|
:param channel: Channel, Channel to place this strip into
|
|
1428
|
-
:
|
|
1429
|
-
:param
|
|
1430
|
-
:type replace_sel: bool | None
|
|
1431
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1432
|
-
:type overlap: bool | None
|
|
1229
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips after add operation completes
|
|
1230
|
+
:param overlap: Allow Overlap, Dont correct overlap on new strips
|
|
1433
1231
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1434
|
-
:type overlap_shuffle_override: bool | None
|
|
1435
1232
|
:param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
|
|
1436
|
-
:type skip_locked_or_muted_channels: bool | None
|
|
1437
1233
|
:param type: Type
|
|
1438
1234
|
|
|
1439
1235
|
NEW
|
|
@@ -1447,7 +1243,6 @@ def scene_strip_add_new(
|
|
|
1447
1243
|
|
|
1448
1244
|
FULL_COPY
|
|
1449
1245
|
Full Copy -- Add a Strip and make a full copy of the current scene.
|
|
1450
|
-
:type type: typing.Literal['NEW','EMPTY','LINK_COPY','FULL_COPY'] | None
|
|
1451
1246
|
"""
|
|
1452
1247
|
|
|
1453
1248
|
def select(
|
|
@@ -1456,6 +1251,7 @@ def select(
|
|
|
1456
1251
|
/,
|
|
1457
1252
|
*,
|
|
1458
1253
|
wait_to_deselect_others: bool | None = False,
|
|
1254
|
+
use_select_on_click: bool | None = False,
|
|
1459
1255
|
mouse_x: int | None = 0,
|
|
1460
1256
|
mouse_y: int | None = 0,
|
|
1461
1257
|
extend: bool | None = False,
|
|
@@ -1471,34 +1267,20 @@ def select(
|
|
|
1471
1267
|
) -> None:
|
|
1472
1268
|
"""Select a strip (last selected becomes the "active strip")
|
|
1473
1269
|
|
|
1474
|
-
:type execution_context: int | str | None
|
|
1475
|
-
:type undo: bool | None
|
|
1476
1270
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
1477
|
-
:
|
|
1271
|
+
:param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
|
|
1478
1272
|
:param mouse_x: Mouse X
|
|
1479
|
-
:type mouse_x: int | None
|
|
1480
1273
|
:param mouse_y: Mouse Y
|
|
1481
|
-
:type mouse_y: int | None
|
|
1482
1274
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1483
|
-
:type extend: bool | None
|
|
1484
1275
|
:param deselect: Deselect, Remove from selection
|
|
1485
|
-
:type deselect: bool | None
|
|
1486
1276
|
:param toggle: Toggle Selection, Toggle the selection
|
|
1487
|
-
:type toggle: bool | None
|
|
1488
1277
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
1489
|
-
:type deselect_all: bool | None
|
|
1490
1278
|
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
1491
|
-
:type select_passthrough: bool | None
|
|
1492
1279
|
:param center: Center, Use the object center when selecting, in edit mode used to extend object selection
|
|
1493
|
-
:type center: bool | None
|
|
1494
1280
|
:param linked_handle: Linked Handle, Select handles next to the active strip
|
|
1495
|
-
:type linked_handle: bool | None
|
|
1496
1281
|
:param linked_time: Linked Time, Select other strips or handles at the same time, or all retiming keys after the current in retiming mode
|
|
1497
|
-
:type linked_time: bool | None
|
|
1498
1282
|
:param side_of_frame: Side of Frame, Select all strips on same side of the current frame as the mouse cursor
|
|
1499
|
-
:type side_of_frame: bool | None
|
|
1500
1283
|
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
|
1501
|
-
:type ignore_connections: bool | None
|
|
1502
1284
|
"""
|
|
1503
1285
|
|
|
1504
1286
|
def select_all(
|
|
@@ -1510,8 +1292,6 @@ def select_all(
|
|
|
1510
1292
|
) -> None:
|
|
1511
1293
|
"""Select or deselect all strips
|
|
1512
1294
|
|
|
1513
|
-
:type execution_context: int | str | None
|
|
1514
|
-
:type undo: bool | None
|
|
1515
1295
|
:param action: Action, Selection action to execute
|
|
1516
1296
|
|
|
1517
1297
|
TOGGLE
|
|
@@ -1525,7 +1305,6 @@ def select_all(
|
|
|
1525
1305
|
|
|
1526
1306
|
INVERT
|
|
1527
1307
|
Invert -- Invert selection of all elements.
|
|
1528
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
1529
1308
|
"""
|
|
1530
1309
|
|
|
1531
1310
|
def select_box(
|
|
@@ -1545,18 +1324,11 @@ def select_box(
|
|
|
1545
1324
|
) -> None:
|
|
1546
1325
|
"""Select strips using box selection
|
|
1547
1326
|
|
|
1548
|
-
:type execution_context: int | str | None
|
|
1549
|
-
:type undo: bool | None
|
|
1550
1327
|
:param xmin: X Min
|
|
1551
|
-
:type xmin: int | None
|
|
1552
1328
|
:param xmax: X Max
|
|
1553
|
-
:type xmax: int | None
|
|
1554
1329
|
:param ymin: Y Min
|
|
1555
|
-
:type ymin: int | None
|
|
1556
1330
|
:param ymax: Y Max
|
|
1557
|
-
:type ymax: int | None
|
|
1558
1331
|
:param wait_for_input: Wait for Input
|
|
1559
|
-
:type wait_for_input: bool | None
|
|
1560
1332
|
:param mode: Mode
|
|
1561
1333
|
|
|
1562
1334
|
SET
|
|
@@ -1567,13 +1339,40 @@ def select_box(
|
|
|
1567
1339
|
|
|
1568
1340
|
SUB
|
|
1569
1341
|
Subtract -- Subtract existing selection.
|
|
1570
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1571
1342
|
:param tweak: Tweak, Make box select pass through to sequence slide when the cursor is hovering on a strip
|
|
1572
|
-
:type tweak: bool | None
|
|
1573
1343
|
:param include_handles: Select Handles, Select the strips and their handles
|
|
1574
|
-
:type include_handles: bool | None
|
|
1575
1344
|
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
|
1576
|
-
|
|
1345
|
+
"""
|
|
1346
|
+
|
|
1347
|
+
def select_circle(
|
|
1348
|
+
execution_context: int | str | None = None,
|
|
1349
|
+
undo: bool | None = None,
|
|
1350
|
+
/,
|
|
1351
|
+
*,
|
|
1352
|
+
x: int | None = 0,
|
|
1353
|
+
y: int | None = 0,
|
|
1354
|
+
radius: int | None = 25,
|
|
1355
|
+
wait_for_input: bool | None = True,
|
|
1356
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
1357
|
+
ignore_connections: bool | None = False,
|
|
1358
|
+
) -> None:
|
|
1359
|
+
"""Select strips using circle selection
|
|
1360
|
+
|
|
1361
|
+
:param x: X
|
|
1362
|
+
:param y: Y
|
|
1363
|
+
:param radius: Radius
|
|
1364
|
+
:param wait_for_input: Wait for Input
|
|
1365
|
+
:param mode: Mode
|
|
1366
|
+
|
|
1367
|
+
SET
|
|
1368
|
+
Set -- Set a new selection.
|
|
1369
|
+
|
|
1370
|
+
ADD
|
|
1371
|
+
Extend -- Extend existing selection.
|
|
1372
|
+
|
|
1373
|
+
SUB
|
|
1374
|
+
Subtract -- Subtract existing selection.
|
|
1375
|
+
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
|
1577
1376
|
"""
|
|
1578
1377
|
|
|
1579
1378
|
def select_grouped(
|
|
@@ -1590,8 +1389,6 @@ def select_grouped(
|
|
|
1590
1389
|
) -> None:
|
|
1591
1390
|
"""Select all strips grouped by various properties
|
|
1592
1391
|
|
|
1593
|
-
:type execution_context: int | str | None
|
|
1594
|
-
:type undo: bool | None
|
|
1595
1392
|
:param type: Type
|
|
1596
1393
|
|
|
1597
1394
|
TYPE
|
|
@@ -1614,11 +1411,8 @@ def select_grouped(
|
|
|
1614
1411
|
|
|
1615
1412
|
OVERLAP
|
|
1616
1413
|
Overlap -- Overlapping time.
|
|
1617
|
-
:type type: typing.Literal['TYPE','TYPE_BASIC','TYPE_EFFECT','DATA','EFFECT','EFFECT_LINK','OVERLAP'] | None
|
|
1618
1414
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1619
|
-
:type extend: bool | None
|
|
1620
1415
|
:param use_active_channel: Same Channel, Only consider strips on the same channel as the active one
|
|
1621
|
-
:type use_active_channel: bool | None
|
|
1622
1416
|
"""
|
|
1623
1417
|
|
|
1624
1418
|
def select_handle(
|
|
@@ -1627,22 +1421,18 @@ def select_handle(
|
|
|
1627
1421
|
/,
|
|
1628
1422
|
*,
|
|
1629
1423
|
wait_to_deselect_others: bool | None = False,
|
|
1424
|
+
use_select_on_click: bool | None = False,
|
|
1630
1425
|
mouse_x: int | None = 0,
|
|
1631
1426
|
mouse_y: int | None = 0,
|
|
1632
1427
|
ignore_connections: bool | None = False,
|
|
1633
1428
|
) -> None:
|
|
1634
1429
|
"""Select strip handle
|
|
1635
1430
|
|
|
1636
|
-
:type execution_context: int | str | None
|
|
1637
|
-
:type undo: bool | None
|
|
1638
1431
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
1639
|
-
:
|
|
1432
|
+
:param use_select_on_click: Act on Click, Instead of selecting on mouse press, wait to see if theres drag event. Otherwise select on mouse release
|
|
1640
1433
|
:param mouse_x: Mouse X
|
|
1641
|
-
:type mouse_x: int | None
|
|
1642
1434
|
:param mouse_y: Mouse Y
|
|
1643
|
-
:type mouse_y: int | None
|
|
1644
1435
|
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
|
1645
|
-
:type ignore_connections: bool | None
|
|
1646
1436
|
"""
|
|
1647
1437
|
|
|
1648
1438
|
def select_handles(
|
|
@@ -1657,29 +1447,51 @@ def select_handles(
|
|
|
1657
1447
|
) -> None:
|
|
1658
1448
|
"""Select gizmo handles on the sides of the selected strip
|
|
1659
1449
|
|
|
1660
|
-
:type execution_context: int | str | None
|
|
1661
|
-
:type undo: bool | None
|
|
1662
1450
|
:param side: Side, The side of the handle that is selected
|
|
1663
|
-
:type side: typing.Literal['LEFT','RIGHT','BOTH','LEFT_NEIGHBOR','RIGHT_NEIGHBOR','BOTH_NEIGHBORS'] | None
|
|
1664
1451
|
"""
|
|
1665
1452
|
|
|
1666
|
-
def
|
|
1667
|
-
execution_context: int | str | None = None,
|
|
1453
|
+
def select_lasso(
|
|
1454
|
+
execution_context: int | str | None = None,
|
|
1455
|
+
undo: bool | None = None,
|
|
1456
|
+
/,
|
|
1457
|
+
*,
|
|
1458
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1459
|
+
use_smooth_stroke: bool | None = False,
|
|
1460
|
+
smooth_stroke_factor: float | None = 0.75,
|
|
1461
|
+
smooth_stroke_radius: int | None = 35,
|
|
1462
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
1668
1463
|
) -> None:
|
|
1669
|
-
"""
|
|
1464
|
+
"""Select strips using lasso selection
|
|
1670
1465
|
|
|
1671
|
-
|
|
1672
|
-
|
|
1466
|
+
:param path: Path
|
|
1467
|
+
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
1468
|
+
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
1469
|
+
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
1470
|
+
:param mode: Mode
|
|
1471
|
+
|
|
1472
|
+
SET
|
|
1473
|
+
Set -- Set a new selection.
|
|
1474
|
+
|
|
1475
|
+
ADD
|
|
1476
|
+
Extend -- Extend existing selection.
|
|
1477
|
+
|
|
1478
|
+
SUB
|
|
1479
|
+
Subtract -- Subtract existing selection.
|
|
1673
1480
|
"""
|
|
1674
1481
|
|
|
1675
|
-
def
|
|
1676
|
-
execution_context: int | str | None = None,
|
|
1482
|
+
def select_less(
|
|
1483
|
+
execution_context: int | str | None = None,
|
|
1484
|
+
undo: bool | None = None,
|
|
1485
|
+
/,
|
|
1677
1486
|
) -> None:
|
|
1678
|
-
"""
|
|
1487
|
+
"""Shrink the current selection of adjacent selected strips"""
|
|
1679
1488
|
|
|
1680
|
-
|
|
1681
|
-
:
|
|
1682
|
-
|
|
1489
|
+
def select_linked(
|
|
1490
|
+
execution_context: int | str | None = None,
|
|
1491
|
+
undo: bool | None = None,
|
|
1492
|
+
/,
|
|
1493
|
+
) -> None:
|
|
1494
|
+
"""Select all strips adjacent to the current selection"""
|
|
1683
1495
|
|
|
1684
1496
|
def select_linked_pick(
|
|
1685
1497
|
execution_context: int | str | None = None,
|
|
@@ -1690,20 +1502,15 @@ def select_linked_pick(
|
|
|
1690
1502
|
) -> None:
|
|
1691
1503
|
"""Select a chain of linked strips nearest to the mouse pointer
|
|
1692
1504
|
|
|
1693
|
-
:type execution_context: int | str | None
|
|
1694
|
-
:type undo: bool | None
|
|
1695
1505
|
:param extend: Extend, Extend the selection
|
|
1696
|
-
:type extend: bool | None
|
|
1697
1506
|
"""
|
|
1698
1507
|
|
|
1699
1508
|
def select_more(
|
|
1700
|
-
execution_context: int | str | None = None,
|
|
1509
|
+
execution_context: int | str | None = None,
|
|
1510
|
+
undo: bool | None = None,
|
|
1511
|
+
/,
|
|
1701
1512
|
) -> None:
|
|
1702
|
-
"""Select more strips adjacent to the current selection
|
|
1703
|
-
|
|
1704
|
-
:type execution_context: int | str | None
|
|
1705
|
-
:type undo: bool | None
|
|
1706
|
-
"""
|
|
1513
|
+
"""Select more strips adjacent to the current selection"""
|
|
1707
1514
|
|
|
1708
1515
|
def select_side(
|
|
1709
1516
|
execution_context: int | str | None = None,
|
|
@@ -1714,10 +1521,7 @@ def select_side(
|
|
|
1714
1521
|
) -> None:
|
|
1715
1522
|
"""Select strips on the nominated side of the selected strips
|
|
1716
1523
|
|
|
1717
|
-
:type execution_context: int | str | None
|
|
1718
|
-
:type undo: bool | None
|
|
1719
1524
|
:param side: Side, The side to which the selection is applied
|
|
1720
|
-
:type side: typing.Literal['MOUSE','LEFT','RIGHT','BOTH','NO_CHANGE'] | None
|
|
1721
1525
|
"""
|
|
1722
1526
|
|
|
1723
1527
|
def select_side_of_frame(
|
|
@@ -1730,10 +1534,7 @@ def select_side_of_frame(
|
|
|
1730
1534
|
) -> None:
|
|
1731
1535
|
"""Select strips relative to the current frame
|
|
1732
1536
|
|
|
1733
|
-
:type execution_context: int | str | None
|
|
1734
|
-
:type undo: bool | None
|
|
1735
1537
|
:param extend: Extend, Extend the selection
|
|
1736
|
-
:type extend: bool | None
|
|
1737
1538
|
:param side: Side
|
|
1738
1539
|
|
|
1739
1540
|
LEFT
|
|
@@ -1744,7 +1545,6 @@ def select_side_of_frame(
|
|
|
1744
1545
|
|
|
1745
1546
|
CURRENT
|
|
1746
1547
|
Current Frame -- Select intersecting with the current frame.
|
|
1747
|
-
:type side: typing.Literal['LEFT','RIGHT','CURRENT'] | None
|
|
1748
1548
|
"""
|
|
1749
1549
|
|
|
1750
1550
|
def set_range_to_strips(
|
|
@@ -1756,10 +1556,7 @@ def set_range_to_strips(
|
|
|
1756
1556
|
) -> None:
|
|
1757
1557
|
"""Set the frame range to the selected strips start and end
|
|
1758
1558
|
|
|
1759
|
-
:type execution_context: int | str | None
|
|
1760
|
-
:type undo: bool | None
|
|
1761
1559
|
:param preview: Preview, Set the preview range instead
|
|
1762
|
-
:type preview: bool | None
|
|
1763
1560
|
"""
|
|
1764
1561
|
|
|
1765
1562
|
def slip(
|
|
@@ -1769,15 +1566,15 @@ def slip(
|
|
|
1769
1566
|
*,
|
|
1770
1567
|
offset: float | None = 0.0,
|
|
1771
1568
|
slip_keyframes: bool | None = False,
|
|
1569
|
+
use_cursor_position: bool | None = False,
|
|
1570
|
+
ignore_connections: bool | None = False,
|
|
1772
1571
|
) -> None:
|
|
1773
1572
|
"""Slip the contents of selected strips
|
|
1774
1573
|
|
|
1775
|
-
:type execution_context: int | str | None
|
|
1776
|
-
:type undo: bool | None
|
|
1777
1574
|
:param offset: Offset, Offset to the data of the strip
|
|
1778
|
-
:type offset: float | None
|
|
1779
1575
|
:param slip_keyframes: Slip Keyframes, Move the keyframes alongside the media
|
|
1780
|
-
:
|
|
1576
|
+
:param use_cursor_position: Use Cursor Position, Slip strips under mouse cursor instead of all selected strips
|
|
1577
|
+
:param ignore_connections: Ignore Connections, Do not slip connected strips if using cursor position
|
|
1781
1578
|
"""
|
|
1782
1579
|
|
|
1783
1580
|
def snap(
|
|
@@ -1789,10 +1586,7 @@ def snap(
|
|
|
1789
1586
|
) -> None:
|
|
1790
1587
|
"""Frame where selected strips will be snapped
|
|
1791
1588
|
|
|
1792
|
-
:type execution_context: int | str | None
|
|
1793
|
-
:type undo: bool | None
|
|
1794
1589
|
:param frame: Frame, Frame where selected strips will be snapped
|
|
1795
|
-
:type frame: int | None
|
|
1796
1590
|
"""
|
|
1797
1591
|
|
|
1798
1592
|
def sound_strip_add(
|
|
@@ -1848,52 +1642,28 @@ def sound_strip_add(
|
|
|
1848
1642
|
) -> None:
|
|
1849
1643
|
"""Add a sound strip to the sequencer
|
|
1850
1644
|
|
|
1851
|
-
:type execution_context: int | str | None
|
|
1852
|
-
:type undo: bool | None
|
|
1853
1645
|
:param filepath: File Path, Path to file
|
|
1854
|
-
:type filepath: str
|
|
1855
1646
|
:param directory: Directory, Directory of the file
|
|
1856
|
-
:type directory: str
|
|
1857
1647
|
:param files: Files
|
|
1858
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
1859
1648
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
1860
|
-
:type check_existing: bool | None
|
|
1861
1649
|
:param filter_blender: Filter .blend files
|
|
1862
|
-
:type filter_blender: bool | None
|
|
1863
1650
|
:param filter_backup: Filter .blend files
|
|
1864
|
-
:type filter_backup: bool | None
|
|
1865
1651
|
:param filter_image: Filter image files
|
|
1866
|
-
:type filter_image: bool | None
|
|
1867
1652
|
:param filter_movie: Filter movie files
|
|
1868
|
-
:type filter_movie: bool | None
|
|
1869
1653
|
:param filter_python: Filter Python files
|
|
1870
|
-
:type filter_python: bool | None
|
|
1871
1654
|
:param filter_font: Filter font files
|
|
1872
|
-
:type filter_font: bool | None
|
|
1873
1655
|
:param filter_sound: Filter sound files
|
|
1874
|
-
:type filter_sound: bool | None
|
|
1875
1656
|
:param filter_text: Filter text files
|
|
1876
|
-
:type filter_text: bool | None
|
|
1877
1657
|
:param filter_archive: Filter archive files
|
|
1878
|
-
:type filter_archive: bool | None
|
|
1879
1658
|
:param filter_btx: Filter btx files
|
|
1880
|
-
:type filter_btx: bool | None
|
|
1881
1659
|
:param filter_alembic: Filter Alembic files
|
|
1882
|
-
:type filter_alembic: bool | None
|
|
1883
1660
|
:param filter_usd: Filter USD files
|
|
1884
|
-
:type filter_usd: bool | None
|
|
1885
1661
|
:param filter_obj: Filter OBJ files
|
|
1886
|
-
:type filter_obj: bool | None
|
|
1887
1662
|
:param filter_volume: Filter OpenVDB volume files
|
|
1888
|
-
:type filter_volume: bool | None
|
|
1889
1663
|
:param filter_folder: Filter folders
|
|
1890
|
-
:type filter_folder: bool | None
|
|
1891
1664
|
:param filter_blenlib: Filter Blender IDs
|
|
1892
|
-
:type filter_blenlib: bool | None
|
|
1893
1665
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
1894
|
-
:type filemode: int | None
|
|
1895
1666
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
1896
|
-
:type relative_path: bool | None
|
|
1897
1667
|
:param display_type: Display Type
|
|
1898
1668
|
|
|
1899
1669
|
DEFAULT
|
|
@@ -1907,7 +1677,6 @@ def sound_strip_add(
|
|
|
1907
1677
|
|
|
1908
1678
|
THUMBNAIL
|
|
1909
1679
|
Thumbnails -- Display files as thumbnails.
|
|
1910
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
1911
1680
|
:param sort_method: File sorting mode
|
|
1912
1681
|
|
|
1913
1682
|
DEFAULT
|
|
@@ -1927,25 +1696,15 @@ def sound_strip_add(
|
|
|
1927
1696
|
|
|
1928
1697
|
ASSET_CATALOG
|
|
1929
1698
|
Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
1930
|
-
:
|
|
1931
|
-
:param
|
|
1932
|
-
:type move_strips: bool | None
|
|
1933
|
-
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1934
|
-
:type frame_start: int | None
|
|
1699
|
+
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
1700
|
+
:param frame_start: Start Frame, Start frame of the strip
|
|
1935
1701
|
:param channel: Channel, Channel to place this strip into
|
|
1936
|
-
:
|
|
1937
|
-
:param
|
|
1938
|
-
:type replace_sel: bool | None
|
|
1939
|
-
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1940
|
-
:type overlap: bool | None
|
|
1702
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips after add operation completes
|
|
1703
|
+
:param overlap: Allow Overlap, Dont correct overlap on new strips
|
|
1941
1704
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1942
|
-
:type overlap_shuffle_override: bool | None
|
|
1943
1705
|
:param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
|
|
1944
|
-
:type skip_locked_or_muted_channels: bool | None
|
|
1945
1706
|
:param cache: Cache, Cache the sound in memory
|
|
1946
|
-
:
|
|
1947
|
-
:param mono: Mono, Merge all the sound's channels into one
|
|
1948
|
-
:type mono: bool | None
|
|
1707
|
+
:param mono: Mono, Merge all the sounds channels into one
|
|
1949
1708
|
"""
|
|
1950
1709
|
|
|
1951
1710
|
def split(
|
|
@@ -1960,23 +1719,17 @@ def split(
|
|
|
1960
1719
|
side: typing.Literal["MOUSE", "LEFT", "RIGHT", "BOTH", "NO_CHANGE"]
|
|
1961
1720
|
| None = "MOUSE",
|
|
1962
1721
|
ignore_selection: bool | None = False,
|
|
1722
|
+
ignore_connections: bool | None = False,
|
|
1963
1723
|
) -> None:
|
|
1964
1724
|
"""Split the selected strips in two
|
|
1965
1725
|
|
|
1966
|
-
:type execution_context: int | str | None
|
|
1967
|
-
:type undo: bool | None
|
|
1968
1726
|
:param frame: Frame, Frame where selected strips will be split
|
|
1969
|
-
:type frame: int | None
|
|
1970
1727
|
:param channel: Channel, Channel in which strip will be cut
|
|
1971
|
-
:type channel: int | None
|
|
1972
1728
|
:param type: Type, The type of split operation to perform on strips
|
|
1973
|
-
:type type: typing.Literal['SOFT','HARD'] | None
|
|
1974
1729
|
:param use_cursor_position: Use Cursor Position, Split at position of the cursor instead of current frame
|
|
1975
|
-
:type use_cursor_position: bool | None
|
|
1976
1730
|
:param side: Side, The side that remains selected after splitting
|
|
1977
|
-
:type side: typing.Literal['MOUSE','LEFT','RIGHT','BOTH','NO_CHANGE'] | None
|
|
1978
1731
|
:param ignore_selection: Ignore Selection, Make cut even if strip is not selected preserving selection state after cut
|
|
1979
|
-
:
|
|
1732
|
+
:param ignore_connections: Ignore Connections, Dont propagate split to connected strips
|
|
1980
1733
|
"""
|
|
1981
1734
|
|
|
1982
1735
|
def split_multicam(
|
|
@@ -1988,10 +1741,7 @@ def split_multicam(
|
|
|
1988
1741
|
) -> None:
|
|
1989
1742
|
"""Split multicam strip and select camera
|
|
1990
1743
|
|
|
1991
|
-
:type execution_context: int | str | None
|
|
1992
|
-
:type undo: bool | None
|
|
1993
1744
|
:param camera: Camera
|
|
1994
|
-
:type camera: int | None
|
|
1995
1745
|
"""
|
|
1996
1746
|
|
|
1997
1747
|
def strip_color_tag_set(
|
|
@@ -2003,10 +1753,7 @@ def strip_color_tag_set(
|
|
|
2003
1753
|
) -> None:
|
|
2004
1754
|
"""Set a color tag for the selected strips
|
|
2005
1755
|
|
|
2006
|
-
:type execution_context: int | str | None
|
|
2007
|
-
:type undo: bool | None
|
|
2008
1756
|
:param color: Color Tag
|
|
2009
|
-
:type color: bpy.stub_internal.rna_enums.StripColorItems | None
|
|
2010
1757
|
"""
|
|
2011
1758
|
|
|
2012
1759
|
def strip_jump(
|
|
@@ -2019,12 +1766,8 @@ def strip_jump(
|
|
|
2019
1766
|
) -> None:
|
|
2020
1767
|
"""Move frame to previous edit point
|
|
2021
1768
|
|
|
2022
|
-
:type execution_context: int | str | None
|
|
2023
|
-
:type undo: bool | None
|
|
2024
1769
|
:param next: Next Strip
|
|
2025
|
-
:type next: bool | None
|
|
2026
1770
|
:param center: Use Strip Center
|
|
2027
|
-
:type center: bool | None
|
|
2028
1771
|
"""
|
|
2029
1772
|
|
|
2030
1773
|
def strip_modifier_add(
|
|
@@ -2036,10 +1779,7 @@ def strip_modifier_add(
|
|
|
2036
1779
|
) -> None:
|
|
2037
1780
|
"""Add a modifier to the strip
|
|
2038
1781
|
|
|
2039
|
-
:type execution_context: int | str | None
|
|
2040
|
-
:type undo: bool | None
|
|
2041
1782
|
:param type: Type
|
|
2042
|
-
:type type: str | None
|
|
2043
1783
|
"""
|
|
2044
1784
|
|
|
2045
1785
|
def strip_modifier_copy(
|
|
@@ -2051,8 +1791,6 @@ def strip_modifier_copy(
|
|
|
2051
1791
|
) -> None:
|
|
2052
1792
|
"""Copy modifiers of the active strip to all selected strips
|
|
2053
1793
|
|
|
2054
|
-
:type execution_context: int | str | None
|
|
2055
|
-
:type undo: bool | None
|
|
2056
1794
|
:param type: Type
|
|
2057
1795
|
|
|
2058
1796
|
REPLACE
|
|
@@ -2060,7 +1798,6 @@ def strip_modifier_copy(
|
|
|
2060
1798
|
|
|
2061
1799
|
APPEND
|
|
2062
1800
|
Append -- Append active modifiers to selected strips.
|
|
2063
|
-
:type type: typing.Literal['REPLACE','APPEND'] | None
|
|
2064
1801
|
"""
|
|
2065
1802
|
|
|
2066
1803
|
def strip_modifier_equalizer_redefine(
|
|
@@ -2073,8 +1810,6 @@ def strip_modifier_equalizer_redefine(
|
|
|
2073
1810
|
) -> None:
|
|
2074
1811
|
"""Redefine equalizer graphs
|
|
2075
1812
|
|
|
2076
|
-
:type execution_context: int | str | None
|
|
2077
|
-
:type undo: bool | None
|
|
2078
1813
|
:param graphs: Graphs, Number of graphs
|
|
2079
1814
|
|
|
2080
1815
|
SIMPLE
|
|
@@ -2085,9 +1820,7 @@ def strip_modifier_equalizer_redefine(
|
|
|
2085
1820
|
|
|
2086
1821
|
TRIPLE
|
|
2087
1822
|
Triplet -- Graphical definition in 3 sections.
|
|
2088
|
-
:type graphs: typing.Literal['SIMPLE','DOUBLE','TRIPLE'] | None
|
|
2089
1823
|
:param name: Name, Name of modifier to redefine
|
|
2090
|
-
:type name: str
|
|
2091
1824
|
"""
|
|
2092
1825
|
|
|
2093
1826
|
def strip_modifier_move(
|
|
@@ -2100,10 +1833,7 @@ def strip_modifier_move(
|
|
|
2100
1833
|
) -> None:
|
|
2101
1834
|
"""Move modifier up and down in the stack
|
|
2102
1835
|
|
|
2103
|
-
:type execution_context: int | str | None
|
|
2104
|
-
:type undo: bool | None
|
|
2105
1836
|
:param name: Name, Name of modifier to remove
|
|
2106
|
-
:type name: str
|
|
2107
1837
|
:param direction: Type
|
|
2108
1838
|
|
|
2109
1839
|
UP
|
|
@@ -2111,7 +1841,20 @@ def strip_modifier_move(
|
|
|
2111
1841
|
|
|
2112
1842
|
DOWN
|
|
2113
1843
|
Down -- Move modifier down in the stack.
|
|
2114
|
-
|
|
1844
|
+
"""
|
|
1845
|
+
|
|
1846
|
+
def strip_modifier_move_to_index(
|
|
1847
|
+
execution_context: int | str | None = None,
|
|
1848
|
+
undo: bool | None = None,
|
|
1849
|
+
/,
|
|
1850
|
+
*,
|
|
1851
|
+
modifier: str = "",
|
|
1852
|
+
index: int | None = 0,
|
|
1853
|
+
) -> None:
|
|
1854
|
+
"""Change the strip modifiers index in the stack so it evaluates after the set number of others
|
|
1855
|
+
|
|
1856
|
+
:param modifier: Modifier, Name of the modifier to edit
|
|
1857
|
+
:param index: Index, The index to move the modifier to
|
|
2115
1858
|
"""
|
|
2116
1859
|
|
|
2117
1860
|
def strip_modifier_remove(
|
|
@@ -2123,10 +1866,19 @@ def strip_modifier_remove(
|
|
|
2123
1866
|
) -> None:
|
|
2124
1867
|
"""Remove a modifier from the strip
|
|
2125
1868
|
|
|
2126
|
-
:type execution_context: int | str | None
|
|
2127
|
-
:type undo: bool | None
|
|
2128
1869
|
:param name: Name, Name of modifier to remove
|
|
2129
|
-
|
|
1870
|
+
"""
|
|
1871
|
+
|
|
1872
|
+
def strip_modifier_set_active(
|
|
1873
|
+
execution_context: int | str | None = None,
|
|
1874
|
+
undo: bool | None = None,
|
|
1875
|
+
/,
|
|
1876
|
+
*,
|
|
1877
|
+
modifier: str = "",
|
|
1878
|
+
) -> None:
|
|
1879
|
+
"""Activate the strip modifier to use as the context
|
|
1880
|
+
|
|
1881
|
+
:param modifier: Modifier, Name of the strip modifier to edit
|
|
2130
1882
|
"""
|
|
2131
1883
|
|
|
2132
1884
|
def strip_transform_clear(
|
|
@@ -2138,8 +1890,6 @@ def strip_transform_clear(
|
|
|
2138
1890
|
) -> None:
|
|
2139
1891
|
"""Reset image transformation to default value
|
|
2140
1892
|
|
|
2141
|
-
:type execution_context: int | str | None
|
|
2142
|
-
:type undo: bool | None
|
|
2143
1893
|
:param property: Property, Strip transform property to be reset
|
|
2144
1894
|
|
|
2145
1895
|
POSITION
|
|
@@ -2153,7 +1903,6 @@ def strip_transform_clear(
|
|
|
2153
1903
|
|
|
2154
1904
|
ALL
|
|
2155
1905
|
All -- Reset strip transform location, scale and rotation.
|
|
2156
|
-
:type property: typing.Literal['POSITION','SCALE','ROTATION','ALL'] | None
|
|
2157
1906
|
"""
|
|
2158
1907
|
|
|
2159
1908
|
def strip_transform_fit(
|
|
@@ -2161,23 +1910,11 @@ def strip_transform_fit(
|
|
|
2161
1910
|
undo: bool | None = None,
|
|
2162
1911
|
/,
|
|
2163
1912
|
*,
|
|
2164
|
-
fit_method:
|
|
1913
|
+
fit_method: bpy.stub_internal.rna_enums.StripScaleMethodItems | None = "FIT",
|
|
2165
1914
|
) -> None:
|
|
2166
1915
|
"""Undocumented, consider contributing.
|
|
2167
1916
|
|
|
2168
|
-
|
|
2169
|
-
:type undo: bool | None
|
|
2170
|
-
:param fit_method: Fit Method, Scale fit fit_method
|
|
2171
|
-
|
|
2172
|
-
FIT
|
|
2173
|
-
Scale to Fit -- Scale image so fits in preview.
|
|
2174
|
-
|
|
2175
|
-
FILL
|
|
2176
|
-
Scale to Fill -- Scale image so it fills preview completely.
|
|
2177
|
-
|
|
2178
|
-
STRETCH
|
|
2179
|
-
Stretch to Fill -- Stretch image so it fills preview.
|
|
2180
|
-
:type fit_method: typing.Literal['FIT','FILL','STRETCH'] | None
|
|
1917
|
+
:param fit_method: Fit Method, Mode for fitting the image to the canvas
|
|
2181
1918
|
"""
|
|
2182
1919
|
|
|
2183
1920
|
def swap(
|
|
@@ -2189,29 +1926,22 @@ def swap(
|
|
|
2189
1926
|
) -> None:
|
|
2190
1927
|
"""Swap active strip with strip to the right or left
|
|
2191
1928
|
|
|
2192
|
-
:type execution_context: int | str | None
|
|
2193
|
-
:type undo: bool | None
|
|
2194
1929
|
:param side: Side, Side of the strip to swap
|
|
2195
|
-
:type side: typing.Literal['LEFT','RIGHT'] | None
|
|
2196
1930
|
"""
|
|
2197
1931
|
|
|
2198
1932
|
def swap_data(
|
|
2199
|
-
execution_context: int | str | None = None,
|
|
1933
|
+
execution_context: int | str | None = None,
|
|
1934
|
+
undo: bool | None = None,
|
|
1935
|
+
/,
|
|
2200
1936
|
) -> None:
|
|
2201
|
-
"""Swap 2 sequencer strips
|
|
2202
|
-
|
|
2203
|
-
:type execution_context: int | str | None
|
|
2204
|
-
:type undo: bool | None
|
|
2205
|
-
"""
|
|
1937
|
+
"""Swap 2 sequencer strips"""
|
|
2206
1938
|
|
|
2207
1939
|
def swap_inputs(
|
|
2208
|
-
execution_context: int | str | None = None,
|
|
1940
|
+
execution_context: int | str | None = None,
|
|
1941
|
+
undo: bool | None = None,
|
|
1942
|
+
/,
|
|
2209
1943
|
) -> None:
|
|
2210
|
-
"""Swap the two inputs of the effect strip
|
|
2211
|
-
|
|
2212
|
-
:type execution_context: int | str | None
|
|
2213
|
-
:type undo: bool | None
|
|
2214
|
-
"""
|
|
1944
|
+
"""Swap the two inputs of the effect strip"""
|
|
2215
1945
|
|
|
2216
1946
|
def text_cursor_move(
|
|
2217
1947
|
execution_context: int | str | None = None,
|
|
@@ -2235,12 +1965,8 @@ def text_cursor_move(
|
|
|
2235
1965
|
) -> None:
|
|
2236
1966
|
"""Move cursor in text
|
|
2237
1967
|
|
|
2238
|
-
:type execution_context: int | str | None
|
|
2239
|
-
:type undo: bool | None
|
|
2240
1968
|
:param type: Type, Where to move cursor to, to make a selection
|
|
2241
|
-
:type type: typing.Literal['LINE_BEGIN','LINE_END','TEXT_BEGIN','TEXT_END','PREVIOUS_CHARACTER','NEXT_CHARACTER','PREVIOUS_WORD','NEXT_WORD','PREVIOUS_LINE','NEXT_LINE'] | None
|
|
2242
1969
|
:param select_text: Select Text, Select text while moving cursor
|
|
2243
|
-
:type select_text: bool | None
|
|
2244
1970
|
"""
|
|
2245
1971
|
|
|
2246
1972
|
def text_cursor_set(
|
|
@@ -2252,10 +1978,7 @@ def text_cursor_set(
|
|
|
2252
1978
|
) -> None:
|
|
2253
1979
|
"""Set cursor position in text
|
|
2254
1980
|
|
|
2255
|
-
:type execution_context: int | str | None
|
|
2256
|
-
:type undo: bool | None
|
|
2257
1981
|
:param select_text: Select Text, Select text while moving cursor
|
|
2258
|
-
:type select_text: bool | None
|
|
2259
1982
|
"""
|
|
2260
1983
|
|
|
2261
1984
|
def text_delete(
|
|
@@ -2268,56 +1991,43 @@ def text_delete(
|
|
|
2268
1991
|
) -> None:
|
|
2269
1992
|
"""Delete text at cursor position
|
|
2270
1993
|
|
|
2271
|
-
:type execution_context: int | str | None
|
|
2272
|
-
:type undo: bool | None
|
|
2273
1994
|
:param type: Type, Which part of the text to delete
|
|
2274
|
-
:type type: typing.Literal['NEXT_OR_SELECTION','PREVIOUS_OR_SELECTION'] | None
|
|
2275
1995
|
"""
|
|
2276
1996
|
|
|
2277
1997
|
def text_deselect_all(
|
|
2278
|
-
execution_context: int | str | None = None,
|
|
1998
|
+
execution_context: int | str | None = None,
|
|
1999
|
+
undo: bool | None = None,
|
|
2000
|
+
/,
|
|
2279
2001
|
) -> None:
|
|
2280
|
-
"""Deselect all characters
|
|
2281
|
-
|
|
2282
|
-
:type execution_context: int | str | None
|
|
2283
|
-
:type undo: bool | None
|
|
2284
|
-
"""
|
|
2002
|
+
"""Deselect all characters"""
|
|
2285
2003
|
|
|
2286
2004
|
def text_edit_copy(
|
|
2287
|
-
execution_context: int | str | None = None,
|
|
2005
|
+
execution_context: int | str | None = None,
|
|
2006
|
+
undo: bool | None = None,
|
|
2007
|
+
/,
|
|
2288
2008
|
) -> None:
|
|
2289
|
-
"""Copy text to clipboard
|
|
2290
|
-
|
|
2291
|
-
:type execution_context: int | str | None
|
|
2292
|
-
:type undo: bool | None
|
|
2293
|
-
"""
|
|
2009
|
+
"""Copy text to clipboard"""
|
|
2294
2010
|
|
|
2295
2011
|
def text_edit_cut(
|
|
2296
|
-
execution_context: int | str | None = None,
|
|
2012
|
+
execution_context: int | str | None = None,
|
|
2013
|
+
undo: bool | None = None,
|
|
2014
|
+
/,
|
|
2297
2015
|
) -> None:
|
|
2298
|
-
"""Cut text to clipboard
|
|
2299
|
-
|
|
2300
|
-
:type execution_context: int | str | None
|
|
2301
|
-
:type undo: bool | None
|
|
2302
|
-
"""
|
|
2016
|
+
"""Cut text to clipboard"""
|
|
2303
2017
|
|
|
2304
2018
|
def text_edit_mode_toggle(
|
|
2305
|
-
execution_context: int | str | None = None,
|
|
2019
|
+
execution_context: int | str | None = None,
|
|
2020
|
+
undo: bool | None = None,
|
|
2021
|
+
/,
|
|
2306
2022
|
) -> None:
|
|
2307
|
-
"""Toggle text editing
|
|
2308
|
-
|
|
2309
|
-
:type execution_context: int | str | None
|
|
2310
|
-
:type undo: bool | None
|
|
2311
|
-
"""
|
|
2023
|
+
"""Toggle text editing"""
|
|
2312
2024
|
|
|
2313
2025
|
def text_edit_paste(
|
|
2314
|
-
execution_context: int | str | None = None,
|
|
2026
|
+
execution_context: int | str | None = None,
|
|
2027
|
+
undo: bool | None = None,
|
|
2028
|
+
/,
|
|
2315
2029
|
) -> None:
|
|
2316
|
-
"""Paste text from clipboard
|
|
2317
|
-
|
|
2318
|
-
:type execution_context: int | str | None
|
|
2319
|
-
:type undo: bool | None
|
|
2320
|
-
"""
|
|
2030
|
+
"""Paste text from clipboard"""
|
|
2321
2031
|
|
|
2322
2032
|
def text_insert(
|
|
2323
2033
|
execution_context: int | str | None = None,
|
|
@@ -2328,38 +2038,29 @@ def text_insert(
|
|
|
2328
2038
|
) -> None:
|
|
2329
2039
|
"""Insert text at cursor position
|
|
2330
2040
|
|
|
2331
|
-
:type execution_context: int | str | None
|
|
2332
|
-
:type undo: bool | None
|
|
2333
2041
|
:param string: String, String to be inserted at cursor position
|
|
2334
|
-
:type string: str
|
|
2335
2042
|
"""
|
|
2336
2043
|
|
|
2337
2044
|
def text_line_break(
|
|
2338
|
-
execution_context: int | str | None = None,
|
|
2045
|
+
execution_context: int | str | None = None,
|
|
2046
|
+
undo: bool | None = None,
|
|
2047
|
+
/,
|
|
2339
2048
|
) -> None:
|
|
2340
|
-
"""Insert line break at cursor position
|
|
2341
|
-
|
|
2342
|
-
:type execution_context: int | str | None
|
|
2343
|
-
:type undo: bool | None
|
|
2344
|
-
"""
|
|
2049
|
+
"""Insert line break at cursor position"""
|
|
2345
2050
|
|
|
2346
2051
|
def text_select_all(
|
|
2347
|
-
execution_context: int | str | None = None,
|
|
2052
|
+
execution_context: int | str | None = None,
|
|
2053
|
+
undo: bool | None = None,
|
|
2054
|
+
/,
|
|
2348
2055
|
) -> None:
|
|
2349
|
-
"""Select all characters
|
|
2350
|
-
|
|
2351
|
-
:type execution_context: int | str | None
|
|
2352
|
-
:type undo: bool | None
|
|
2353
|
-
"""
|
|
2056
|
+
"""Select all characters"""
|
|
2354
2057
|
|
|
2355
2058
|
def unlock(
|
|
2356
|
-
execution_context: int | str | None = None,
|
|
2059
|
+
execution_context: int | str | None = None,
|
|
2060
|
+
undo: bool | None = None,
|
|
2061
|
+
/,
|
|
2357
2062
|
) -> None:
|
|
2358
|
-
"""Unlock strips so they can be transformed
|
|
2359
|
-
|
|
2360
|
-
:type execution_context: int | str | None
|
|
2361
|
-
:type undo: bool | None
|
|
2362
|
-
"""
|
|
2063
|
+
"""Unlock strips so they can be transformed"""
|
|
2363
2064
|
|
|
2364
2065
|
def unmute(
|
|
2365
2066
|
execution_context: int | str | None = None,
|
|
@@ -2370,38 +2071,29 @@ def unmute(
|
|
|
2370
2071
|
) -> None:
|
|
2371
2072
|
"""Unmute (un)selected strips
|
|
2372
2073
|
|
|
2373
|
-
:type execution_context: int | str | None
|
|
2374
|
-
:type undo: bool | None
|
|
2375
2074
|
:param unselected: Unselected, Unmute unselected rather than selected strips
|
|
2376
|
-
:type unselected: bool | None
|
|
2377
2075
|
"""
|
|
2378
2076
|
|
|
2379
2077
|
def view_all(
|
|
2380
|
-
execution_context: int | str | None = None,
|
|
2078
|
+
execution_context: int | str | None = None,
|
|
2079
|
+
undo: bool | None = None,
|
|
2080
|
+
/,
|
|
2381
2081
|
) -> None:
|
|
2382
|
-
"""View all the strips in the sequencer
|
|
2383
|
-
|
|
2384
|
-
:type execution_context: int | str | None
|
|
2385
|
-
:type undo: bool | None
|
|
2386
|
-
"""
|
|
2082
|
+
"""View all the strips in the sequencer"""
|
|
2387
2083
|
|
|
2388
2084
|
def view_all_preview(
|
|
2389
|
-
execution_context: int | str | None = None,
|
|
2085
|
+
execution_context: int | str | None = None,
|
|
2086
|
+
undo: bool | None = None,
|
|
2087
|
+
/,
|
|
2390
2088
|
) -> None:
|
|
2391
|
-
"""Zoom preview to fit in the area
|
|
2392
|
-
|
|
2393
|
-
:type execution_context: int | str | None
|
|
2394
|
-
:type undo: bool | None
|
|
2395
|
-
"""
|
|
2089
|
+
"""Zoom preview to fit in the area"""
|
|
2396
2090
|
|
|
2397
2091
|
def view_frame(
|
|
2398
|
-
execution_context: int | str | None = None,
|
|
2092
|
+
execution_context: int | str | None = None,
|
|
2093
|
+
undo: bool | None = None,
|
|
2094
|
+
/,
|
|
2399
2095
|
) -> None:
|
|
2400
|
-
"""Move the view to the current frame
|
|
2401
|
-
|
|
2402
|
-
:type execution_context: int | str | None
|
|
2403
|
-
:type undo: bool | None
|
|
2404
|
-
"""
|
|
2096
|
+
"""Move the view to the current frame"""
|
|
2405
2097
|
|
|
2406
2098
|
def view_ghost_border(
|
|
2407
2099
|
execution_context: int | str | None = None,
|
|
@@ -2416,28 +2108,19 @@ def view_ghost_border(
|
|
|
2416
2108
|
) -> None:
|
|
2417
2109
|
"""Set the boundaries of the border used for offset view
|
|
2418
2110
|
|
|
2419
|
-
:type execution_context: int | str | None
|
|
2420
|
-
:type undo: bool | None
|
|
2421
2111
|
:param xmin: X Min
|
|
2422
|
-
:type xmin: int | None
|
|
2423
2112
|
:param xmax: X Max
|
|
2424
|
-
:type xmax: int | None
|
|
2425
2113
|
:param ymin: Y Min
|
|
2426
|
-
:type ymin: int | None
|
|
2427
2114
|
:param ymax: Y Max
|
|
2428
|
-
:type ymax: int | None
|
|
2429
2115
|
:param wait_for_input: Wait for Input
|
|
2430
|
-
:type wait_for_input: bool | None
|
|
2431
2116
|
"""
|
|
2432
2117
|
|
|
2433
2118
|
def view_selected(
|
|
2434
|
-
execution_context: int | str | None = None,
|
|
2119
|
+
execution_context: int | str | None = None,
|
|
2120
|
+
undo: bool | None = None,
|
|
2121
|
+
/,
|
|
2435
2122
|
) -> None:
|
|
2436
|
-
"""Zoom the sequencer on the selected strips
|
|
2437
|
-
|
|
2438
|
-
:type execution_context: int | str | None
|
|
2439
|
-
:type undo: bool | None
|
|
2440
|
-
"""
|
|
2123
|
+
"""Zoom the sequencer on the selected strips"""
|
|
2441
2124
|
|
|
2442
2125
|
def view_zoom_ratio(
|
|
2443
2126
|
execution_context: int | str | None = None,
|
|
@@ -2448,8 +2131,5 @@ def view_zoom_ratio(
|
|
|
2448
2131
|
) -> None:
|
|
2449
2132
|
"""Change zoom ratio of sequencer preview
|
|
2450
2133
|
|
|
2451
|
-
:type execution_context: int | str | None
|
|
2452
|
-
:type undo: bool | None
|
|
2453
2134
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|
|
2454
|
-
:type ratio: float | None
|
|
2455
2135
|
"""
|