fake-bpy-module 20240927__py3-none-any.whl → 20240929__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.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +220 -200
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -7,19 +7,19 @@ import bpy.typing
|
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
9
9
|
def change_effect_input(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Undocumented, consider contributing.
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
20
20
|
|
|
21
21
|
def change_effect_type(
|
|
22
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
22
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
23
23
|
execution_context: int | str | None = None,
|
|
24
24
|
undo: bool | None = None,
|
|
25
25
|
*,
|
|
@@ -47,7 +47,7 @@ def change_effect_type(
|
|
|
47
47
|
):
|
|
48
48
|
"""Undocumented, consider contributing.
|
|
49
49
|
|
|
50
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
50
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
51
51
|
:type execution_context: int | str | None
|
|
52
52
|
:type undo: bool | None
|
|
53
53
|
:param type: Type, Sequencer effect type
|
|
@@ -109,7 +109,7 @@ def change_effect_type(
|
|
|
109
109
|
"""
|
|
110
110
|
|
|
111
111
|
def change_path(
|
|
112
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
112
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
113
113
|
execution_context: int | str | None = None,
|
|
114
114
|
undo: bool | None = None,
|
|
115
115
|
*,
|
|
@@ -147,7 +147,7 @@ def change_path(
|
|
|
147
147
|
):
|
|
148
148
|
"""Undocumented, consider contributing.
|
|
149
149
|
|
|
150
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
150
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
151
151
|
:type execution_context: int | str | None
|
|
152
152
|
:type undo: bool | None
|
|
153
153
|
:param filepath: File Path, Path to file
|
|
@@ -219,7 +219,7 @@ def change_path(
|
|
|
219
219
|
"""
|
|
220
220
|
|
|
221
221
|
def change_scene(
|
|
222
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
222
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
223
223
|
execution_context: int | str | None = None,
|
|
224
224
|
undo: bool | None = None,
|
|
225
225
|
*,
|
|
@@ -227,7 +227,7 @@ def change_scene(
|
|
|
227
227
|
):
|
|
228
228
|
"""Change Scene assigned to Strip
|
|
229
229
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
230
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
231
|
:type execution_context: int | str | None
|
|
232
232
|
:type undo: bool | None
|
|
233
233
|
:param scene: Scene
|
|
@@ -235,7 +235,7 @@ def change_scene(
|
|
|
235
235
|
"""
|
|
236
236
|
|
|
237
237
|
def connect(
|
|
238
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
238
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
239
239
|
execution_context: int | str | None = None,
|
|
240
240
|
undo: bool | None = None,
|
|
241
241
|
*,
|
|
@@ -243,7 +243,7 @@ def connect(
|
|
|
243
243
|
):
|
|
244
244
|
"""Link selected strips together for simplified group selection
|
|
245
245
|
|
|
246
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
246
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
247
247
|
:type execution_context: int | str | None
|
|
248
248
|
:type undo: bool | None
|
|
249
249
|
:param toggle: Toggle, Toggle strip connections
|
|
@@ -251,31 +251,31 @@ def connect(
|
|
|
251
251
|
"""
|
|
252
252
|
|
|
253
253
|
def copy(
|
|
254
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
254
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
255
255
|
execution_context: int | str | None = None,
|
|
256
256
|
undo: bool | None = None,
|
|
257
257
|
):
|
|
258
258
|
"""Copy the selected strips to the internal clipboard
|
|
259
259
|
|
|
260
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
260
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
261
261
|
:type execution_context: int | str | None
|
|
262
262
|
:type undo: bool | None
|
|
263
263
|
"""
|
|
264
264
|
|
|
265
265
|
def crossfade_sounds(
|
|
266
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
266
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
267
267
|
execution_context: int | str | None = None,
|
|
268
268
|
undo: bool | None = None,
|
|
269
269
|
):
|
|
270
270
|
"""Do cross-fading volume animation of two selected sound strips
|
|
271
271
|
|
|
272
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
272
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
273
273
|
:type execution_context: int | str | None
|
|
274
274
|
:type undo: bool | None
|
|
275
275
|
"""
|
|
276
276
|
|
|
277
277
|
def cursor_set(
|
|
278
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
278
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
279
279
|
execution_context: int | str | None = None,
|
|
280
280
|
undo: bool | None = None,
|
|
281
281
|
*,
|
|
@@ -283,7 +283,7 @@ def cursor_set(
|
|
|
283
283
|
):
|
|
284
284
|
"""Set 2D cursor location
|
|
285
285
|
|
|
286
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
286
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
287
287
|
:type execution_context: int | str | None
|
|
288
288
|
:type undo: bool | None
|
|
289
289
|
:param location: Location, Cursor location in normalized preview coordinates
|
|
@@ -291,19 +291,19 @@ def cursor_set(
|
|
|
291
291
|
"""
|
|
292
292
|
|
|
293
293
|
def deinterlace_selected_movies(
|
|
294
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
294
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
295
295
|
execution_context: int | str | None = None,
|
|
296
296
|
undo: bool | None = None,
|
|
297
297
|
):
|
|
298
298
|
"""Deinterlace all selected movie sources
|
|
299
299
|
|
|
300
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
300
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
301
301
|
:type execution_context: int | str | None
|
|
302
302
|
:type undo: bool | None
|
|
303
303
|
"""
|
|
304
304
|
|
|
305
305
|
def delete(
|
|
306
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
306
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
307
307
|
execution_context: int | str | None = None,
|
|
308
308
|
undo: bool | None = None,
|
|
309
309
|
*,
|
|
@@ -311,7 +311,7 @@ def delete(
|
|
|
311
311
|
):
|
|
312
312
|
"""Delete selected strips from the sequencer
|
|
313
313
|
|
|
314
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
314
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
315
315
|
:type execution_context: int | str | None
|
|
316
316
|
:type undo: bool | None
|
|
317
317
|
:param delete_data: Delete Data, After removing the Strip, delete the associated data also
|
|
@@ -319,31 +319,31 @@ def delete(
|
|
|
319
319
|
"""
|
|
320
320
|
|
|
321
321
|
def disconnect(
|
|
322
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
322
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
323
323
|
execution_context: int | str | None = None,
|
|
324
324
|
undo: bool | None = None,
|
|
325
325
|
):
|
|
326
326
|
"""Unlink selected strips so that they can be selected individually
|
|
327
327
|
|
|
328
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
328
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
329
329
|
:type execution_context: int | str | None
|
|
330
330
|
:type undo: bool | None
|
|
331
331
|
"""
|
|
332
332
|
|
|
333
333
|
def duplicate(
|
|
334
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
334
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
335
335
|
execution_context: int | str | None = None,
|
|
336
336
|
undo: bool | None = None,
|
|
337
337
|
):
|
|
338
338
|
"""Duplicate the selected strips
|
|
339
339
|
|
|
340
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
340
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
341
341
|
:type execution_context: int | str | None
|
|
342
342
|
:type undo: bool | None
|
|
343
343
|
"""
|
|
344
344
|
|
|
345
345
|
def duplicate_move(
|
|
346
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
346
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
347
347
|
execution_context: int | str | None = None,
|
|
348
348
|
undo: bool | None = None,
|
|
349
349
|
*,
|
|
@@ -352,7 +352,7 @@ def duplicate_move(
|
|
|
352
352
|
):
|
|
353
353
|
"""Duplicate selected strips and move them
|
|
354
354
|
|
|
355
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
355
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
356
356
|
:type execution_context: int | str | None
|
|
357
357
|
:type undo: bool | None
|
|
358
358
|
:param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
|
|
@@ -362,7 +362,7 @@ def duplicate_move(
|
|
|
362
362
|
"""
|
|
363
363
|
|
|
364
364
|
def effect_strip_add(
|
|
365
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
365
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
366
366
|
execution_context: int | str | None = None,
|
|
367
367
|
undo: bool | None = None,
|
|
368
368
|
*,
|
|
@@ -397,7 +397,7 @@ def effect_strip_add(
|
|
|
397
397
|
):
|
|
398
398
|
"""Add an effect to the sequencer, most are applied on top of existing strips
|
|
399
399
|
|
|
400
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
400
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
401
401
|
:type execution_context: int | str | None
|
|
402
402
|
:type undo: bool | None
|
|
403
403
|
:param type: Type, Sequencer effect type
|
|
@@ -473,7 +473,7 @@ def effect_strip_add(
|
|
|
473
473
|
"""
|
|
474
474
|
|
|
475
475
|
def enable_proxies(
|
|
476
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
476
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
477
477
|
execution_context: int | str | None = None,
|
|
478
478
|
undo: bool | None = None,
|
|
479
479
|
*,
|
|
@@ -485,7 +485,7 @@ def enable_proxies(
|
|
|
485
485
|
):
|
|
486
486
|
"""Enable selected proxies on all selected Movie and Image strips
|
|
487
487
|
|
|
488
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
488
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
489
489
|
:type execution_context: int | str | None
|
|
490
490
|
:type undo: bool | None
|
|
491
491
|
:param proxy_25: 25%
|
|
@@ -501,7 +501,7 @@ def enable_proxies(
|
|
|
501
501
|
"""
|
|
502
502
|
|
|
503
503
|
def export_subtitles(
|
|
504
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
504
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
505
505
|
execution_context: int | str | None = None,
|
|
506
506
|
undo: bool | None = None,
|
|
507
507
|
*,
|
|
@@ -534,7 +534,7 @@ def export_subtitles(
|
|
|
534
534
|
):
|
|
535
535
|
"""Export .srt file containing text strips
|
|
536
536
|
|
|
537
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
537
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
538
538
|
:type execution_context: int | str | None
|
|
539
539
|
:type undo: bool | None
|
|
540
540
|
:param filepath: File Path, Path to file
|
|
@@ -598,7 +598,7 @@ def export_subtitles(
|
|
|
598
598
|
"""
|
|
599
599
|
|
|
600
600
|
def fades_add(
|
|
601
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
601
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
602
602
|
execution_context: int | str | None = None,
|
|
603
603
|
undo: bool | None = None,
|
|
604
604
|
*,
|
|
@@ -608,7 +608,7 @@ def fades_add(
|
|
|
608
608
|
):
|
|
609
609
|
"""Adds or updates a fade animation for either visual or audio strips
|
|
610
610
|
|
|
611
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
611
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
612
612
|
:type execution_context: int | str | None
|
|
613
613
|
:type undo: bool | None
|
|
614
614
|
:param duration_seconds: Fade Duration, Duration of the fade in seconds
|
|
@@ -633,19 +633,19 @@ def fades_add(
|
|
|
633
633
|
"""
|
|
634
634
|
|
|
635
635
|
def fades_clear(
|
|
636
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
636
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
637
637
|
execution_context: int | str | None = None,
|
|
638
638
|
undo: bool | None = None,
|
|
639
639
|
):
|
|
640
640
|
"""Removes fade animation from selected sequences
|
|
641
641
|
|
|
642
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
642
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
643
643
|
:type execution_context: int | str | None
|
|
644
644
|
:type undo: bool | None
|
|
645
645
|
"""
|
|
646
646
|
|
|
647
647
|
def gap_insert(
|
|
648
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
648
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
649
649
|
execution_context: int | str | None = None,
|
|
650
650
|
undo: bool | None = None,
|
|
651
651
|
*,
|
|
@@ -653,7 +653,7 @@ def gap_insert(
|
|
|
653
653
|
):
|
|
654
654
|
"""Insert gap at current frame to first strips at the right, independent of selection or locked state of strips
|
|
655
655
|
|
|
656
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
656
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
657
657
|
:type execution_context: int | str | None
|
|
658
658
|
:type undo: bool | None
|
|
659
659
|
:param frames: Frames, Frames to insert after current strip
|
|
@@ -661,7 +661,7 @@ def gap_insert(
|
|
|
661
661
|
"""
|
|
662
662
|
|
|
663
663
|
def gap_remove(
|
|
664
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
664
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
665
665
|
execution_context: int | str | None = None,
|
|
666
666
|
undo: bool | None = None,
|
|
667
667
|
*,
|
|
@@ -669,7 +669,7 @@ def gap_remove(
|
|
|
669
669
|
):
|
|
670
670
|
"""Remove gap at current frame to first strip at the right, independent of selection or locked state of strips
|
|
671
671
|
|
|
672
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
672
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
673
673
|
:type execution_context: int | str | None
|
|
674
674
|
:type undo: bool | None
|
|
675
675
|
:param all: All Gaps, Do all gaps to right of current frame
|
|
@@ -677,7 +677,7 @@ def gap_remove(
|
|
|
677
677
|
"""
|
|
678
678
|
|
|
679
679
|
def image_strip_add(
|
|
680
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
680
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
681
681
|
execution_context: int | str | None = None,
|
|
682
682
|
undo: bool | None = None,
|
|
683
683
|
*,
|
|
@@ -730,7 +730,7 @@ def image_strip_add(
|
|
|
730
730
|
):
|
|
731
731
|
"""Add an image or image sequence to the sequencer
|
|
732
732
|
|
|
733
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
733
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
734
734
|
:type execution_context: int | str | None
|
|
735
735
|
:type undo: bool | None
|
|
736
736
|
:param directory: Directory, Directory of the file
|
|
@@ -845,7 +845,7 @@ def image_strip_add(
|
|
|
845
845
|
"""
|
|
846
846
|
|
|
847
847
|
def images_separate(
|
|
848
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
848
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
849
849
|
execution_context: int | str | None = None,
|
|
850
850
|
undo: bool | None = None,
|
|
851
851
|
*,
|
|
@@ -853,7 +853,7 @@ def images_separate(
|
|
|
853
853
|
):
|
|
854
854
|
"""On image sequence strips, it returns a strip for each image
|
|
855
855
|
|
|
856
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
856
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
857
857
|
:type execution_context: int | str | None
|
|
858
858
|
:type undo: bool | None
|
|
859
859
|
:param length: Length, Length of each frame
|
|
@@ -861,19 +861,19 @@ def images_separate(
|
|
|
861
861
|
"""
|
|
862
862
|
|
|
863
863
|
def lock(
|
|
864
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
864
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
865
865
|
execution_context: int | str | None = None,
|
|
866
866
|
undo: bool | None = None,
|
|
867
867
|
):
|
|
868
868
|
"""Lock strips so they can't be transformed
|
|
869
869
|
|
|
870
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
870
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
871
871
|
:type execution_context: int | str | None
|
|
872
872
|
:type undo: bool | None
|
|
873
873
|
"""
|
|
874
874
|
|
|
875
875
|
def mask_strip_add(
|
|
876
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
876
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
877
877
|
execution_context: int | str | None = None,
|
|
878
878
|
undo: bool | None = None,
|
|
879
879
|
*,
|
|
@@ -886,7 +886,7 @@ def mask_strip_add(
|
|
|
886
886
|
):
|
|
887
887
|
"""Add a mask strip to the sequencer
|
|
888
888
|
|
|
889
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
889
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
890
890
|
:type execution_context: int | str | None
|
|
891
891
|
:type undo: bool | None
|
|
892
892
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
@@ -904,43 +904,43 @@ def mask_strip_add(
|
|
|
904
904
|
"""
|
|
905
905
|
|
|
906
906
|
def meta_make(
|
|
907
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
907
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
908
908
|
execution_context: int | str | None = None,
|
|
909
909
|
undo: bool | None = None,
|
|
910
910
|
):
|
|
911
911
|
"""Group selected strips into a meta-strip
|
|
912
912
|
|
|
913
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
913
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
914
914
|
:type execution_context: int | str | None
|
|
915
915
|
:type undo: bool | None
|
|
916
916
|
"""
|
|
917
917
|
|
|
918
918
|
def meta_separate(
|
|
919
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
919
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
920
920
|
execution_context: int | str | None = None,
|
|
921
921
|
undo: bool | None = None,
|
|
922
922
|
):
|
|
923
923
|
"""Put the contents of a meta-strip back in the sequencer
|
|
924
924
|
|
|
925
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
925
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
926
926
|
:type execution_context: int | str | None
|
|
927
927
|
:type undo: bool | None
|
|
928
928
|
"""
|
|
929
929
|
|
|
930
930
|
def meta_toggle(
|
|
931
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
931
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
932
932
|
execution_context: int | str | None = None,
|
|
933
933
|
undo: bool | None = None,
|
|
934
934
|
):
|
|
935
935
|
"""Toggle a meta-strip (to edit enclosed strips)
|
|
936
936
|
|
|
937
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
937
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
938
938
|
:type execution_context: int | str | None
|
|
939
939
|
:type undo: bool | None
|
|
940
940
|
"""
|
|
941
941
|
|
|
942
942
|
def movie_strip_add(
|
|
943
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
943
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
944
944
|
execution_context: int | str | None = None,
|
|
945
945
|
undo: bool | None = None,
|
|
946
946
|
*,
|
|
@@ -995,7 +995,7 @@ def movie_strip_add(
|
|
|
995
995
|
):
|
|
996
996
|
"""Add a movie strip to the sequencer
|
|
997
997
|
|
|
998
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
998
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
999
999
|
:type execution_context: int | str | None
|
|
1000
1000
|
:type undo: bool | None
|
|
1001
1001
|
:param filepath: File Path, Path to file
|
|
@@ -1114,7 +1114,7 @@ def movie_strip_add(
|
|
|
1114
1114
|
"""
|
|
1115
1115
|
|
|
1116
1116
|
def movieclip_strip_add(
|
|
1117
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1117
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1118
1118
|
execution_context: int | str | None = None,
|
|
1119
1119
|
undo: bool | None = None,
|
|
1120
1120
|
*,
|
|
@@ -1127,7 +1127,7 @@ def movieclip_strip_add(
|
|
|
1127
1127
|
):
|
|
1128
1128
|
"""Add a movieclip strip to the sequencer
|
|
1129
1129
|
|
|
1130
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1130
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1131
1131
|
:type execution_context: int | str | None
|
|
1132
1132
|
:type undo: bool | None
|
|
1133
1133
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
@@ -1145,7 +1145,7 @@ def movieclip_strip_add(
|
|
|
1145
1145
|
"""
|
|
1146
1146
|
|
|
1147
1147
|
def mute(
|
|
1148
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1148
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1149
1149
|
execution_context: int | str | None = None,
|
|
1150
1150
|
undo: bool | None = None,
|
|
1151
1151
|
*,
|
|
@@ -1153,7 +1153,7 @@ def mute(
|
|
|
1153
1153
|
):
|
|
1154
1154
|
"""Mute (un)selected strips
|
|
1155
1155
|
|
|
1156
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1156
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1157
1157
|
:type execution_context: int | str | None
|
|
1158
1158
|
:type undo: bool | None
|
|
1159
1159
|
:param unselected: Unselected, Mute unselected rather than selected strips
|
|
@@ -1161,19 +1161,19 @@ def mute(
|
|
|
1161
1161
|
"""
|
|
1162
1162
|
|
|
1163
1163
|
def offset_clear(
|
|
1164
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1164
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1165
1165
|
execution_context: int | str | None = None,
|
|
1166
1166
|
undo: bool | None = None,
|
|
1167
1167
|
):
|
|
1168
1168
|
"""Clear strip offsets from the start and end frames
|
|
1169
1169
|
|
|
1170
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1170
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1171
1171
|
:type execution_context: int | str | None
|
|
1172
1172
|
:type undo: bool | None
|
|
1173
1173
|
"""
|
|
1174
1174
|
|
|
1175
1175
|
def paste(
|
|
1176
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1176
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1177
1177
|
execution_context: int | str | None = None,
|
|
1178
1178
|
undo: bool | None = None,
|
|
1179
1179
|
*,
|
|
@@ -1181,7 +1181,7 @@ def paste(
|
|
|
1181
1181
|
):
|
|
1182
1182
|
"""Paste strips from the internal clipboard
|
|
1183
1183
|
|
|
1184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1185
1185
|
:type execution_context: int | str | None
|
|
1186
1186
|
:type undo: bool | None
|
|
1187
1187
|
:param keep_offset: Keep Offset, Keep strip offset relative to the current frame when pasting
|
|
@@ -1189,43 +1189,43 @@ def paste(
|
|
|
1189
1189
|
"""
|
|
1190
1190
|
|
|
1191
1191
|
def reassign_inputs(
|
|
1192
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1192
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1193
1193
|
execution_context: int | str | None = None,
|
|
1194
1194
|
undo: bool | None = None,
|
|
1195
1195
|
):
|
|
1196
1196
|
"""Reassign the inputs for the effect strip
|
|
1197
1197
|
|
|
1198
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1198
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1199
1199
|
:type execution_context: int | str | None
|
|
1200
1200
|
:type undo: bool | None
|
|
1201
1201
|
"""
|
|
1202
1202
|
|
|
1203
1203
|
def rebuild_proxy(
|
|
1204
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1204
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1205
1205
|
execution_context: int | str | None = None,
|
|
1206
1206
|
undo: bool | None = None,
|
|
1207
1207
|
):
|
|
1208
1208
|
"""Rebuild all selected proxies and timecode indices using the job system
|
|
1209
1209
|
|
|
1210
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1210
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1211
1211
|
:type execution_context: int | str | None
|
|
1212
1212
|
:type undo: bool | None
|
|
1213
1213
|
"""
|
|
1214
1214
|
|
|
1215
1215
|
def refresh_all(
|
|
1216
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1216
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1217
1217
|
execution_context: int | str | None = None,
|
|
1218
1218
|
undo: bool | None = None,
|
|
1219
1219
|
):
|
|
1220
1220
|
"""Refresh the sequencer editor
|
|
1221
1221
|
|
|
1222
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1222
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1223
1223
|
:type execution_context: int | str | None
|
|
1224
1224
|
:type undo: bool | None
|
|
1225
1225
|
"""
|
|
1226
1226
|
|
|
1227
1227
|
def reload(
|
|
1228
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1228
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1229
1229
|
execution_context: int | str | None = None,
|
|
1230
1230
|
undo: bool | None = None,
|
|
1231
1231
|
*,
|
|
@@ -1233,7 +1233,7 @@ def reload(
|
|
|
1233
1233
|
):
|
|
1234
1234
|
"""Reload strips in the sequencer
|
|
1235
1235
|
|
|
1236
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1236
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1237
1237
|
:type execution_context: int | str | None
|
|
1238
1238
|
:type undo: bool | None
|
|
1239
1239
|
:param adjust_length: Adjust Length, Adjust length of strips to their data length
|
|
@@ -1241,31 +1241,31 @@ def reload(
|
|
|
1241
1241
|
"""
|
|
1242
1242
|
|
|
1243
1243
|
def rename_channel(
|
|
1244
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1244
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1245
1245
|
execution_context: int | str | None = None,
|
|
1246
1246
|
undo: bool | None = None,
|
|
1247
1247
|
):
|
|
1248
1248
|
"""Undocumented, consider contributing.
|
|
1249
1249
|
|
|
1250
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1250
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1251
1251
|
:type execution_context: int | str | None
|
|
1252
1252
|
:type undo: bool | None
|
|
1253
1253
|
"""
|
|
1254
1254
|
|
|
1255
1255
|
def rendersize(
|
|
1256
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1256
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1257
1257
|
execution_context: int | str | None = None,
|
|
1258
1258
|
undo: bool | None = None,
|
|
1259
1259
|
):
|
|
1260
1260
|
"""Set render size and aspect from active sequence
|
|
1261
1261
|
|
|
1262
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1262
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1263
1263
|
:type execution_context: int | str | None
|
|
1264
1264
|
:type undo: bool | None
|
|
1265
1265
|
"""
|
|
1266
1266
|
|
|
1267
1267
|
def retiming_add_freeze_frame_slide(
|
|
1268
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1268
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1269
1269
|
execution_context: int | str | None = None,
|
|
1270
1270
|
undo: bool | None = None,
|
|
1271
1271
|
*,
|
|
@@ -1274,7 +1274,7 @@ def retiming_add_freeze_frame_slide(
|
|
|
1274
1274
|
):
|
|
1275
1275
|
"""Add freeze frame and move it
|
|
1276
1276
|
|
|
1277
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1277
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1278
1278
|
:type execution_context: int | str | None
|
|
1279
1279
|
:type undo: bool | None
|
|
1280
1280
|
:param SEQUENCER_OT_retiming_freeze_frame_add: Add Freeze Frame, Add freeze frame
|
|
@@ -1284,7 +1284,7 @@ def retiming_add_freeze_frame_slide(
|
|
|
1284
1284
|
"""
|
|
1285
1285
|
|
|
1286
1286
|
def retiming_add_transition_slide(
|
|
1287
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1287
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1288
1288
|
execution_context: int | str | None = None,
|
|
1289
1289
|
undo: bool | None = None,
|
|
1290
1290
|
*,
|
|
@@ -1293,7 +1293,7 @@ def retiming_add_transition_slide(
|
|
|
1293
1293
|
):
|
|
1294
1294
|
"""Add smooth transition between 2 retimed segments and change its duration
|
|
1295
1295
|
|
|
1296
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1296
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1297
1297
|
:type execution_context: int | str | None
|
|
1298
1298
|
:type undo: bool | None
|
|
1299
1299
|
:param SEQUENCER_OT_retiming_transition_add: Add Speed Transition, Add smooth transition between 2 retimed segments
|
|
@@ -1303,7 +1303,7 @@ def retiming_add_transition_slide(
|
|
|
1303
1303
|
"""
|
|
1304
1304
|
|
|
1305
1305
|
def retiming_freeze_frame_add(
|
|
1306
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1306
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1307
1307
|
execution_context: int | str | None = None,
|
|
1308
1308
|
undo: bool | None = None,
|
|
1309
1309
|
*,
|
|
@@ -1311,7 +1311,7 @@ def retiming_freeze_frame_add(
|
|
|
1311
1311
|
):
|
|
1312
1312
|
"""Add freeze frame
|
|
1313
1313
|
|
|
1314
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1314
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1315
1315
|
:type execution_context: int | str | None
|
|
1316
1316
|
:type undo: bool | None
|
|
1317
1317
|
:param duration: Duration, Duration of freeze frame segment
|
|
@@ -1319,7 +1319,7 @@ def retiming_freeze_frame_add(
|
|
|
1319
1319
|
"""
|
|
1320
1320
|
|
|
1321
1321
|
def retiming_key_add(
|
|
1322
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1322
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1323
1323
|
execution_context: int | str | None = None,
|
|
1324
1324
|
undo: bool | None = None,
|
|
1325
1325
|
*,
|
|
@@ -1327,7 +1327,7 @@ def retiming_key_add(
|
|
|
1327
1327
|
):
|
|
1328
1328
|
"""Add retiming Key
|
|
1329
1329
|
|
|
1330
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1330
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1331
1331
|
:type execution_context: int | str | None
|
|
1332
1332
|
:type undo: bool | None
|
|
1333
1333
|
:param timeline_frame: Timeline Frame, Frame where key will be added
|
|
@@ -1335,31 +1335,31 @@ def retiming_key_add(
|
|
|
1335
1335
|
"""
|
|
1336
1336
|
|
|
1337
1337
|
def retiming_key_delete(
|
|
1338
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1338
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1339
1339
|
execution_context: int | str | None = None,
|
|
1340
1340
|
undo: bool | None = None,
|
|
1341
1341
|
):
|
|
1342
1342
|
"""Delete selected strips from the sequencer
|
|
1343
1343
|
|
|
1344
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1344
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1345
1345
|
:type execution_context: int | str | None
|
|
1346
1346
|
:type undo: bool | None
|
|
1347
1347
|
"""
|
|
1348
1348
|
|
|
1349
1349
|
def retiming_reset(
|
|
1350
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1350
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1351
1351
|
execution_context: int | str | None = None,
|
|
1352
1352
|
undo: bool | None = None,
|
|
1353
1353
|
):
|
|
1354
1354
|
"""Reset strip retiming
|
|
1355
1355
|
|
|
1356
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1356
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1357
1357
|
:type execution_context: int | str | None
|
|
1358
1358
|
:type undo: bool | None
|
|
1359
1359
|
"""
|
|
1360
1360
|
|
|
1361
1361
|
def retiming_segment_speed_set(
|
|
1362
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1362
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1363
1363
|
execution_context: int | str | None = None,
|
|
1364
1364
|
undo: bool | None = None,
|
|
1365
1365
|
*,
|
|
@@ -1368,7 +1368,7 @@ def retiming_segment_speed_set(
|
|
|
1368
1368
|
):
|
|
1369
1369
|
"""Set speed of retimed segment
|
|
1370
1370
|
|
|
1371
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1371
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1372
1372
|
:type execution_context: int | str | None
|
|
1373
1373
|
:type undo: bool | None
|
|
1374
1374
|
:param speed: Speed, New speed of retimed segment
|
|
@@ -1378,19 +1378,19 @@ def retiming_segment_speed_set(
|
|
|
1378
1378
|
"""
|
|
1379
1379
|
|
|
1380
1380
|
def retiming_show(
|
|
1381
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1381
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1382
1382
|
execution_context: int | str | None = None,
|
|
1383
1383
|
undo: bool | None = None,
|
|
1384
1384
|
):
|
|
1385
1385
|
"""Show retiming keys in selected strips
|
|
1386
1386
|
|
|
1387
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1387
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1388
1388
|
:type execution_context: int | str | None
|
|
1389
1389
|
:type undo: bool | None
|
|
1390
1390
|
"""
|
|
1391
1391
|
|
|
1392
1392
|
def retiming_transition_add(
|
|
1393
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1393
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1394
1394
|
execution_context: int | str | None = None,
|
|
1395
1395
|
undo: bool | None = None,
|
|
1396
1396
|
*,
|
|
@@ -1398,7 +1398,7 @@ def retiming_transition_add(
|
|
|
1398
1398
|
):
|
|
1399
1399
|
"""Add smooth transition between 2 retimed segments
|
|
1400
1400
|
|
|
1401
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1401
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1402
1402
|
:type execution_context: int | str | None
|
|
1403
1403
|
:type undo: bool | None
|
|
1404
1404
|
:param duration: Duration, Duration of freeze frame segment
|
|
@@ -1406,7 +1406,7 @@ def retiming_transition_add(
|
|
|
1406
1406
|
"""
|
|
1407
1407
|
|
|
1408
1408
|
def sample(
|
|
1409
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1409
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1410
1410
|
execution_context: int | str | None = None,
|
|
1411
1411
|
undo: bool | None = None,
|
|
1412
1412
|
*,
|
|
@@ -1414,7 +1414,7 @@ def sample(
|
|
|
1414
1414
|
):
|
|
1415
1415
|
"""Use mouse to sample color in current frame
|
|
1416
1416
|
|
|
1417
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1417
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1418
1418
|
:type execution_context: int | str | None
|
|
1419
1419
|
:type undo: bool | None
|
|
1420
1420
|
:param size: Sample Size
|
|
@@ -1422,19 +1422,19 @@ def sample(
|
|
|
1422
1422
|
"""
|
|
1423
1423
|
|
|
1424
1424
|
def scene_frame_range_update(
|
|
1425
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1425
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1426
1426
|
execution_context: int | str | None = None,
|
|
1427
1427
|
undo: bool | None = None,
|
|
1428
1428
|
):
|
|
1429
1429
|
"""Update frame range of scene strip
|
|
1430
1430
|
|
|
1431
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1431
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1432
1432
|
:type execution_context: int | str | None
|
|
1433
1433
|
:type undo: bool | None
|
|
1434
1434
|
"""
|
|
1435
1435
|
|
|
1436
1436
|
def scene_strip_add(
|
|
1437
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1437
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1438
1438
|
execution_context: int | str | None = None,
|
|
1439
1439
|
undo: bool | None = None,
|
|
1440
1440
|
*,
|
|
@@ -1447,7 +1447,7 @@ def scene_strip_add(
|
|
|
1447
1447
|
):
|
|
1448
1448
|
"""Add a strip to the sequencer using a Blender scene as a source
|
|
1449
1449
|
|
|
1450
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1450
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1451
1451
|
:type execution_context: int | str | None
|
|
1452
1452
|
:type undo: bool | None
|
|
1453
1453
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
@@ -1465,7 +1465,7 @@ def scene_strip_add(
|
|
|
1465
1465
|
"""
|
|
1466
1466
|
|
|
1467
1467
|
def scene_strip_add_new(
|
|
1468
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1468
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1469
1469
|
execution_context: int | str | None = None,
|
|
1470
1470
|
undo: bool | None = None,
|
|
1471
1471
|
*,
|
|
@@ -1478,7 +1478,7 @@ def scene_strip_add_new(
|
|
|
1478
1478
|
):
|
|
1479
1479
|
"""Create a new Strip and assign a new Scene as source
|
|
1480
1480
|
|
|
1481
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1481
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1482
1482
|
:type execution_context: int | str | None
|
|
1483
1483
|
:type undo: bool | None
|
|
1484
1484
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
@@ -1508,7 +1508,7 @@ def scene_strip_add_new(
|
|
|
1508
1508
|
"""
|
|
1509
1509
|
|
|
1510
1510
|
def select(
|
|
1511
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1511
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1512
1512
|
execution_context: int | str | None = None,
|
|
1513
1513
|
undo: bool | None = None,
|
|
1514
1514
|
*,
|
|
@@ -1528,7 +1528,7 @@ def select(
|
|
|
1528
1528
|
):
|
|
1529
1529
|
"""Select a strip (last selected becomes the "active strip")
|
|
1530
1530
|
|
|
1531
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1531
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1532
1532
|
:type execution_context: int | str | None
|
|
1533
1533
|
:type undo: bool | None
|
|
1534
1534
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -1560,7 +1560,7 @@ def select(
|
|
|
1560
1560
|
"""
|
|
1561
1561
|
|
|
1562
1562
|
def select_all(
|
|
1563
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1563
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1564
1564
|
execution_context: int | str | None = None,
|
|
1565
1565
|
undo: bool | None = None,
|
|
1566
1566
|
*,
|
|
@@ -1568,7 +1568,7 @@ def select_all(
|
|
|
1568
1568
|
):
|
|
1569
1569
|
"""Select or deselect all strips
|
|
1570
1570
|
|
|
1571
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1571
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1572
1572
|
:type execution_context: int | str | None
|
|
1573
1573
|
:type undo: bool | None
|
|
1574
1574
|
:param action: Action, Selection action to execute
|
|
@@ -1588,7 +1588,7 @@ def select_all(
|
|
|
1588
1588
|
"""
|
|
1589
1589
|
|
|
1590
1590
|
def select_box(
|
|
1591
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1591
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1592
1592
|
execution_context: int | str | None = None,
|
|
1593
1593
|
undo: bool | None = None,
|
|
1594
1594
|
*,
|
|
@@ -1604,7 +1604,7 @@ def select_box(
|
|
|
1604
1604
|
):
|
|
1605
1605
|
"""Select strips using box selection
|
|
1606
1606
|
|
|
1607
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1607
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1608
1608
|
:type execution_context: int | str | None
|
|
1609
1609
|
:type undo: bool | None
|
|
1610
1610
|
:param xmin: X Min
|
|
@@ -1637,7 +1637,7 @@ def select_box(
|
|
|
1637
1637
|
"""
|
|
1638
1638
|
|
|
1639
1639
|
def select_grouped(
|
|
1640
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1640
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1641
1641
|
execution_context: int | str | None = None,
|
|
1642
1642
|
undo: bool | None = None,
|
|
1643
1643
|
*,
|
|
@@ -1650,7 +1650,7 @@ def select_grouped(
|
|
|
1650
1650
|
):
|
|
1651
1651
|
"""Select all strips grouped by various properties
|
|
1652
1652
|
|
|
1653
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1653
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1654
1654
|
:type execution_context: int | str | None
|
|
1655
1655
|
:type undo: bool | None
|
|
1656
1656
|
:param type: Type
|
|
@@ -1683,7 +1683,7 @@ def select_grouped(
|
|
|
1683
1683
|
"""
|
|
1684
1684
|
|
|
1685
1685
|
def select_handle(
|
|
1686
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1686
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1687
1687
|
execution_context: int | str | None = None,
|
|
1688
1688
|
undo: bool | None = None,
|
|
1689
1689
|
*,
|
|
@@ -1694,7 +1694,7 @@ def select_handle(
|
|
|
1694
1694
|
):
|
|
1695
1695
|
"""Select strip handle
|
|
1696
1696
|
|
|
1697
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1697
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1698
1698
|
:type execution_context: int | str | None
|
|
1699
1699
|
:type undo: bool | None
|
|
1700
1700
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -1708,7 +1708,7 @@ def select_handle(
|
|
|
1708
1708
|
"""
|
|
1709
1709
|
|
|
1710
1710
|
def select_handles(
|
|
1711
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1711
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1712
1712
|
execution_context: int | str | None = None,
|
|
1713
1713
|
undo: bool | None = None,
|
|
1714
1714
|
*,
|
|
@@ -1719,7 +1719,7 @@ def select_handles(
|
|
|
1719
1719
|
):
|
|
1720
1720
|
"""Select gizmo handles on the sides of the selected strip
|
|
1721
1721
|
|
|
1722
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1722
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1723
1723
|
:type execution_context: int | str | None
|
|
1724
1724
|
:type undo: bool | None
|
|
1725
1725
|
:param side: Side, The side of the handle that is selected
|
|
@@ -1727,31 +1727,31 @@ def select_handles(
|
|
|
1727
1727
|
"""
|
|
1728
1728
|
|
|
1729
1729
|
def select_less(
|
|
1730
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1730
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1731
1731
|
execution_context: int | str | None = None,
|
|
1732
1732
|
undo: bool | None = None,
|
|
1733
1733
|
):
|
|
1734
1734
|
"""Shrink the current selection of adjacent selected strips
|
|
1735
1735
|
|
|
1736
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1736
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1737
1737
|
:type execution_context: int | str | None
|
|
1738
1738
|
:type undo: bool | None
|
|
1739
1739
|
"""
|
|
1740
1740
|
|
|
1741
1741
|
def select_linked(
|
|
1742
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1742
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1743
1743
|
execution_context: int | str | None = None,
|
|
1744
1744
|
undo: bool | None = None,
|
|
1745
1745
|
):
|
|
1746
1746
|
"""Select all strips adjacent to the current selection
|
|
1747
1747
|
|
|
1748
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1748
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1749
1749
|
:type execution_context: int | str | None
|
|
1750
1750
|
:type undo: bool | None
|
|
1751
1751
|
"""
|
|
1752
1752
|
|
|
1753
1753
|
def select_linked_pick(
|
|
1754
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1754
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1755
1755
|
execution_context: int | str | None = None,
|
|
1756
1756
|
undo: bool | None = None,
|
|
1757
1757
|
*,
|
|
@@ -1759,7 +1759,7 @@ def select_linked_pick(
|
|
|
1759
1759
|
):
|
|
1760
1760
|
"""Select a chain of linked strips nearest to the mouse pointer
|
|
1761
1761
|
|
|
1762
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1762
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1763
1763
|
:type execution_context: int | str | None
|
|
1764
1764
|
:type undo: bool | None
|
|
1765
1765
|
:param extend: Extend, Extend the selection
|
|
@@ -1767,19 +1767,19 @@ def select_linked_pick(
|
|
|
1767
1767
|
"""
|
|
1768
1768
|
|
|
1769
1769
|
def select_more(
|
|
1770
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1770
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1771
1771
|
execution_context: int | str | None = None,
|
|
1772
1772
|
undo: bool | None = None,
|
|
1773
1773
|
):
|
|
1774
1774
|
"""Select more strips adjacent to the current selection
|
|
1775
1775
|
|
|
1776
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1776
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1777
1777
|
:type execution_context: int | str | None
|
|
1778
1778
|
:type undo: bool | None
|
|
1779
1779
|
"""
|
|
1780
1780
|
|
|
1781
1781
|
def select_side(
|
|
1782
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1782
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1783
1783
|
execution_context: int | str | None = None,
|
|
1784
1784
|
undo: bool | None = None,
|
|
1785
1785
|
*,
|
|
@@ -1787,7 +1787,7 @@ def select_side(
|
|
|
1787
1787
|
):
|
|
1788
1788
|
"""Select strips on the nominated side of the selected strips
|
|
1789
1789
|
|
|
1790
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1790
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1791
1791
|
:type execution_context: int | str | None
|
|
1792
1792
|
:type undo: bool | None
|
|
1793
1793
|
:param side: Side, The side to which the selection is applied
|
|
@@ -1795,7 +1795,7 @@ def select_side(
|
|
|
1795
1795
|
"""
|
|
1796
1796
|
|
|
1797
1797
|
def select_side_of_frame(
|
|
1798
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1798
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1799
1799
|
execution_context: int | str | None = None,
|
|
1800
1800
|
undo: bool | None = None,
|
|
1801
1801
|
*,
|
|
@@ -1804,7 +1804,7 @@ def select_side_of_frame(
|
|
|
1804
1804
|
):
|
|
1805
1805
|
"""Select strips relative to the current frame
|
|
1806
1806
|
|
|
1807
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1807
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1808
1808
|
:type execution_context: int | str | None
|
|
1809
1809
|
:type undo: bool | None
|
|
1810
1810
|
:param extend: Extend, Extend the selection
|
|
@@ -1823,7 +1823,7 @@ def select_side_of_frame(
|
|
|
1823
1823
|
"""
|
|
1824
1824
|
|
|
1825
1825
|
def set_range_to_strips(
|
|
1826
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1826
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1827
1827
|
execution_context: int | str | None = None,
|
|
1828
1828
|
undo: bool | None = None,
|
|
1829
1829
|
*,
|
|
@@ -1831,7 +1831,7 @@ def set_range_to_strips(
|
|
|
1831
1831
|
):
|
|
1832
1832
|
"""Set the frame range to the selected strips start and end
|
|
1833
1833
|
|
|
1834
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1834
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1835
1835
|
:type execution_context: int | str | None
|
|
1836
1836
|
:type undo: bool | None
|
|
1837
1837
|
:param preview: Preview, Set the preview range instead
|
|
@@ -1839,7 +1839,7 @@ def set_range_to_strips(
|
|
|
1839
1839
|
"""
|
|
1840
1840
|
|
|
1841
1841
|
def slip(
|
|
1842
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1842
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1843
1843
|
execution_context: int | str | None = None,
|
|
1844
1844
|
undo: bool | None = None,
|
|
1845
1845
|
*,
|
|
@@ -1847,7 +1847,7 @@ def slip(
|
|
|
1847
1847
|
):
|
|
1848
1848
|
"""Slip the contents of selected strips
|
|
1849
1849
|
|
|
1850
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1850
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1851
1851
|
:type execution_context: int | str | None
|
|
1852
1852
|
:type undo: bool | None
|
|
1853
1853
|
:param offset: Offset, Offset to the data of the strip
|
|
@@ -1855,7 +1855,7 @@ def slip(
|
|
|
1855
1855
|
"""
|
|
1856
1856
|
|
|
1857
1857
|
def snap(
|
|
1858
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1858
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1859
1859
|
execution_context: int | str | None = None,
|
|
1860
1860
|
undo: bool | None = None,
|
|
1861
1861
|
*,
|
|
@@ -1863,7 +1863,7 @@ def snap(
|
|
|
1863
1863
|
):
|
|
1864
1864
|
"""Frame where selected strips will be snapped
|
|
1865
1865
|
|
|
1866
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1866
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1867
1867
|
:type execution_context: int | str | None
|
|
1868
1868
|
:type undo: bool | None
|
|
1869
1869
|
:param frame: Frame, Frame where selected strips will be snapped
|
|
@@ -1871,7 +1871,7 @@ def snap(
|
|
|
1871
1871
|
"""
|
|
1872
1872
|
|
|
1873
1873
|
def sound_strip_add(
|
|
1874
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1874
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1875
1875
|
execution_context: int | str | None = None,
|
|
1876
1876
|
undo: bool | None = None,
|
|
1877
1877
|
*,
|
|
@@ -1921,7 +1921,7 @@ def sound_strip_add(
|
|
|
1921
1921
|
):
|
|
1922
1922
|
"""Add a sound strip to the sequencer
|
|
1923
1923
|
|
|
1924
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1924
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1925
1925
|
:type execution_context: int | str | None
|
|
1926
1926
|
:type undo: bool | None
|
|
1927
1927
|
:param filepath: File Path, Path to file
|
|
@@ -2018,7 +2018,7 @@ def sound_strip_add(
|
|
|
2018
2018
|
"""
|
|
2019
2019
|
|
|
2020
2020
|
def split(
|
|
2021
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2021
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2022
2022
|
execution_context: int | str | None = None,
|
|
2023
2023
|
undo: bool | None = None,
|
|
2024
2024
|
*,
|
|
@@ -2032,7 +2032,7 @@ def split(
|
|
|
2032
2032
|
):
|
|
2033
2033
|
"""Split the selected strips in two
|
|
2034
2034
|
|
|
2035
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2035
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2036
2036
|
:type execution_context: int | str | None
|
|
2037
2037
|
:type undo: bool | None
|
|
2038
2038
|
:param frame: Frame, Frame where selected strips will be split
|
|
@@ -2050,7 +2050,7 @@ def split(
|
|
|
2050
2050
|
"""
|
|
2051
2051
|
|
|
2052
2052
|
def split_multicam(
|
|
2053
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2053
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2054
2054
|
execution_context: int | str | None = None,
|
|
2055
2055
|
undo: bool | None = None,
|
|
2056
2056
|
*,
|
|
@@ -2058,7 +2058,7 @@ def split_multicam(
|
|
|
2058
2058
|
):
|
|
2059
2059
|
"""Split multicam strip and select camera
|
|
2060
2060
|
|
|
2061
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2061
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2062
2062
|
:type execution_context: int | str | None
|
|
2063
2063
|
:type undo: bool | None
|
|
2064
2064
|
:param camera: Camera
|
|
@@ -2066,7 +2066,7 @@ def split_multicam(
|
|
|
2066
2066
|
"""
|
|
2067
2067
|
|
|
2068
2068
|
def strip_color_tag_set(
|
|
2069
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2069
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2070
2070
|
execution_context: int | str | None = None,
|
|
2071
2071
|
undo: bool | None = None,
|
|
2072
2072
|
*,
|
|
@@ -2074,7 +2074,7 @@ def strip_color_tag_set(
|
|
|
2074
2074
|
):
|
|
2075
2075
|
"""Set a color tag for the selected strips
|
|
2076
2076
|
|
|
2077
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2077
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2078
2078
|
:type execution_context: int | str | None
|
|
2079
2079
|
:type undo: bool | None
|
|
2080
2080
|
:param color: Color Tag
|
|
@@ -2082,7 +2082,7 @@ def strip_color_tag_set(
|
|
|
2082
2082
|
"""
|
|
2083
2083
|
|
|
2084
2084
|
def strip_jump(
|
|
2085
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2085
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2086
2086
|
execution_context: int | str | None = None,
|
|
2087
2087
|
undo: bool | None = None,
|
|
2088
2088
|
*,
|
|
@@ -2091,7 +2091,7 @@ def strip_jump(
|
|
|
2091
2091
|
):
|
|
2092
2092
|
"""Move frame to previous edit point
|
|
2093
2093
|
|
|
2094
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2094
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2095
2095
|
:type execution_context: int | str | None
|
|
2096
2096
|
:type undo: bool | None
|
|
2097
2097
|
:param next: Next Strip
|
|
@@ -2101,7 +2101,7 @@ def strip_jump(
|
|
|
2101
2101
|
"""
|
|
2102
2102
|
|
|
2103
2103
|
def strip_modifier_add(
|
|
2104
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2104
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2105
2105
|
execution_context: int | str | None = None,
|
|
2106
2106
|
undo: bool | None = None,
|
|
2107
2107
|
*,
|
|
@@ -2109,7 +2109,7 @@ def strip_modifier_add(
|
|
|
2109
2109
|
):
|
|
2110
2110
|
"""Add a modifier to the strip
|
|
2111
2111
|
|
|
2112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2112
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2113
2113
|
:type execution_context: int | str | None
|
|
2114
2114
|
:type undo: bool | None
|
|
2115
2115
|
:param type: Type
|
|
@@ -2117,7 +2117,7 @@ def strip_modifier_add(
|
|
|
2117
2117
|
"""
|
|
2118
2118
|
|
|
2119
2119
|
def strip_modifier_copy(
|
|
2120
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2120
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2121
2121
|
execution_context: int | str | None = None,
|
|
2122
2122
|
undo: bool | None = None,
|
|
2123
2123
|
*,
|
|
@@ -2125,7 +2125,7 @@ def strip_modifier_copy(
|
|
|
2125
2125
|
):
|
|
2126
2126
|
"""Copy modifiers of the active strip to all selected strips
|
|
2127
2127
|
|
|
2128
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2128
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2129
2129
|
:type execution_context: int | str | None
|
|
2130
2130
|
:type undo: bool | None
|
|
2131
2131
|
:param type: Type
|
|
@@ -2139,7 +2139,7 @@ def strip_modifier_copy(
|
|
|
2139
2139
|
"""
|
|
2140
2140
|
|
|
2141
2141
|
def strip_modifier_equalizer_redefine(
|
|
2142
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2142
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2143
2143
|
execution_context: int | str | None = None,
|
|
2144
2144
|
undo: bool | None = None,
|
|
2145
2145
|
*,
|
|
@@ -2148,7 +2148,7 @@ def strip_modifier_equalizer_redefine(
|
|
|
2148
2148
|
):
|
|
2149
2149
|
"""Redefine equalizer graphs
|
|
2150
2150
|
|
|
2151
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2151
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2152
2152
|
:type execution_context: int | str | None
|
|
2153
2153
|
:type undo: bool | None
|
|
2154
2154
|
:param graphs: Graphs, Number of graphs
|
|
@@ -2167,7 +2167,7 @@ def strip_modifier_equalizer_redefine(
|
|
|
2167
2167
|
"""
|
|
2168
2168
|
|
|
2169
2169
|
def strip_modifier_move(
|
|
2170
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2170
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2171
2171
|
execution_context: int | str | None = None,
|
|
2172
2172
|
undo: bool | None = None,
|
|
2173
2173
|
*,
|
|
@@ -2176,7 +2176,7 @@ def strip_modifier_move(
|
|
|
2176
2176
|
):
|
|
2177
2177
|
"""Move modifier up and down in the stack
|
|
2178
2178
|
|
|
2179
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2179
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2180
2180
|
:type execution_context: int | str | None
|
|
2181
2181
|
:type undo: bool | None
|
|
2182
2182
|
:param name: Name, Name of modifier to remove
|
|
@@ -2192,7 +2192,7 @@ def strip_modifier_move(
|
|
|
2192
2192
|
"""
|
|
2193
2193
|
|
|
2194
2194
|
def strip_modifier_remove(
|
|
2195
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2195
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2196
2196
|
execution_context: int | str | None = None,
|
|
2197
2197
|
undo: bool | None = None,
|
|
2198
2198
|
*,
|
|
@@ -2200,7 +2200,7 @@ def strip_modifier_remove(
|
|
|
2200
2200
|
):
|
|
2201
2201
|
"""Remove a modifier from the strip
|
|
2202
2202
|
|
|
2203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2203
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2204
2204
|
:type execution_context: int | str | None
|
|
2205
2205
|
:type undo: bool | None
|
|
2206
2206
|
:param name: Name, Name of modifier to remove
|
|
@@ -2208,7 +2208,7 @@ def strip_modifier_remove(
|
|
|
2208
2208
|
"""
|
|
2209
2209
|
|
|
2210
2210
|
def strip_transform_clear(
|
|
2211
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2211
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2212
2212
|
execution_context: int | str | None = None,
|
|
2213
2213
|
undo: bool | None = None,
|
|
2214
2214
|
*,
|
|
@@ -2216,7 +2216,7 @@ def strip_transform_clear(
|
|
|
2216
2216
|
):
|
|
2217
2217
|
"""Reset image transformation to default value
|
|
2218
2218
|
|
|
2219
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2219
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2220
2220
|
:type execution_context: int | str | None
|
|
2221
2221
|
:type undo: bool | None
|
|
2222
2222
|
:param property: Property, Strip transform property to be reset
|
|
@@ -2236,7 +2236,7 @@ def strip_transform_clear(
|
|
|
2236
2236
|
"""
|
|
2237
2237
|
|
|
2238
2238
|
def strip_transform_fit(
|
|
2239
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2239
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2240
2240
|
execution_context: int | str | None = None,
|
|
2241
2241
|
undo: bool | None = None,
|
|
2242
2242
|
*,
|
|
@@ -2244,7 +2244,7 @@ def strip_transform_fit(
|
|
|
2244
2244
|
):
|
|
2245
2245
|
"""Undocumented, consider contributing.
|
|
2246
2246
|
|
|
2247
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2247
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2248
2248
|
:type execution_context: int | str | None
|
|
2249
2249
|
:type undo: bool | None
|
|
2250
2250
|
:param fit_method: Fit Method, Scale fit fit_method
|
|
@@ -2261,7 +2261,7 @@ def strip_transform_fit(
|
|
|
2261
2261
|
"""
|
|
2262
2262
|
|
|
2263
2263
|
def swap(
|
|
2264
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2264
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2265
2265
|
execution_context: int | str | None = None,
|
|
2266
2266
|
undo: bool | None = None,
|
|
2267
2267
|
*,
|
|
@@ -2269,7 +2269,7 @@ def swap(
|
|
|
2269
2269
|
):
|
|
2270
2270
|
"""Swap active strip with strip to the right or left
|
|
2271
2271
|
|
|
2272
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2272
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2273
2273
|
:type execution_context: int | str | None
|
|
2274
2274
|
:type undo: bool | None
|
|
2275
2275
|
:param side: Side, Side of the strip to swap
|
|
@@ -2277,43 +2277,43 @@ def swap(
|
|
|
2277
2277
|
"""
|
|
2278
2278
|
|
|
2279
2279
|
def swap_data(
|
|
2280
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2280
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2281
2281
|
execution_context: int | str | None = None,
|
|
2282
2282
|
undo: bool | None = None,
|
|
2283
2283
|
):
|
|
2284
2284
|
"""Swap 2 sequencer strips
|
|
2285
2285
|
|
|
2286
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2286
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2287
2287
|
:type execution_context: int | str | None
|
|
2288
2288
|
:type undo: bool | None
|
|
2289
2289
|
"""
|
|
2290
2290
|
|
|
2291
2291
|
def swap_inputs(
|
|
2292
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2292
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2293
2293
|
execution_context: int | str | None = None,
|
|
2294
2294
|
undo: bool | None = None,
|
|
2295
2295
|
):
|
|
2296
2296
|
"""Swap the two inputs of the effect strip
|
|
2297
2297
|
|
|
2298
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2298
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2299
2299
|
:type execution_context: int | str | None
|
|
2300
2300
|
:type undo: bool | None
|
|
2301
2301
|
"""
|
|
2302
2302
|
|
|
2303
2303
|
def unlock(
|
|
2304
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2304
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2305
2305
|
execution_context: int | str | None = None,
|
|
2306
2306
|
undo: bool | None = None,
|
|
2307
2307
|
):
|
|
2308
2308
|
"""Unlock strips so they can be transformed
|
|
2309
2309
|
|
|
2310
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2310
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2311
2311
|
:type execution_context: int | str | None
|
|
2312
2312
|
:type undo: bool | None
|
|
2313
2313
|
"""
|
|
2314
2314
|
|
|
2315
2315
|
def unmute(
|
|
2316
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2316
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2317
2317
|
execution_context: int | str | None = None,
|
|
2318
2318
|
undo: bool | None = None,
|
|
2319
2319
|
*,
|
|
@@ -2321,7 +2321,7 @@ def unmute(
|
|
|
2321
2321
|
):
|
|
2322
2322
|
"""Unmute (un)selected strips
|
|
2323
2323
|
|
|
2324
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2324
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2325
2325
|
:type execution_context: int | str | None
|
|
2326
2326
|
:type undo: bool | None
|
|
2327
2327
|
:param unselected: Unselected, Unmute unselected rather than selected strips
|
|
@@ -2329,43 +2329,43 @@ def unmute(
|
|
|
2329
2329
|
"""
|
|
2330
2330
|
|
|
2331
2331
|
def view_all(
|
|
2332
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2332
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2333
2333
|
execution_context: int | str | None = None,
|
|
2334
2334
|
undo: bool | None = None,
|
|
2335
2335
|
):
|
|
2336
2336
|
"""View all the strips in the sequencer
|
|
2337
2337
|
|
|
2338
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2338
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2339
2339
|
:type execution_context: int | str | None
|
|
2340
2340
|
:type undo: bool | None
|
|
2341
2341
|
"""
|
|
2342
2342
|
|
|
2343
2343
|
def view_all_preview(
|
|
2344
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2344
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2345
2345
|
execution_context: int | str | None = None,
|
|
2346
2346
|
undo: bool | None = None,
|
|
2347
2347
|
):
|
|
2348
2348
|
"""Zoom preview to fit in the area
|
|
2349
2349
|
|
|
2350
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2350
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2351
2351
|
:type execution_context: int | str | None
|
|
2352
2352
|
:type undo: bool | None
|
|
2353
2353
|
"""
|
|
2354
2354
|
|
|
2355
2355
|
def view_frame(
|
|
2356
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2356
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2357
2357
|
execution_context: int | str | None = None,
|
|
2358
2358
|
undo: bool | None = None,
|
|
2359
2359
|
):
|
|
2360
2360
|
"""Move the view to the current frame
|
|
2361
2361
|
|
|
2362
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2362
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2363
2363
|
:type execution_context: int | str | None
|
|
2364
2364
|
:type undo: bool | None
|
|
2365
2365
|
"""
|
|
2366
2366
|
|
|
2367
2367
|
def view_ghost_border(
|
|
2368
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2368
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2369
2369
|
execution_context: int | str | None = None,
|
|
2370
2370
|
undo: bool | None = None,
|
|
2371
2371
|
*,
|
|
@@ -2377,7 +2377,7 @@ def view_ghost_border(
|
|
|
2377
2377
|
):
|
|
2378
2378
|
"""Set the boundaries of the border used for offset view
|
|
2379
2379
|
|
|
2380
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2380
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2381
2381
|
:type execution_context: int | str | None
|
|
2382
2382
|
:type undo: bool | None
|
|
2383
2383
|
:param xmin: X Min
|
|
@@ -2393,19 +2393,19 @@ def view_ghost_border(
|
|
|
2393
2393
|
"""
|
|
2394
2394
|
|
|
2395
2395
|
def view_selected(
|
|
2396
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2396
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2397
2397
|
execution_context: int | str | None = None,
|
|
2398
2398
|
undo: bool | None = None,
|
|
2399
2399
|
):
|
|
2400
2400
|
"""Zoom the sequencer on the selected strips
|
|
2401
2401
|
|
|
2402
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2402
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2403
2403
|
:type execution_context: int | str | None
|
|
2404
2404
|
:type undo: bool | None
|
|
2405
2405
|
"""
|
|
2406
2406
|
|
|
2407
2407
|
def view_zoom_ratio(
|
|
2408
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
2408
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2409
2409
|
execution_context: int | str | None = None,
|
|
2410
2410
|
undo: bool | None = None,
|
|
2411
2411
|
*,
|
|
@@ -2413,7 +2413,7 @@ def view_zoom_ratio(
|
|
|
2413
2413
|
):
|
|
2414
2414
|
"""Change zoom ratio of sequencer preview
|
|
2415
2415
|
|
|
2416
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2416
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2417
2417
|
:type execution_context: int | str | None
|
|
2418
2418
|
:type undo: bool | None
|
|
2419
2419
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|