fake-bge-module 20250104__py3-none-any.whl → 20250201__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.
- addon_utils/__init__.pyi +11 -6
- aud/__init__.pyi +4 -0
- bge/types/__init__.pyi +66 -27
- bgl/__init__.pyi +2 -2
- bgui/image/__init__.pyi +3 -1
- bgui/system/__init__.pyi +12 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
- bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
- bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
- bl_operators/node/__init__.pyi +78 -0
- bl_ui/anim/__init__.pyi +6 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_shader/__init__.pyi +0 -1
- bl_ui/node_add_menu_texture/__init__.pyi +1 -0
- bl_ui/properties_data_camera/__init__.pyi +0 -2
- bl_ui/properties_mask_common/__init__.pyi +17 -0
- bl_ui/properties_material_gpencil/__init__.pyi +29 -0
- bl_ui/properties_scene/__init__.pyi +6 -0
- bl_ui/properties_view_layer/__init__.pyi +1 -0
- bl_ui/space_clip/__init__.pyi +53 -0
- bl_ui/space_graph/__init__.pyi +2 -0
- bl_ui/space_image/__init__.pyi +25 -0
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui/space_sequencer/__init__.pyi +2 -1
- blf/__init__.pyi +6 -3
- bmesh/ops/__init__.pyi +111 -54
- bmesh/types/__init__.pyi +134 -46
- bmesh/utils/__init__.pyi +17 -5
- bpy/__init__.pyi +1 -2
- bpy/_typing/__init__.pyi +4 -0
- bpy/{typing → _typing/rna_enums}/__init__.pyi +36 -36
- bpy/app/__init__.pyi +13 -5
- bpy/app/handlers/__init__.pyi +4 -2
- bpy/app/icons/__init__.pyi +6 -2
- bpy/app/translations/__init__.pyi +17 -8
- bpy/msgbus/__init__.pyi +14 -2
- bpy/ops/action/__init__.pyi +51 -151
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +11 -44
- bpy/ops/brush/__init__.pyi +16 -42
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +95 -293
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +10 -26
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +57 -186
- bpy/ops/curves/__init__.pyi +37 -109
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +8 -22
- bpy/ops/ed/__init__.pyi +20 -52
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +55 -32
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +29 -46
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +82 -201
- bpy/ops/grease_pencil/__init__.pyi +125 -324
- bpy/ops/image/__init__.pyi +61 -163
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +4 -6
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +11 -32
- bpy/ops/logic/__init__.pyi +26 -65
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +223 -470
- bpy/ops/nla/__init__.pyi +42 -150
- bpy/ops/node/__init__.pyi +169 -393
- bpy/ops/object/__init__.pyi +320 -749
- bpy/ops/outliner/__init__.pyi +76 -268
- bpy/ops/paint/__init__.pyi +67 -147
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +39 -134
- bpy/ops/pose/__init__.pyi +64 -182
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +22 -54
- bpy/ops/scene/__init__.pyi +47 -130
- bpy/ops/screen/__init__.pyi +46 -144
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +40 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +104 -327
- bpy/ops/sound/__init__.pyi +17 -28
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +114 -134
- bpy/ops/ui/__init__.pyi +39 -120
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +58 -143
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +68 -238
- bpy/ops/wm/__init__.pyi +178 -319
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- bpy/path/__init__.pyi +16 -6
- bpy/props/__init__.pyi +157 -127
- bpy/types/__init__.pyi +35227 -34838
- bpy/utils/__init__.pyi +71 -25
- bpy/utils/previews/__init__.pyi +2 -1
- bpy/utils/units/__init__.pyi +2 -1
- bpy_extras/anim_utils/__init__.pyi +11 -3
- bpy_extras/bmesh_utils/__init__.pyi +2 -1
- bpy_extras/image_utils/__init__.pyi +5 -2
- bpy_extras/io_utils/__init__.pyi +12 -5
- bpy_extras/mesh_utils/__init__.pyi +27 -6
- bpy_extras/object_utils/__init__.pyi +6 -5
- bpy_extras/view3d_utils/__init__.pyi +9 -2
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +7 -2
- freestyle/functions/__init__.pyi +16 -4
- freestyle/shaders/__init__.pyi +5 -1
- freestyle/types/__init__.pyi +103 -30
- freestyle/utils/ContextFunctions/__init__.pyi +2 -2
- freestyle/utils/__init__.pyi +2 -1
- gpu/capabilities/__init__.pyi +2 -1
- gpu/matrix/__init__.pyi +4 -2
- gpu/state/__init__.pyi +2 -2
- gpu/types/__init__.pyi +40 -8
- gpu_extras/batch/__init__.pyi +13 -1
- gpu_extras/presets/__init__.pyi +10 -1
- idprop/types/__init__.pyi +4 -2
- imbuf/__init__.pyi +6 -3
- imbuf/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +126 -35
- mathutils/bvhtree/__init__.pyi +21 -6
- mathutils/geometry/__init__.pyi +68 -22
- mathutils/interpolate/__init__.pyi +5 -1
- mathutils/kdtree/__init__.pyi +21 -8
- mathutils/noise/__init__.pyi +2 -1
- rna_info/__init__.pyi +2 -1
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1,27 +1,24 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bpy._typing.rna_enums
|
|
4
5
|
import bpy.ops.transform
|
|
5
6
|
import bpy.types
|
|
6
|
-
import bpy.typing
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
9
9
|
def change_effect_input(
|
|
10
|
-
|
|
11
|
-
execution_context: int | str | None = None,
|
|
12
|
-
undo: bool | None = None,
|
|
10
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
13
11
|
):
|
|
14
12
|
"""Undocumented, consider contributing.
|
|
15
13
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
14
|
:type execution_context: int | str | None
|
|
18
15
|
:type undo: bool | None
|
|
19
16
|
"""
|
|
20
17
|
|
|
21
18
|
def change_effect_type(
|
|
22
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
23
19
|
execution_context: int | str | None = None,
|
|
24
20
|
undo: bool | None = None,
|
|
21
|
+
/,
|
|
25
22
|
*,
|
|
26
23
|
type: typing.Literal[
|
|
27
24
|
"CROSS",
|
|
@@ -47,7 +44,6 @@ def change_effect_type(
|
|
|
47
44
|
):
|
|
48
45
|
"""Undocumented, consider contributing.
|
|
49
46
|
|
|
50
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
51
47
|
:type execution_context: int | str | None
|
|
52
48
|
:type undo: bool | None
|
|
53
49
|
:param type: Type, Sequencer effect type
|
|
@@ -109,9 +105,9 @@ def change_effect_type(
|
|
|
109
105
|
"""
|
|
110
106
|
|
|
111
107
|
def change_path(
|
|
112
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
113
108
|
execution_context: int | str | None = None,
|
|
114
109
|
undo: bool | None = None,
|
|
110
|
+
/,
|
|
115
111
|
*,
|
|
116
112
|
filepath: str = "",
|
|
117
113
|
directory: str = "",
|
|
@@ -147,7 +143,6 @@ def change_path(
|
|
|
147
143
|
):
|
|
148
144
|
"""Undocumented, consider contributing.
|
|
149
145
|
|
|
150
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
151
146
|
:type execution_context: int | str | None
|
|
152
147
|
:type undo: bool | None
|
|
153
148
|
:param filepath: File Path, Path to file
|
|
@@ -219,15 +214,14 @@ def change_path(
|
|
|
219
214
|
"""
|
|
220
215
|
|
|
221
216
|
def change_scene(
|
|
222
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
223
217
|
execution_context: int | str | None = None,
|
|
224
218
|
undo: bool | None = None,
|
|
219
|
+
/,
|
|
225
220
|
*,
|
|
226
221
|
scene: str | None = "",
|
|
227
222
|
):
|
|
228
223
|
"""Change Scene assigned to Strip
|
|
229
224
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
225
|
:type execution_context: int | str | None
|
|
232
226
|
:type undo: bool | None
|
|
233
227
|
:param scene: Scene
|
|
@@ -235,55 +229,45 @@ def change_scene(
|
|
|
235
229
|
"""
|
|
236
230
|
|
|
237
231
|
def connect(
|
|
238
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
239
232
|
execution_context: int | str | None = None,
|
|
240
233
|
undo: bool | None = None,
|
|
234
|
+
/,
|
|
241
235
|
*,
|
|
242
236
|
toggle: bool | None = True,
|
|
243
237
|
):
|
|
244
238
|
"""Link selected strips together for simplified group selection
|
|
245
239
|
|
|
246
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
247
240
|
:type execution_context: int | str | None
|
|
248
241
|
:type undo: bool | None
|
|
249
242
|
:param toggle: Toggle, Toggle strip connections
|
|
250
243
|
:type toggle: bool | None
|
|
251
244
|
"""
|
|
252
245
|
|
|
253
|
-
def copy(
|
|
254
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
255
|
-
execution_context: int | str | None = None,
|
|
256
|
-
undo: bool | None = None,
|
|
257
|
-
):
|
|
246
|
+
def copy(execution_context: int | str | None = None, undo: bool | None = None):
|
|
258
247
|
"""Copy the selected strips to the internal clipboard
|
|
259
248
|
|
|
260
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
261
249
|
:type execution_context: int | str | None
|
|
262
250
|
:type undo: bool | None
|
|
263
251
|
"""
|
|
264
252
|
|
|
265
253
|
def crossfade_sounds(
|
|
266
|
-
|
|
267
|
-
execution_context: int | str | None = None,
|
|
268
|
-
undo: bool | None = None,
|
|
254
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
269
255
|
):
|
|
270
256
|
"""Do cross-fading volume animation of two selected sound strips
|
|
271
257
|
|
|
272
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
273
258
|
:type execution_context: int | str | None
|
|
274
259
|
:type undo: bool | None
|
|
275
260
|
"""
|
|
276
261
|
|
|
277
262
|
def cursor_set(
|
|
278
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
279
263
|
execution_context: int | str | None = None,
|
|
280
264
|
undo: bool | None = None,
|
|
265
|
+
/,
|
|
281
266
|
*,
|
|
282
267
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
283
268
|
):
|
|
284
269
|
"""Set 2D cursor location
|
|
285
270
|
|
|
286
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
287
271
|
:type execution_context: int | str | None
|
|
288
272
|
:type undo: bool | None
|
|
289
273
|
:param location: Location, Cursor location in normalized preview coordinates
|
|
@@ -291,68 +275,53 @@ def cursor_set(
|
|
|
291
275
|
"""
|
|
292
276
|
|
|
293
277
|
def deinterlace_selected_movies(
|
|
294
|
-
|
|
295
|
-
execution_context: int | str | None = None,
|
|
296
|
-
undo: bool | None = None,
|
|
278
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
297
279
|
):
|
|
298
280
|
"""Deinterlace all selected movie sources
|
|
299
281
|
|
|
300
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
301
282
|
:type execution_context: int | str | None
|
|
302
283
|
:type undo: bool | None
|
|
303
284
|
"""
|
|
304
285
|
|
|
305
286
|
def delete(
|
|
306
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
307
287
|
execution_context: int | str | None = None,
|
|
308
288
|
undo: bool | None = None,
|
|
289
|
+
/,
|
|
309
290
|
*,
|
|
310
291
|
delete_data: bool | None = False,
|
|
311
292
|
):
|
|
312
293
|
"""Delete selected strips from the sequencer
|
|
313
294
|
|
|
314
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
315
295
|
:type execution_context: int | str | None
|
|
316
296
|
:type undo: bool | None
|
|
317
297
|
:param delete_data: Delete Data, After removing the Strip, delete the associated data also
|
|
318
298
|
:type delete_data: bool | None
|
|
319
299
|
"""
|
|
320
300
|
|
|
321
|
-
def disconnect(
|
|
322
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
323
|
-
execution_context: int | str | None = None,
|
|
324
|
-
undo: bool | None = None,
|
|
325
|
-
):
|
|
301
|
+
def disconnect(execution_context: int | str | None = None, undo: bool | None = None):
|
|
326
302
|
"""Unlink selected strips so that they can be selected individually
|
|
327
303
|
|
|
328
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
329
304
|
:type execution_context: int | str | None
|
|
330
305
|
:type undo: bool | None
|
|
331
306
|
"""
|
|
332
307
|
|
|
333
|
-
def duplicate(
|
|
334
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
335
|
-
execution_context: int | str | None = None,
|
|
336
|
-
undo: bool | None = None,
|
|
337
|
-
):
|
|
308
|
+
def duplicate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
338
309
|
"""Duplicate the selected strips
|
|
339
310
|
|
|
340
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
341
311
|
:type execution_context: int | str | None
|
|
342
312
|
:type undo: bool | None
|
|
343
313
|
"""
|
|
344
314
|
|
|
345
315
|
def duplicate_move(
|
|
346
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
347
316
|
execution_context: int | str | None = None,
|
|
348
317
|
undo: bool | None = None,
|
|
318
|
+
/,
|
|
349
319
|
*,
|
|
350
320
|
SEQUENCER_OT_duplicate: duplicate | None = None,
|
|
351
321
|
TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide | None = None,
|
|
352
322
|
):
|
|
353
323
|
"""Duplicate selected strips and move them
|
|
354
324
|
|
|
355
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
356
325
|
:type execution_context: int | str | None
|
|
357
326
|
:type undo: bool | None
|
|
358
327
|
:param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
|
|
@@ -362,9 +331,9 @@ def duplicate_move(
|
|
|
362
331
|
"""
|
|
363
332
|
|
|
364
333
|
def effect_strip_add(
|
|
365
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
366
334
|
execution_context: int | str | None = None,
|
|
367
335
|
undo: bool | None = None,
|
|
336
|
+
/,
|
|
368
337
|
*,
|
|
369
338
|
type: typing.Literal[
|
|
370
339
|
"CROSS",
|
|
@@ -397,7 +366,6 @@ def effect_strip_add(
|
|
|
397
366
|
):
|
|
398
367
|
"""Add an effect to the sequencer, most are applied on top of existing strips
|
|
399
368
|
|
|
400
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
401
369
|
:type execution_context: int | str | None
|
|
402
370
|
:type undo: bool | None
|
|
403
371
|
:param type: Type, Sequencer effect type
|
|
@@ -473,9 +441,9 @@ def effect_strip_add(
|
|
|
473
441
|
"""
|
|
474
442
|
|
|
475
443
|
def enable_proxies(
|
|
476
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
477
444
|
execution_context: int | str | None = None,
|
|
478
445
|
undo: bool | None = None,
|
|
446
|
+
/,
|
|
479
447
|
*,
|
|
480
448
|
proxy_25: bool | None = False,
|
|
481
449
|
proxy_50: bool | None = False,
|
|
@@ -485,7 +453,6 @@ def enable_proxies(
|
|
|
485
453
|
):
|
|
486
454
|
"""Enable selected proxies on all selected Movie and Image strips
|
|
487
455
|
|
|
488
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
489
456
|
:type execution_context: int | str | None
|
|
490
457
|
:type undo: bool | None
|
|
491
458
|
:param proxy_25: 25%
|
|
@@ -501,9 +468,9 @@ def enable_proxies(
|
|
|
501
468
|
"""
|
|
502
469
|
|
|
503
470
|
def export_subtitles(
|
|
504
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
505
471
|
execution_context: int | str | None = None,
|
|
506
472
|
undo: bool | None = None,
|
|
473
|
+
/,
|
|
507
474
|
*,
|
|
508
475
|
filepath: str = "",
|
|
509
476
|
hide_props_region: bool | None = True,
|
|
@@ -534,7 +501,6 @@ def export_subtitles(
|
|
|
534
501
|
):
|
|
535
502
|
"""Export .srt file containing text strips
|
|
536
503
|
|
|
537
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
538
504
|
:type execution_context: int | str | None
|
|
539
505
|
:type undo: bool | None
|
|
540
506
|
:param filepath: File Path, Path to file
|
|
@@ -598,9 +564,9 @@ def export_subtitles(
|
|
|
598
564
|
"""
|
|
599
565
|
|
|
600
566
|
def fades_add(
|
|
601
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
602
567
|
execution_context: int | str | None = None,
|
|
603
568
|
undo: bool | None = None,
|
|
569
|
+
/,
|
|
604
570
|
*,
|
|
605
571
|
duration_seconds: float | None = 1.0,
|
|
606
572
|
type: typing.Literal["IN_OUT", "IN", "OUT", "CURSOR_FROM", "CURSOR_TO"]
|
|
@@ -608,7 +574,6 @@ def fades_add(
|
|
|
608
574
|
):
|
|
609
575
|
"""Adds or updates a fade animation for either visual or audio strips
|
|
610
576
|
|
|
611
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
612
577
|
:type execution_context: int | str | None
|
|
613
578
|
:type undo: bool | None
|
|
614
579
|
:param duration_seconds: Fade Duration, Duration of the fade in seconds
|
|
@@ -632,28 +597,22 @@ def fades_add(
|
|
|
632
597
|
:type type: typing.Literal['IN_OUT','IN','OUT','CURSOR_FROM','CURSOR_TO'] | None
|
|
633
598
|
"""
|
|
634
599
|
|
|
635
|
-
def fades_clear(
|
|
636
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
637
|
-
execution_context: int | str | None = None,
|
|
638
|
-
undo: bool | None = None,
|
|
639
|
-
):
|
|
600
|
+
def fades_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
640
601
|
"""Removes fade animation from selected sequences
|
|
641
602
|
|
|
642
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
643
603
|
:type execution_context: int | str | None
|
|
644
604
|
:type undo: bool | None
|
|
645
605
|
"""
|
|
646
606
|
|
|
647
607
|
def gap_insert(
|
|
648
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
649
608
|
execution_context: int | str | None = None,
|
|
650
609
|
undo: bool | None = None,
|
|
610
|
+
/,
|
|
651
611
|
*,
|
|
652
612
|
frames: int | None = 10,
|
|
653
613
|
):
|
|
654
614
|
"""Insert gap at current frame to first strips at the right, independent of selection or locked state of strips
|
|
655
615
|
|
|
656
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
657
616
|
:type execution_context: int | str | None
|
|
658
617
|
:type undo: bool | None
|
|
659
618
|
:param frames: Frames, Frames to insert after current strip
|
|
@@ -661,15 +620,14 @@ def gap_insert(
|
|
|
661
620
|
"""
|
|
662
621
|
|
|
663
622
|
def gap_remove(
|
|
664
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
665
623
|
execution_context: int | str | None = None,
|
|
666
624
|
undo: bool | None = None,
|
|
625
|
+
/,
|
|
667
626
|
*,
|
|
668
627
|
all: bool | None = False,
|
|
669
628
|
):
|
|
670
629
|
"""Remove gap at current frame to first strip at the right, independent of selection or locked state of strips
|
|
671
630
|
|
|
672
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
673
631
|
:type execution_context: int | str | None
|
|
674
632
|
:type undo: bool | None
|
|
675
633
|
:param all: All Gaps, Do all gaps to right of current frame
|
|
@@ -677,9 +635,9 @@ def gap_remove(
|
|
|
677
635
|
"""
|
|
678
636
|
|
|
679
637
|
def image_strip_add(
|
|
680
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
681
638
|
execution_context: int | str | None = None,
|
|
682
639
|
undo: bool | None = None,
|
|
640
|
+
/,
|
|
683
641
|
*,
|
|
684
642
|
directory: str = "",
|
|
685
643
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
@@ -731,7 +689,6 @@ def image_strip_add(
|
|
|
731
689
|
):
|
|
732
690
|
"""Add an image or image sequence to the sequencer
|
|
733
691
|
|
|
734
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
735
692
|
:type execution_context: int | str | None
|
|
736
693
|
:type undo: bool | None
|
|
737
694
|
:param directory: Directory, Directory of the file
|
|
@@ -849,37 +806,31 @@ def image_strip_add(
|
|
|
849
806
|
"""
|
|
850
807
|
|
|
851
808
|
def images_separate(
|
|
852
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
853
809
|
execution_context: int | str | None = None,
|
|
854
810
|
undo: bool | None = None,
|
|
811
|
+
/,
|
|
855
812
|
*,
|
|
856
813
|
length: int | None = 1,
|
|
857
814
|
):
|
|
858
815
|
"""On image sequence strips, it returns a strip for each image
|
|
859
816
|
|
|
860
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
861
817
|
:type execution_context: int | str | None
|
|
862
818
|
:type undo: bool | None
|
|
863
819
|
:param length: Length, Length of each frame
|
|
864
820
|
:type length: int | None
|
|
865
821
|
"""
|
|
866
822
|
|
|
867
|
-
def lock(
|
|
868
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
869
|
-
execution_context: int | str | None = None,
|
|
870
|
-
undo: bool | None = None,
|
|
871
|
-
):
|
|
823
|
+
def lock(execution_context: int | str | None = None, undo: bool | None = None):
|
|
872
824
|
"""Lock strips so they can't be transformed
|
|
873
825
|
|
|
874
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
875
826
|
:type execution_context: int | str | None
|
|
876
827
|
:type undo: bool | None
|
|
877
828
|
"""
|
|
878
829
|
|
|
879
830
|
def mask_strip_add(
|
|
880
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
881
831
|
execution_context: int | str | None = None,
|
|
882
832
|
undo: bool | None = None,
|
|
833
|
+
/,
|
|
883
834
|
*,
|
|
884
835
|
frame_start: int | None = 0,
|
|
885
836
|
channel: int | None = 1,
|
|
@@ -890,7 +841,6 @@ def mask_strip_add(
|
|
|
890
841
|
):
|
|
891
842
|
"""Add a mask strip to the sequencer
|
|
892
843
|
|
|
893
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
894
844
|
:type execution_context: int | str | None
|
|
895
845
|
:type undo: bool | None
|
|
896
846
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
@@ -907,46 +857,31 @@ def mask_strip_add(
|
|
|
907
857
|
:type mask: str | None
|
|
908
858
|
"""
|
|
909
859
|
|
|
910
|
-
def meta_make(
|
|
911
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
912
|
-
execution_context: int | str | None = None,
|
|
913
|
-
undo: bool | None = None,
|
|
914
|
-
):
|
|
860
|
+
def meta_make(execution_context: int | str | None = None, undo: bool | None = None):
|
|
915
861
|
"""Group selected strips into a meta-strip
|
|
916
862
|
|
|
917
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
918
863
|
:type execution_context: int | str | None
|
|
919
864
|
:type undo: bool | None
|
|
920
865
|
"""
|
|
921
866
|
|
|
922
|
-
def meta_separate(
|
|
923
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
924
|
-
execution_context: int | str | None = None,
|
|
925
|
-
undo: bool | None = None,
|
|
926
|
-
):
|
|
867
|
+
def meta_separate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
927
868
|
"""Put the contents of a meta-strip back in the sequencer
|
|
928
869
|
|
|
929
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
930
870
|
:type execution_context: int | str | None
|
|
931
871
|
:type undo: bool | None
|
|
932
872
|
"""
|
|
933
873
|
|
|
934
|
-
def meta_toggle(
|
|
935
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
936
|
-
execution_context: int | str | None = None,
|
|
937
|
-
undo: bool | None = None,
|
|
938
|
-
):
|
|
874
|
+
def meta_toggle(execution_context: int | str | None = None, undo: bool | None = None):
|
|
939
875
|
"""Toggle a meta-strip (to edit enclosed strips)
|
|
940
876
|
|
|
941
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
942
877
|
:type execution_context: int | str | None
|
|
943
878
|
:type undo: bool | None
|
|
944
879
|
"""
|
|
945
880
|
|
|
946
881
|
def movie_strip_add(
|
|
947
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
948
882
|
execution_context: int | str | None = None,
|
|
949
883
|
undo: bool | None = None,
|
|
884
|
+
/,
|
|
950
885
|
*,
|
|
951
886
|
filepath: str = "",
|
|
952
887
|
directory: str = "",
|
|
@@ -1000,7 +935,6 @@ def movie_strip_add(
|
|
|
1000
935
|
):
|
|
1001
936
|
"""Add a movie strip to the sequencer
|
|
1002
937
|
|
|
1003
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1004
938
|
:type execution_context: int | str | None
|
|
1005
939
|
:type undo: bool | None
|
|
1006
940
|
:param filepath: File Path, Path to file
|
|
@@ -1122,9 +1056,9 @@ def movie_strip_add(
|
|
|
1122
1056
|
"""
|
|
1123
1057
|
|
|
1124
1058
|
def movieclip_strip_add(
|
|
1125
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1126
1059
|
execution_context: int | str | None = None,
|
|
1127
1060
|
undo: bool | None = None,
|
|
1061
|
+
/,
|
|
1128
1062
|
*,
|
|
1129
1063
|
frame_start: int | None = 0,
|
|
1130
1064
|
channel: int | None = 1,
|
|
@@ -1135,7 +1069,6 @@ def movieclip_strip_add(
|
|
|
1135
1069
|
):
|
|
1136
1070
|
"""Add a movieclip strip to the sequencer
|
|
1137
1071
|
|
|
1138
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1139
1072
|
:type execution_context: int | str | None
|
|
1140
1073
|
:type undo: bool | None
|
|
1141
1074
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
@@ -1153,43 +1086,36 @@ def movieclip_strip_add(
|
|
|
1153
1086
|
"""
|
|
1154
1087
|
|
|
1155
1088
|
def mute(
|
|
1156
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1157
1089
|
execution_context: int | str | None = None,
|
|
1158
1090
|
undo: bool | None = None,
|
|
1091
|
+
/,
|
|
1159
1092
|
*,
|
|
1160
1093
|
unselected: bool | None = False,
|
|
1161
1094
|
):
|
|
1162
1095
|
"""Mute (un)selected strips
|
|
1163
1096
|
|
|
1164
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1165
1097
|
:type execution_context: int | str | None
|
|
1166
1098
|
:type undo: bool | None
|
|
1167
1099
|
:param unselected: Unselected, Mute unselected rather than selected strips
|
|
1168
1100
|
:type unselected: bool | None
|
|
1169
1101
|
"""
|
|
1170
1102
|
|
|
1171
|
-
def offset_clear(
|
|
1172
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1173
|
-
execution_context: int | str | None = None,
|
|
1174
|
-
undo: bool | None = None,
|
|
1175
|
-
):
|
|
1103
|
+
def offset_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1176
1104
|
"""Clear strip offsets from the start and end frames
|
|
1177
1105
|
|
|
1178
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1179
1106
|
:type execution_context: int | str | None
|
|
1180
1107
|
:type undo: bool | None
|
|
1181
1108
|
"""
|
|
1182
1109
|
|
|
1183
1110
|
def paste(
|
|
1184
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1185
1111
|
execution_context: int | str | None = None,
|
|
1186
1112
|
undo: bool | None = None,
|
|
1113
|
+
/,
|
|
1187
1114
|
*,
|
|
1188
1115
|
keep_offset: bool | None = False,
|
|
1189
1116
|
):
|
|
1190
1117
|
"""Paste strips from the internal clipboard
|
|
1191
1118
|
|
|
1192
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1193
1119
|
:type execution_context: int | str | None
|
|
1194
1120
|
:type undo: bool | None
|
|
1195
1121
|
:param keep_offset: Keep Offset, Keep strip offset relative to the current frame when pasting
|
|
@@ -1197,16 +1123,15 @@ def paste(
|
|
|
1197
1123
|
"""
|
|
1198
1124
|
|
|
1199
1125
|
def preview_duplicate_move(
|
|
1200
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1201
1126
|
execution_context: int | str | None = None,
|
|
1202
1127
|
undo: bool | None = None,
|
|
1128
|
+
/,
|
|
1203
1129
|
*,
|
|
1204
1130
|
SEQUENCER_OT_duplicate: duplicate | None = None,
|
|
1205
1131
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1206
1132
|
):
|
|
1207
1133
|
"""Duplicate selected strips and move them
|
|
1208
1134
|
|
|
1209
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1210
1135
|
:type execution_context: int | str | None
|
|
1211
1136
|
:type undo: bool | None
|
|
1212
1137
|
:param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
|
|
@@ -1216,51 +1141,37 @@ def preview_duplicate_move(
|
|
|
1216
1141
|
"""
|
|
1217
1142
|
|
|
1218
1143
|
def reassign_inputs(
|
|
1219
|
-
|
|
1220
|
-
execution_context: int | str | None = None,
|
|
1221
|
-
undo: bool | None = None,
|
|
1144
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1222
1145
|
):
|
|
1223
1146
|
"""Reassign the inputs for the effect strip
|
|
1224
1147
|
|
|
1225
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1226
1148
|
:type execution_context: int | str | None
|
|
1227
1149
|
:type undo: bool | None
|
|
1228
1150
|
"""
|
|
1229
1151
|
|
|
1230
|
-
def rebuild_proxy(
|
|
1231
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1232
|
-
execution_context: int | str | None = None,
|
|
1233
|
-
undo: bool | None = None,
|
|
1234
|
-
):
|
|
1152
|
+
def rebuild_proxy(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1235
1153
|
"""Rebuild all selected proxies and timecode indices
|
|
1236
1154
|
|
|
1237
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1238
1155
|
:type execution_context: int | str | None
|
|
1239
1156
|
:type undo: bool | None
|
|
1240
1157
|
"""
|
|
1241
1158
|
|
|
1242
|
-
def refresh_all(
|
|
1243
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1244
|
-
execution_context: int | str | None = None,
|
|
1245
|
-
undo: bool | None = None,
|
|
1246
|
-
):
|
|
1159
|
+
def refresh_all(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1247
1160
|
"""Refresh the sequencer editor
|
|
1248
1161
|
|
|
1249
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1250
1162
|
:type execution_context: int | str | None
|
|
1251
1163
|
:type undo: bool | None
|
|
1252
1164
|
"""
|
|
1253
1165
|
|
|
1254
1166
|
def reload(
|
|
1255
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1256
1167
|
execution_context: int | str | None = None,
|
|
1257
1168
|
undo: bool | None = None,
|
|
1169
|
+
/,
|
|
1258
1170
|
*,
|
|
1259
1171
|
adjust_length: bool | None = False,
|
|
1260
1172
|
):
|
|
1261
1173
|
"""Reload strips in the sequencer
|
|
1262
1174
|
|
|
1263
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1264
1175
|
:type execution_context: int | str | None
|
|
1265
1176
|
:type undo: bool | None
|
|
1266
1177
|
:param adjust_length: Adjust Length, Adjust length of strips to their data length
|
|
@@ -1268,40 +1179,31 @@ def reload(
|
|
|
1268
1179
|
"""
|
|
1269
1180
|
|
|
1270
1181
|
def rename_channel(
|
|
1271
|
-
|
|
1272
|
-
execution_context: int | str | None = None,
|
|
1273
|
-
undo: bool | None = None,
|
|
1182
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1274
1183
|
):
|
|
1275
1184
|
"""Undocumented, consider contributing.
|
|
1276
1185
|
|
|
1277
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1278
1186
|
:type execution_context: int | str | None
|
|
1279
1187
|
:type undo: bool | None
|
|
1280
1188
|
"""
|
|
1281
1189
|
|
|
1282
|
-
def rendersize(
|
|
1283
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1284
|
-
execution_context: int | str | None = None,
|
|
1285
|
-
undo: bool | None = None,
|
|
1286
|
-
):
|
|
1190
|
+
def rendersize(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1287
1191
|
"""Set render size and aspect from active sequence
|
|
1288
1192
|
|
|
1289
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1290
1193
|
:type execution_context: int | str | None
|
|
1291
1194
|
:type undo: bool | None
|
|
1292
1195
|
"""
|
|
1293
1196
|
|
|
1294
1197
|
def retiming_add_freeze_frame_slide(
|
|
1295
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1296
1198
|
execution_context: int | str | None = None,
|
|
1297
1199
|
undo: bool | None = None,
|
|
1200
|
+
/,
|
|
1298
1201
|
*,
|
|
1299
1202
|
SEQUENCER_OT_retiming_freeze_frame_add: retiming_freeze_frame_add | None = None,
|
|
1300
1203
|
TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide | None = None,
|
|
1301
1204
|
):
|
|
1302
1205
|
"""Add freeze frame and move it
|
|
1303
1206
|
|
|
1304
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1305
1207
|
:type execution_context: int | str | None
|
|
1306
1208
|
:type undo: bool | None
|
|
1307
1209
|
:param SEQUENCER_OT_retiming_freeze_frame_add: Add Freeze Frame, Add freeze frame
|
|
@@ -1311,16 +1213,15 @@ def retiming_add_freeze_frame_slide(
|
|
|
1311
1213
|
"""
|
|
1312
1214
|
|
|
1313
1215
|
def retiming_add_transition_slide(
|
|
1314
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1315
1216
|
execution_context: int | str | None = None,
|
|
1316
1217
|
undo: bool | None = None,
|
|
1218
|
+
/,
|
|
1317
1219
|
*,
|
|
1318
1220
|
SEQUENCER_OT_retiming_transition_add: retiming_transition_add | None = None,
|
|
1319
1221
|
TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide | None = None,
|
|
1320
1222
|
):
|
|
1321
1223
|
"""Add smooth transition between 2 retimed segments and change its duration
|
|
1322
1224
|
|
|
1323
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1324
1225
|
:type execution_context: int | str | None
|
|
1325
1226
|
:type undo: bool | None
|
|
1326
1227
|
:param SEQUENCER_OT_retiming_transition_add: Add Speed Transition, Add smooth transition between 2 retimed segments
|
|
@@ -1330,15 +1231,14 @@ def retiming_add_transition_slide(
|
|
|
1330
1231
|
"""
|
|
1331
1232
|
|
|
1332
1233
|
def retiming_freeze_frame_add(
|
|
1333
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1334
1234
|
execution_context: int | str | None = None,
|
|
1335
1235
|
undo: bool | None = None,
|
|
1236
|
+
/,
|
|
1336
1237
|
*,
|
|
1337
1238
|
duration: int | None = 0,
|
|
1338
1239
|
):
|
|
1339
1240
|
"""Add freeze frame
|
|
1340
1241
|
|
|
1341
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1342
1242
|
:type execution_context: int | str | None
|
|
1343
1243
|
:type undo: bool | None
|
|
1344
1244
|
:param duration: Duration, Duration of freeze frame segment
|
|
@@ -1346,15 +1246,14 @@ def retiming_freeze_frame_add(
|
|
|
1346
1246
|
"""
|
|
1347
1247
|
|
|
1348
1248
|
def retiming_key_add(
|
|
1349
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1350
1249
|
execution_context: int | str | None = None,
|
|
1351
1250
|
undo: bool | None = None,
|
|
1251
|
+
/,
|
|
1352
1252
|
*,
|
|
1353
1253
|
timeline_frame: int | None = 0,
|
|
1354
1254
|
):
|
|
1355
1255
|
"""Add retiming Key
|
|
1356
1256
|
|
|
1357
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1358
1257
|
:type execution_context: int | str | None
|
|
1359
1258
|
:type undo: bool | None
|
|
1360
1259
|
:param timeline_frame: Timeline Frame, Frame where key will be added
|
|
@@ -1362,40 +1261,33 @@ def retiming_key_add(
|
|
|
1362
1261
|
"""
|
|
1363
1262
|
|
|
1364
1263
|
def retiming_key_delete(
|
|
1365
|
-
|
|
1366
|
-
execution_context: int | str | None = None,
|
|
1367
|
-
undo: bool | None = None,
|
|
1264
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1368
1265
|
):
|
|
1369
1266
|
"""Delete selected strips from the sequencer
|
|
1370
1267
|
|
|
1371
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1372
1268
|
:type execution_context: int | str | None
|
|
1373
1269
|
:type undo: bool | None
|
|
1374
1270
|
"""
|
|
1375
1271
|
|
|
1376
1272
|
def retiming_reset(
|
|
1377
|
-
|
|
1378
|
-
execution_context: int | str | None = None,
|
|
1379
|
-
undo: bool | None = None,
|
|
1273
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1380
1274
|
):
|
|
1381
1275
|
"""Reset strip retiming
|
|
1382
1276
|
|
|
1383
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1384
1277
|
:type execution_context: int | str | None
|
|
1385
1278
|
:type undo: bool | None
|
|
1386
1279
|
"""
|
|
1387
1280
|
|
|
1388
1281
|
def retiming_segment_speed_set(
|
|
1389
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1390
1282
|
execution_context: int | str | None = None,
|
|
1391
1283
|
undo: bool | None = None,
|
|
1284
|
+
/,
|
|
1392
1285
|
*,
|
|
1393
1286
|
speed: float | None = 100.0,
|
|
1394
1287
|
keep_retiming: bool | None = True,
|
|
1395
1288
|
):
|
|
1396
1289
|
"""Set speed of retimed segment
|
|
1397
1290
|
|
|
1398
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1399
1291
|
:type execution_context: int | str | None
|
|
1400
1292
|
:type undo: bool | None
|
|
1401
1293
|
:param speed: Speed, New speed of retimed segment
|
|
@@ -1404,28 +1296,22 @@ def retiming_segment_speed_set(
|
|
|
1404
1296
|
:type keep_retiming: bool | None
|
|
1405
1297
|
"""
|
|
1406
1298
|
|
|
1407
|
-
def retiming_show(
|
|
1408
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1409
|
-
execution_context: int | str | None = None,
|
|
1410
|
-
undo: bool | None = None,
|
|
1411
|
-
):
|
|
1299
|
+
def retiming_show(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1412
1300
|
"""Show retiming keys in selected strips
|
|
1413
1301
|
|
|
1414
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1415
1302
|
:type execution_context: int | str | None
|
|
1416
1303
|
:type undo: bool | None
|
|
1417
1304
|
"""
|
|
1418
1305
|
|
|
1419
1306
|
def retiming_transition_add(
|
|
1420
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1421
1307
|
execution_context: int | str | None = None,
|
|
1422
1308
|
undo: bool | None = None,
|
|
1309
|
+
/,
|
|
1423
1310
|
*,
|
|
1424
1311
|
duration: int | None = 0,
|
|
1425
1312
|
):
|
|
1426
1313
|
"""Add smooth transition between 2 retimed segments
|
|
1427
1314
|
|
|
1428
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1429
1315
|
:type execution_context: int | str | None
|
|
1430
1316
|
:type undo: bool | None
|
|
1431
1317
|
:param duration: Duration, Duration of freeze frame segment
|
|
@@ -1433,15 +1319,14 @@ def retiming_transition_add(
|
|
|
1433
1319
|
"""
|
|
1434
1320
|
|
|
1435
1321
|
def sample(
|
|
1436
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1437
1322
|
execution_context: int | str | None = None,
|
|
1438
1323
|
undo: bool | None = None,
|
|
1324
|
+
/,
|
|
1439
1325
|
*,
|
|
1440
1326
|
size: int | None = 1,
|
|
1441
1327
|
):
|
|
1442
1328
|
"""Use mouse to sample color in current frame
|
|
1443
1329
|
|
|
1444
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1445
1330
|
:type execution_context: int | str | None
|
|
1446
1331
|
:type undo: bool | None
|
|
1447
1332
|
:param size: Sample Size
|
|
@@ -1449,21 +1334,18 @@ def sample(
|
|
|
1449
1334
|
"""
|
|
1450
1335
|
|
|
1451
1336
|
def scene_frame_range_update(
|
|
1452
|
-
|
|
1453
|
-
execution_context: int | str | None = None,
|
|
1454
|
-
undo: bool | None = None,
|
|
1337
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1455
1338
|
):
|
|
1456
1339
|
"""Update frame range of scene strip
|
|
1457
1340
|
|
|
1458
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1459
1341
|
:type execution_context: int | str | None
|
|
1460
1342
|
:type undo: bool | None
|
|
1461
1343
|
"""
|
|
1462
1344
|
|
|
1463
1345
|
def scene_strip_add(
|
|
1464
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1465
1346
|
execution_context: int | str | None = None,
|
|
1466
1347
|
undo: bool | None = None,
|
|
1348
|
+
/,
|
|
1467
1349
|
*,
|
|
1468
1350
|
frame_start: int | None = 0,
|
|
1469
1351
|
channel: int | None = 1,
|
|
@@ -1474,7 +1356,6 @@ def scene_strip_add(
|
|
|
1474
1356
|
):
|
|
1475
1357
|
"""Add a strip to the sequencer using a Blender scene as a source
|
|
1476
1358
|
|
|
1477
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1478
1359
|
:type execution_context: int | str | None
|
|
1479
1360
|
:type undo: bool | None
|
|
1480
1361
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
@@ -1492,9 +1373,9 @@ def scene_strip_add(
|
|
|
1492
1373
|
"""
|
|
1493
1374
|
|
|
1494
1375
|
def scene_strip_add_new(
|
|
1495
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1496
1376
|
execution_context: int | str | None = None,
|
|
1497
1377
|
undo: bool | None = None,
|
|
1378
|
+
/,
|
|
1498
1379
|
*,
|
|
1499
1380
|
frame_start: int | None = 0,
|
|
1500
1381
|
channel: int | None = 1,
|
|
@@ -1505,7 +1386,6 @@ def scene_strip_add_new(
|
|
|
1505
1386
|
):
|
|
1506
1387
|
"""Create a new Strip and assign a new Scene as source
|
|
1507
1388
|
|
|
1508
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1509
1389
|
:type execution_context: int | str | None
|
|
1510
1390
|
:type undo: bool | None
|
|
1511
1391
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
@@ -1535,9 +1415,9 @@ def scene_strip_add_new(
|
|
|
1535
1415
|
"""
|
|
1536
1416
|
|
|
1537
1417
|
def select(
|
|
1538
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1539
1418
|
execution_context: int | str | None = None,
|
|
1540
1419
|
undo: bool | None = None,
|
|
1420
|
+
/,
|
|
1541
1421
|
*,
|
|
1542
1422
|
wait_to_deselect_others: bool | None = False,
|
|
1543
1423
|
mouse_x: int | None = 0,
|
|
@@ -1555,7 +1435,6 @@ def select(
|
|
|
1555
1435
|
):
|
|
1556
1436
|
"""Select a strip (last selected becomes the "active strip")
|
|
1557
1437
|
|
|
1558
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1559
1438
|
:type execution_context: int | str | None
|
|
1560
1439
|
:type undo: bool | None
|
|
1561
1440
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -1587,15 +1466,14 @@ def select(
|
|
|
1587
1466
|
"""
|
|
1588
1467
|
|
|
1589
1468
|
def select_all(
|
|
1590
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1591
1469
|
execution_context: int | str | None = None,
|
|
1592
1470
|
undo: bool | None = None,
|
|
1471
|
+
/,
|
|
1593
1472
|
*,
|
|
1594
1473
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
1595
1474
|
):
|
|
1596
1475
|
"""Select or deselect all strips
|
|
1597
1476
|
|
|
1598
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1599
1477
|
:type execution_context: int | str | None
|
|
1600
1478
|
:type undo: bool | None
|
|
1601
1479
|
:param action: Action, Selection action to execute
|
|
@@ -1615,9 +1493,9 @@ def select_all(
|
|
|
1615
1493
|
"""
|
|
1616
1494
|
|
|
1617
1495
|
def select_box(
|
|
1618
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1619
1496
|
execution_context: int | str | None = None,
|
|
1620
1497
|
undo: bool | None = None,
|
|
1498
|
+
/,
|
|
1621
1499
|
*,
|
|
1622
1500
|
xmin: int | None = 0,
|
|
1623
1501
|
xmax: int | None = 0,
|
|
@@ -1631,7 +1509,6 @@ def select_box(
|
|
|
1631
1509
|
):
|
|
1632
1510
|
"""Select strips using box selection
|
|
1633
1511
|
|
|
1634
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1635
1512
|
:type execution_context: int | str | None
|
|
1636
1513
|
:type undo: bool | None
|
|
1637
1514
|
:param xmin: X Min
|
|
@@ -1664,9 +1541,9 @@ def select_box(
|
|
|
1664
1541
|
"""
|
|
1665
1542
|
|
|
1666
1543
|
def select_grouped(
|
|
1667
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1668
1544
|
execution_context: int | str | None = None,
|
|
1669
1545
|
undo: bool | None = None,
|
|
1546
|
+
/,
|
|
1670
1547
|
*,
|
|
1671
1548
|
type: typing.Literal[
|
|
1672
1549
|
"TYPE", "TYPE_BASIC", "TYPE_EFFECT", "DATA", "EFFECT", "EFFECT_LINK", "OVERLAP"
|
|
@@ -1677,7 +1554,6 @@ def select_grouped(
|
|
|
1677
1554
|
):
|
|
1678
1555
|
"""Select all strips grouped by various properties
|
|
1679
1556
|
|
|
1680
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1681
1557
|
:type execution_context: int | str | None
|
|
1682
1558
|
:type undo: bool | None
|
|
1683
1559
|
:param type: Type
|
|
@@ -1710,9 +1586,9 @@ def select_grouped(
|
|
|
1710
1586
|
"""
|
|
1711
1587
|
|
|
1712
1588
|
def select_handle(
|
|
1713
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1714
1589
|
execution_context: int | str | None = None,
|
|
1715
1590
|
undo: bool | None = None,
|
|
1591
|
+
/,
|
|
1716
1592
|
*,
|
|
1717
1593
|
wait_to_deselect_others: bool | None = False,
|
|
1718
1594
|
mouse_x: int | None = 0,
|
|
@@ -1721,7 +1597,6 @@ def select_handle(
|
|
|
1721
1597
|
):
|
|
1722
1598
|
"""Select strip handle
|
|
1723
1599
|
|
|
1724
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1725
1600
|
:type execution_context: int | str | None
|
|
1726
1601
|
:type undo: bool | None
|
|
1727
1602
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -1735,9 +1610,9 @@ def select_handle(
|
|
|
1735
1610
|
"""
|
|
1736
1611
|
|
|
1737
1612
|
def select_handles(
|
|
1738
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1739
1613
|
execution_context: int | str | None = None,
|
|
1740
1614
|
undo: bool | None = None,
|
|
1615
|
+
/,
|
|
1741
1616
|
*,
|
|
1742
1617
|
side: typing.Literal[
|
|
1743
1618
|
"LEFT", "RIGHT", "BOTH", "LEFT_NEIGHBOR", "RIGHT_NEIGHBOR", "BOTH_NEIGHBORS"
|
|
@@ -1746,75 +1621,57 @@ def select_handles(
|
|
|
1746
1621
|
):
|
|
1747
1622
|
"""Select gizmo handles on the sides of the selected strip
|
|
1748
1623
|
|
|
1749
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1750
1624
|
:type execution_context: int | str | None
|
|
1751
1625
|
:type undo: bool | None
|
|
1752
1626
|
:param side: Side, The side of the handle that is selected
|
|
1753
1627
|
:type side: typing.Literal['LEFT','RIGHT','BOTH','LEFT_NEIGHBOR','RIGHT_NEIGHBOR','BOTH_NEIGHBORS'] | None
|
|
1754
1628
|
"""
|
|
1755
1629
|
|
|
1756
|
-
def select_less(
|
|
1757
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1758
|
-
execution_context: int | str | None = None,
|
|
1759
|
-
undo: bool | None = None,
|
|
1760
|
-
):
|
|
1630
|
+
def select_less(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1761
1631
|
"""Shrink the current selection of adjacent selected strips
|
|
1762
1632
|
|
|
1763
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1764
1633
|
:type execution_context: int | str | None
|
|
1765
1634
|
:type undo: bool | None
|
|
1766
1635
|
"""
|
|
1767
1636
|
|
|
1768
|
-
def select_linked(
|
|
1769
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1770
|
-
execution_context: int | str | None = None,
|
|
1771
|
-
undo: bool | None = None,
|
|
1772
|
-
):
|
|
1637
|
+
def select_linked(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1773
1638
|
"""Select all strips adjacent to the current selection
|
|
1774
1639
|
|
|
1775
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1776
1640
|
:type execution_context: int | str | None
|
|
1777
1641
|
:type undo: bool | None
|
|
1778
1642
|
"""
|
|
1779
1643
|
|
|
1780
1644
|
def select_linked_pick(
|
|
1781
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1782
1645
|
execution_context: int | str | None = None,
|
|
1783
1646
|
undo: bool | None = None,
|
|
1647
|
+
/,
|
|
1784
1648
|
*,
|
|
1785
1649
|
extend: bool | None = False,
|
|
1786
1650
|
):
|
|
1787
1651
|
"""Select a chain of linked strips nearest to the mouse pointer
|
|
1788
1652
|
|
|
1789
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1790
1653
|
:type execution_context: int | str | None
|
|
1791
1654
|
:type undo: bool | None
|
|
1792
1655
|
:param extend: Extend, Extend the selection
|
|
1793
1656
|
:type extend: bool | None
|
|
1794
1657
|
"""
|
|
1795
1658
|
|
|
1796
|
-
def select_more(
|
|
1797
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1798
|
-
execution_context: int | str | None = None,
|
|
1799
|
-
undo: bool | None = None,
|
|
1800
|
-
):
|
|
1659
|
+
def select_more(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1801
1660
|
"""Select more strips adjacent to the current selection
|
|
1802
1661
|
|
|
1803
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1804
1662
|
:type execution_context: int | str | None
|
|
1805
1663
|
:type undo: bool | None
|
|
1806
1664
|
"""
|
|
1807
1665
|
|
|
1808
1666
|
def select_side(
|
|
1809
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1810
1667
|
execution_context: int | str | None = None,
|
|
1811
1668
|
undo: bool | None = None,
|
|
1669
|
+
/,
|
|
1812
1670
|
*,
|
|
1813
1671
|
side: typing.Literal["MOUSE", "LEFT", "RIGHT", "BOTH", "NO_CHANGE"] | None = "BOTH",
|
|
1814
1672
|
):
|
|
1815
1673
|
"""Select strips on the nominated side of the selected strips
|
|
1816
1674
|
|
|
1817
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1818
1675
|
:type execution_context: int | str | None
|
|
1819
1676
|
:type undo: bool | None
|
|
1820
1677
|
:param side: Side, The side to which the selection is applied
|
|
@@ -1822,16 +1679,15 @@ def select_side(
|
|
|
1822
1679
|
"""
|
|
1823
1680
|
|
|
1824
1681
|
def select_side_of_frame(
|
|
1825
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1826
1682
|
execution_context: int | str | None = None,
|
|
1827
1683
|
undo: bool | None = None,
|
|
1684
|
+
/,
|
|
1828
1685
|
*,
|
|
1829
1686
|
extend: bool | None = False,
|
|
1830
1687
|
side: typing.Literal["LEFT", "RIGHT", "CURRENT"] | None = "LEFT",
|
|
1831
1688
|
):
|
|
1832
1689
|
"""Select strips relative to the current frame
|
|
1833
1690
|
|
|
1834
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1835
1691
|
:type execution_context: int | str | None
|
|
1836
1692
|
:type undo: bool | None
|
|
1837
1693
|
:param extend: Extend, Extend the selection
|
|
@@ -1850,15 +1706,14 @@ def select_side_of_frame(
|
|
|
1850
1706
|
"""
|
|
1851
1707
|
|
|
1852
1708
|
def set_range_to_strips(
|
|
1853
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1854
1709
|
execution_context: int | str | None = None,
|
|
1855
1710
|
undo: bool | None = None,
|
|
1711
|
+
/,
|
|
1856
1712
|
*,
|
|
1857
1713
|
preview: bool | None = False,
|
|
1858
1714
|
):
|
|
1859
1715
|
"""Set the frame range to the selected strips start and end
|
|
1860
1716
|
|
|
1861
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1862
1717
|
:type execution_context: int | str | None
|
|
1863
1718
|
:type undo: bool | None
|
|
1864
1719
|
:param preview: Preview, Set the preview range instead
|
|
@@ -1866,15 +1721,14 @@ def set_range_to_strips(
|
|
|
1866
1721
|
"""
|
|
1867
1722
|
|
|
1868
1723
|
def slip(
|
|
1869
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1870
1724
|
execution_context: int | str | None = None,
|
|
1871
1725
|
undo: bool | None = None,
|
|
1726
|
+
/,
|
|
1872
1727
|
*,
|
|
1873
1728
|
offset: float | None = 0.0,
|
|
1874
1729
|
):
|
|
1875
1730
|
"""Slip the contents of selected strips
|
|
1876
1731
|
|
|
1877
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1878
1732
|
:type execution_context: int | str | None
|
|
1879
1733
|
:type undo: bool | None
|
|
1880
1734
|
:param offset: Offset, Offset to the data of the strip
|
|
@@ -1882,15 +1736,14 @@ def slip(
|
|
|
1882
1736
|
"""
|
|
1883
1737
|
|
|
1884
1738
|
def snap(
|
|
1885
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1886
1739
|
execution_context: int | str | None = None,
|
|
1887
1740
|
undo: bool | None = None,
|
|
1741
|
+
/,
|
|
1888
1742
|
*,
|
|
1889
1743
|
frame: int | None = 0,
|
|
1890
1744
|
):
|
|
1891
1745
|
"""Frame where selected strips will be snapped
|
|
1892
1746
|
|
|
1893
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1894
1747
|
:type execution_context: int | str | None
|
|
1895
1748
|
:type undo: bool | None
|
|
1896
1749
|
:param frame: Frame, Frame where selected strips will be snapped
|
|
@@ -1898,9 +1751,9 @@ def snap(
|
|
|
1898
1751
|
"""
|
|
1899
1752
|
|
|
1900
1753
|
def sound_strip_add(
|
|
1901
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1902
1754
|
execution_context: int | str | None = None,
|
|
1903
1755
|
undo: bool | None = None,
|
|
1756
|
+
/,
|
|
1904
1757
|
*,
|
|
1905
1758
|
filepath: str = "",
|
|
1906
1759
|
directory: str = "",
|
|
@@ -1949,7 +1802,6 @@ def sound_strip_add(
|
|
|
1949
1802
|
):
|
|
1950
1803
|
"""Add a sound strip to the sequencer
|
|
1951
1804
|
|
|
1952
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1953
1805
|
:type execution_context: int | str | None
|
|
1954
1806
|
:type undo: bool | None
|
|
1955
1807
|
:param filepath: File Path, Path to file
|
|
@@ -2049,9 +1901,9 @@ def sound_strip_add(
|
|
|
2049
1901
|
"""
|
|
2050
1902
|
|
|
2051
1903
|
def split(
|
|
2052
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2053
1904
|
execution_context: int | str | None = None,
|
|
2054
1905
|
undo: bool | None = None,
|
|
1906
|
+
/,
|
|
2055
1907
|
*,
|
|
2056
1908
|
frame: int | None = 0,
|
|
2057
1909
|
channel: int | None = 0,
|
|
@@ -2063,7 +1915,6 @@ def split(
|
|
|
2063
1915
|
):
|
|
2064
1916
|
"""Split the selected strips in two
|
|
2065
1917
|
|
|
2066
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2067
1918
|
:type execution_context: int | str | None
|
|
2068
1919
|
:type undo: bool | None
|
|
2069
1920
|
:param frame: Frame, Frame where selected strips will be split
|
|
@@ -2081,15 +1932,14 @@ def split(
|
|
|
2081
1932
|
"""
|
|
2082
1933
|
|
|
2083
1934
|
def split_multicam(
|
|
2084
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2085
1935
|
execution_context: int | str | None = None,
|
|
2086
1936
|
undo: bool | None = None,
|
|
1937
|
+
/,
|
|
2087
1938
|
*,
|
|
2088
1939
|
camera: int | None = 1,
|
|
2089
1940
|
):
|
|
2090
1941
|
"""Split multicam strip and select camera
|
|
2091
1942
|
|
|
2092
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2093
1943
|
:type execution_context: int | str | None
|
|
2094
1944
|
:type undo: bool | None
|
|
2095
1945
|
:param camera: Camera
|
|
@@ -2097,32 +1947,30 @@ def split_multicam(
|
|
|
2097
1947
|
"""
|
|
2098
1948
|
|
|
2099
1949
|
def strip_color_tag_set(
|
|
2100
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2101
1950
|
execution_context: int | str | None = None,
|
|
2102
1951
|
undo: bool | None = None,
|
|
1952
|
+
/,
|
|
2103
1953
|
*,
|
|
2104
|
-
color: bpy.
|
|
1954
|
+
color: bpy._typing.rna_enums.StripColorItems | None = "NONE",
|
|
2105
1955
|
):
|
|
2106
1956
|
"""Set a color tag for the selected strips
|
|
2107
1957
|
|
|
2108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2109
1958
|
:type execution_context: int | str | None
|
|
2110
1959
|
:type undo: bool | None
|
|
2111
1960
|
:param color: Color Tag
|
|
2112
|
-
:type color: bpy.
|
|
1961
|
+
:type color: bpy._typing.rna_enums.StripColorItems | None
|
|
2113
1962
|
"""
|
|
2114
1963
|
|
|
2115
1964
|
def strip_jump(
|
|
2116
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2117
1965
|
execution_context: int | str | None = None,
|
|
2118
1966
|
undo: bool | None = None,
|
|
1967
|
+
/,
|
|
2119
1968
|
*,
|
|
2120
1969
|
next: bool | None = True,
|
|
2121
1970
|
center: bool | None = True,
|
|
2122
1971
|
):
|
|
2123
1972
|
"""Move frame to previous edit point
|
|
2124
1973
|
|
|
2125
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2126
1974
|
:type execution_context: int | str | None
|
|
2127
1975
|
:type undo: bool | None
|
|
2128
1976
|
:param next: Next Strip
|
|
@@ -2132,15 +1980,14 @@ def strip_jump(
|
|
|
2132
1980
|
"""
|
|
2133
1981
|
|
|
2134
1982
|
def strip_modifier_add(
|
|
2135
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2136
1983
|
execution_context: int | str | None = None,
|
|
2137
1984
|
undo: bool | None = None,
|
|
1985
|
+
/,
|
|
2138
1986
|
*,
|
|
2139
1987
|
type: str | None = "",
|
|
2140
1988
|
):
|
|
2141
1989
|
"""Add a modifier to the strip
|
|
2142
1990
|
|
|
2143
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2144
1991
|
:type execution_context: int | str | None
|
|
2145
1992
|
:type undo: bool | None
|
|
2146
1993
|
:param type: Type
|
|
@@ -2148,15 +1995,14 @@ def strip_modifier_add(
|
|
|
2148
1995
|
"""
|
|
2149
1996
|
|
|
2150
1997
|
def strip_modifier_copy(
|
|
2151
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2152
1998
|
execution_context: int | str | None = None,
|
|
2153
1999
|
undo: bool | None = None,
|
|
2000
|
+
/,
|
|
2154
2001
|
*,
|
|
2155
2002
|
type: typing.Literal["REPLACE", "APPEND"] | None = "REPLACE",
|
|
2156
2003
|
):
|
|
2157
2004
|
"""Copy modifiers of the active strip to all selected strips
|
|
2158
2005
|
|
|
2159
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2160
2006
|
:type execution_context: int | str | None
|
|
2161
2007
|
:type undo: bool | None
|
|
2162
2008
|
:param type: Type
|
|
@@ -2170,16 +2016,15 @@ def strip_modifier_copy(
|
|
|
2170
2016
|
"""
|
|
2171
2017
|
|
|
2172
2018
|
def strip_modifier_equalizer_redefine(
|
|
2173
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2174
2019
|
execution_context: int | str | None = None,
|
|
2175
2020
|
undo: bool | None = None,
|
|
2021
|
+
/,
|
|
2176
2022
|
*,
|
|
2177
2023
|
graphs: typing.Literal["SIMPLE", "DOUBLE", "TRIPLE"] | None = "SIMPLE",
|
|
2178
2024
|
name: str = "Name",
|
|
2179
2025
|
):
|
|
2180
2026
|
"""Redefine equalizer graphs
|
|
2181
2027
|
|
|
2182
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2183
2028
|
:type execution_context: int | str | None
|
|
2184
2029
|
:type undo: bool | None
|
|
2185
2030
|
:param graphs: Graphs, Number of graphs
|
|
@@ -2198,16 +2043,15 @@ def strip_modifier_equalizer_redefine(
|
|
|
2198
2043
|
"""
|
|
2199
2044
|
|
|
2200
2045
|
def strip_modifier_move(
|
|
2201
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2202
2046
|
execution_context: int | str | None = None,
|
|
2203
2047
|
undo: bool | None = None,
|
|
2048
|
+
/,
|
|
2204
2049
|
*,
|
|
2205
2050
|
name: str = "Name",
|
|
2206
2051
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
2207
2052
|
):
|
|
2208
2053
|
"""Move modifier up and down in the stack
|
|
2209
2054
|
|
|
2210
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2211
2055
|
:type execution_context: int | str | None
|
|
2212
2056
|
:type undo: bool | None
|
|
2213
2057
|
:param name: Name, Name of modifier to remove
|
|
@@ -2223,15 +2067,14 @@ def strip_modifier_move(
|
|
|
2223
2067
|
"""
|
|
2224
2068
|
|
|
2225
2069
|
def strip_modifier_remove(
|
|
2226
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2227
2070
|
execution_context: int | str | None = None,
|
|
2228
2071
|
undo: bool | None = None,
|
|
2072
|
+
/,
|
|
2229
2073
|
*,
|
|
2230
2074
|
name: str = "Name",
|
|
2231
2075
|
):
|
|
2232
2076
|
"""Remove a modifier from the strip
|
|
2233
2077
|
|
|
2234
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2235
2078
|
:type execution_context: int | str | None
|
|
2236
2079
|
:type undo: bool | None
|
|
2237
2080
|
:param name: Name, Name of modifier to remove
|
|
@@ -2239,15 +2082,14 @@ def strip_modifier_remove(
|
|
|
2239
2082
|
"""
|
|
2240
2083
|
|
|
2241
2084
|
def strip_transform_clear(
|
|
2242
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2243
2085
|
execution_context: int | str | None = None,
|
|
2244
2086
|
undo: bool | None = None,
|
|
2087
|
+
/,
|
|
2245
2088
|
*,
|
|
2246
2089
|
property: typing.Literal["POSITION", "SCALE", "ROTATION", "ALL"] | None = "ALL",
|
|
2247
2090
|
):
|
|
2248
2091
|
"""Reset image transformation to default value
|
|
2249
2092
|
|
|
2250
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2251
2093
|
:type execution_context: int | str | None
|
|
2252
2094
|
:type undo: bool | None
|
|
2253
2095
|
:param property: Property, Strip transform property to be reset
|
|
@@ -2267,15 +2109,14 @@ def strip_transform_clear(
|
|
|
2267
2109
|
"""
|
|
2268
2110
|
|
|
2269
2111
|
def strip_transform_fit(
|
|
2270
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2271
2112
|
execution_context: int | str | None = None,
|
|
2272
2113
|
undo: bool | None = None,
|
|
2114
|
+
/,
|
|
2273
2115
|
*,
|
|
2274
2116
|
fit_method: typing.Literal["FIT", "FILL", "STRETCH"] | None = "FIT",
|
|
2275
2117
|
):
|
|
2276
2118
|
"""Undocumented, consider contributing.
|
|
2277
2119
|
|
|
2278
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2279
2120
|
:type execution_context: int | str | None
|
|
2280
2121
|
:type undo: bool | None
|
|
2281
2122
|
:param fit_method: Fit Method, Scale fit fit_method
|
|
@@ -2292,49 +2133,38 @@ def strip_transform_fit(
|
|
|
2292
2133
|
"""
|
|
2293
2134
|
|
|
2294
2135
|
def swap(
|
|
2295
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2296
2136
|
execution_context: int | str | None = None,
|
|
2297
2137
|
undo: bool | None = None,
|
|
2138
|
+
/,
|
|
2298
2139
|
*,
|
|
2299
2140
|
side: typing.Literal["LEFT", "RIGHT"] | None = "RIGHT",
|
|
2300
2141
|
):
|
|
2301
2142
|
"""Swap active strip with strip to the right or left
|
|
2302
2143
|
|
|
2303
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2304
2144
|
:type execution_context: int | str | None
|
|
2305
2145
|
:type undo: bool | None
|
|
2306
2146
|
:param side: Side, Side of the strip to swap
|
|
2307
2147
|
:type side: typing.Literal['LEFT','RIGHT'] | None
|
|
2308
2148
|
"""
|
|
2309
2149
|
|
|
2310
|
-
def swap_data(
|
|
2311
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2312
|
-
execution_context: int | str | None = None,
|
|
2313
|
-
undo: bool | None = None,
|
|
2314
|
-
):
|
|
2150
|
+
def swap_data(execution_context: int | str | None = None, undo: bool | None = None):
|
|
2315
2151
|
"""Swap 2 sequencer strips
|
|
2316
2152
|
|
|
2317
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2318
2153
|
:type execution_context: int | str | None
|
|
2319
2154
|
:type undo: bool | None
|
|
2320
2155
|
"""
|
|
2321
2156
|
|
|
2322
|
-
def swap_inputs(
|
|
2323
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2324
|
-
execution_context: int | str | None = None,
|
|
2325
|
-
undo: bool | None = None,
|
|
2326
|
-
):
|
|
2157
|
+
def swap_inputs(execution_context: int | str | None = None, undo: bool | None = None):
|
|
2327
2158
|
"""Swap the two inputs of the effect strip
|
|
2328
2159
|
|
|
2329
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2330
2160
|
:type execution_context: int | str | None
|
|
2331
2161
|
:type undo: bool | None
|
|
2332
2162
|
"""
|
|
2333
2163
|
|
|
2334
2164
|
def text_cursor_move(
|
|
2335
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2336
2165
|
execution_context: int | str | None = None,
|
|
2337
2166
|
undo: bool | None = None,
|
|
2167
|
+
/,
|
|
2338
2168
|
*,
|
|
2339
2169
|
type: typing.Literal[
|
|
2340
2170
|
"LINE_BEGIN",
|
|
@@ -2353,7 +2183,6 @@ def text_cursor_move(
|
|
|
2353
2183
|
):
|
|
2354
2184
|
"""Move cursor in text
|
|
2355
2185
|
|
|
2356
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2357
2186
|
:type execution_context: int | str | None
|
|
2358
2187
|
:type undo: bool | None
|
|
2359
2188
|
:param type: Type, Where to move cursor to, to make a selection
|
|
@@ -2363,15 +2192,14 @@ def text_cursor_move(
|
|
|
2363
2192
|
"""
|
|
2364
2193
|
|
|
2365
2194
|
def text_cursor_set(
|
|
2366
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2367
2195
|
execution_context: int | str | None = None,
|
|
2368
2196
|
undo: bool | None = None,
|
|
2197
|
+
/,
|
|
2369
2198
|
*,
|
|
2370
2199
|
select_text: bool | None = False,
|
|
2371
2200
|
):
|
|
2372
2201
|
"""Set cursor position in text
|
|
2373
2202
|
|
|
2374
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2375
2203
|
:type execution_context: int | str | None
|
|
2376
2204
|
:type undo: bool | None
|
|
2377
2205
|
:param select_text: Select Text, Select text while moving cursor
|
|
@@ -2379,16 +2207,15 @@ def text_cursor_set(
|
|
|
2379
2207
|
"""
|
|
2380
2208
|
|
|
2381
2209
|
def text_delete(
|
|
2382
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2383
2210
|
execution_context: int | str | None = None,
|
|
2384
2211
|
undo: bool | None = None,
|
|
2212
|
+
/,
|
|
2385
2213
|
*,
|
|
2386
2214
|
type: typing.Literal["NEXT_OR_SELECTION", "PREVIOUS_OR_SELECTION"]
|
|
2387
2215
|
| None = "NEXT_OR_SELECTION",
|
|
2388
2216
|
):
|
|
2389
2217
|
"""Delete text at cursor position
|
|
2390
2218
|
|
|
2391
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2392
2219
|
:type execution_context: int | str | None
|
|
2393
2220
|
:type undo: bool | None
|
|
2394
2221
|
:param type: Type, Which part of the text to delete
|
|
@@ -2396,75 +2223,57 @@ def text_delete(
|
|
|
2396
2223
|
"""
|
|
2397
2224
|
|
|
2398
2225
|
def text_deselect_all(
|
|
2399
|
-
|
|
2400
|
-
execution_context: int | str | None = None,
|
|
2401
|
-
undo: bool | None = None,
|
|
2226
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2402
2227
|
):
|
|
2403
2228
|
"""Deselect all characters
|
|
2404
2229
|
|
|
2405
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2406
2230
|
:type execution_context: int | str | None
|
|
2407
2231
|
:type undo: bool | None
|
|
2408
2232
|
"""
|
|
2409
2233
|
|
|
2410
2234
|
def text_edit_copy(
|
|
2411
|
-
|
|
2412
|
-
execution_context: int | str | None = None,
|
|
2413
|
-
undo: bool | None = None,
|
|
2235
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2414
2236
|
):
|
|
2415
2237
|
"""Copy text to clipboard
|
|
2416
2238
|
|
|
2417
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2418
2239
|
:type execution_context: int | str | None
|
|
2419
2240
|
:type undo: bool | None
|
|
2420
2241
|
"""
|
|
2421
2242
|
|
|
2422
|
-
def text_edit_cut(
|
|
2423
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2424
|
-
execution_context: int | str | None = None,
|
|
2425
|
-
undo: bool | None = None,
|
|
2426
|
-
):
|
|
2243
|
+
def text_edit_cut(execution_context: int | str | None = None, undo: bool | None = None):
|
|
2427
2244
|
"""Cut text to clipboard
|
|
2428
2245
|
|
|
2429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2430
2246
|
:type execution_context: int | str | None
|
|
2431
2247
|
:type undo: bool | None
|
|
2432
2248
|
"""
|
|
2433
2249
|
|
|
2434
2250
|
def text_edit_mode_toggle(
|
|
2435
|
-
|
|
2436
|
-
execution_context: int | str | None = None,
|
|
2437
|
-
undo: bool | None = None,
|
|
2251
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2438
2252
|
):
|
|
2439
2253
|
"""Toggle text editing
|
|
2440
2254
|
|
|
2441
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2442
2255
|
:type execution_context: int | str | None
|
|
2443
2256
|
:type undo: bool | None
|
|
2444
2257
|
"""
|
|
2445
2258
|
|
|
2446
2259
|
def text_edit_paste(
|
|
2447
|
-
|
|
2448
|
-
execution_context: int | str | None = None,
|
|
2449
|
-
undo: bool | None = None,
|
|
2260
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2450
2261
|
):
|
|
2451
2262
|
"""Paste text to clipboard
|
|
2452
2263
|
|
|
2453
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2454
2264
|
:type execution_context: int | str | None
|
|
2455
2265
|
:type undo: bool | None
|
|
2456
2266
|
"""
|
|
2457
2267
|
|
|
2458
2268
|
def text_insert(
|
|
2459
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2460
2269
|
execution_context: int | str | None = None,
|
|
2461
2270
|
undo: bool | None = None,
|
|
2271
|
+
/,
|
|
2462
2272
|
*,
|
|
2463
2273
|
string: str = "",
|
|
2464
2274
|
):
|
|
2465
2275
|
"""Insert text at cursor position
|
|
2466
2276
|
|
|
2467
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2468
2277
|
:type execution_context: int | str | None
|
|
2469
2278
|
:type undo: bool | None
|
|
2470
2279
|
:param string: String, String to be inserted at cursor position
|
|
@@ -2472,97 +2281,72 @@ def text_insert(
|
|
|
2472
2281
|
"""
|
|
2473
2282
|
|
|
2474
2283
|
def text_line_break(
|
|
2475
|
-
|
|
2476
|
-
execution_context: int | str | None = None,
|
|
2477
|
-
undo: bool | None = None,
|
|
2284
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2478
2285
|
):
|
|
2479
2286
|
"""Insert line break at cursor position
|
|
2480
2287
|
|
|
2481
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2482
2288
|
:type execution_context: int | str | None
|
|
2483
2289
|
:type undo: bool | None
|
|
2484
2290
|
"""
|
|
2485
2291
|
|
|
2486
2292
|
def text_select_all(
|
|
2487
|
-
|
|
2488
|
-
execution_context: int | str | None = None,
|
|
2489
|
-
undo: bool | None = None,
|
|
2293
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2490
2294
|
):
|
|
2491
2295
|
"""Select all characters
|
|
2492
2296
|
|
|
2493
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2494
2297
|
:type execution_context: int | str | None
|
|
2495
2298
|
:type undo: bool | None
|
|
2496
2299
|
"""
|
|
2497
2300
|
|
|
2498
|
-
def unlock(
|
|
2499
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2500
|
-
execution_context: int | str | None = None,
|
|
2501
|
-
undo: bool | None = None,
|
|
2502
|
-
):
|
|
2301
|
+
def unlock(execution_context: int | str | None = None, undo: bool | None = None):
|
|
2503
2302
|
"""Unlock strips so they can be transformed
|
|
2504
2303
|
|
|
2505
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2506
2304
|
:type execution_context: int | str | None
|
|
2507
2305
|
:type undo: bool | None
|
|
2508
2306
|
"""
|
|
2509
2307
|
|
|
2510
2308
|
def unmute(
|
|
2511
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2512
2309
|
execution_context: int | str | None = None,
|
|
2513
2310
|
undo: bool | None = None,
|
|
2311
|
+
/,
|
|
2514
2312
|
*,
|
|
2515
2313
|
unselected: bool | None = False,
|
|
2516
2314
|
):
|
|
2517
2315
|
"""Unmute (un)selected strips
|
|
2518
2316
|
|
|
2519
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2520
2317
|
:type execution_context: int | str | None
|
|
2521
2318
|
:type undo: bool | None
|
|
2522
2319
|
:param unselected: Unselected, Unmute unselected rather than selected strips
|
|
2523
2320
|
:type unselected: bool | None
|
|
2524
2321
|
"""
|
|
2525
2322
|
|
|
2526
|
-
def view_all(
|
|
2527
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2528
|
-
execution_context: int | str | None = None,
|
|
2529
|
-
undo: bool | None = None,
|
|
2530
|
-
):
|
|
2323
|
+
def view_all(execution_context: int | str | None = None, undo: bool | None = None):
|
|
2531
2324
|
"""View all the strips in the sequencer
|
|
2532
2325
|
|
|
2533
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2534
2326
|
:type execution_context: int | str | None
|
|
2535
2327
|
:type undo: bool | None
|
|
2536
2328
|
"""
|
|
2537
2329
|
|
|
2538
2330
|
def view_all_preview(
|
|
2539
|
-
|
|
2540
|
-
execution_context: int | str | None = None,
|
|
2541
|
-
undo: bool | None = None,
|
|
2331
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2542
2332
|
):
|
|
2543
2333
|
"""Zoom preview to fit in the area
|
|
2544
2334
|
|
|
2545
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2546
2335
|
:type execution_context: int | str | None
|
|
2547
2336
|
:type undo: bool | None
|
|
2548
2337
|
"""
|
|
2549
2338
|
|
|
2550
|
-
def view_frame(
|
|
2551
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2552
|
-
execution_context: int | str | None = None,
|
|
2553
|
-
undo: bool | None = None,
|
|
2554
|
-
):
|
|
2339
|
+
def view_frame(execution_context: int | str | None = None, undo: bool | None = None):
|
|
2555
2340
|
"""Move the view to the current frame
|
|
2556
2341
|
|
|
2557
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2558
2342
|
:type execution_context: int | str | None
|
|
2559
2343
|
:type undo: bool | None
|
|
2560
2344
|
"""
|
|
2561
2345
|
|
|
2562
2346
|
def view_ghost_border(
|
|
2563
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2564
2347
|
execution_context: int | str | None = None,
|
|
2565
2348
|
undo: bool | None = None,
|
|
2349
|
+
/,
|
|
2566
2350
|
*,
|
|
2567
2351
|
xmin: int | None = 0,
|
|
2568
2352
|
xmax: int | None = 0,
|
|
@@ -2572,7 +2356,6 @@ def view_ghost_border(
|
|
|
2572
2356
|
):
|
|
2573
2357
|
"""Set the boundaries of the border used for offset view
|
|
2574
2358
|
|
|
2575
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2576
2359
|
:type execution_context: int | str | None
|
|
2577
2360
|
:type undo: bool | None
|
|
2578
2361
|
:param xmin: X Min
|
|
@@ -2587,28 +2370,22 @@ def view_ghost_border(
|
|
|
2587
2370
|
:type wait_for_input: bool | None
|
|
2588
2371
|
"""
|
|
2589
2372
|
|
|
2590
|
-
def view_selected(
|
|
2591
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2592
|
-
execution_context: int | str | None = None,
|
|
2593
|
-
undo: bool | None = None,
|
|
2594
|
-
):
|
|
2373
|
+
def view_selected(execution_context: int | str | None = None, undo: bool | None = None):
|
|
2595
2374
|
"""Zoom the sequencer on the selected strips
|
|
2596
2375
|
|
|
2597
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2598
2376
|
:type execution_context: int | str | None
|
|
2599
2377
|
:type undo: bool | None
|
|
2600
2378
|
"""
|
|
2601
2379
|
|
|
2602
2380
|
def view_zoom_ratio(
|
|
2603
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2604
2381
|
execution_context: int | str | None = None,
|
|
2605
2382
|
undo: bool | None = None,
|
|
2383
|
+
/,
|
|
2606
2384
|
*,
|
|
2607
2385
|
ratio: float | None = 1.0,
|
|
2608
2386
|
):
|
|
2609
2387
|
"""Change zoom ratio of sequencer preview
|
|
2610
2388
|
|
|
2611
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2612
2389
|
:type execution_context: int | str | None
|
|
2613
2390
|
:type undo: bool | None
|
|
2614
2391
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|