fake-bpy-module 20240620__py3-none-any.whl → 20240621__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/space_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1611 -1802
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import bpy.ops.transform
|
|
4
4
|
import bpy.types
|
|
5
|
+
import mathutils
|
|
5
6
|
|
|
6
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
7
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -101,34 +102,34 @@ def change_path(
|
|
|
101
102
|
execution_context: int | str | None = None,
|
|
102
103
|
undo: bool | None = None,
|
|
103
104
|
*,
|
|
104
|
-
filepath: str
|
|
105
|
-
directory: str
|
|
105
|
+
filepath: str = "",
|
|
106
|
+
directory: str = "",
|
|
106
107
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
107
108
|
| None = None,
|
|
108
|
-
hide_props_region: bool |
|
|
109
|
-
check_existing: bool |
|
|
110
|
-
filter_blender: bool |
|
|
111
|
-
filter_backup: bool |
|
|
112
|
-
filter_image: bool |
|
|
113
|
-
filter_movie: bool |
|
|
114
|
-
filter_python: bool |
|
|
115
|
-
filter_font: bool |
|
|
116
|
-
filter_sound: bool |
|
|
117
|
-
filter_text: bool |
|
|
118
|
-
filter_archive: bool |
|
|
119
|
-
filter_btx: bool |
|
|
120
|
-
filter_collada: bool |
|
|
121
|
-
filter_alembic: bool |
|
|
122
|
-
filter_usd: bool |
|
|
123
|
-
filter_obj: bool |
|
|
124
|
-
filter_volume: bool |
|
|
125
|
-
filter_folder: bool |
|
|
126
|
-
filter_blenlib: bool |
|
|
127
|
-
filemode:
|
|
128
|
-
relative_path: bool |
|
|
109
|
+
hide_props_region: bool | None = True,
|
|
110
|
+
check_existing: bool | None = False,
|
|
111
|
+
filter_blender: bool | None = False,
|
|
112
|
+
filter_backup: bool | None = False,
|
|
113
|
+
filter_image: bool | None = False,
|
|
114
|
+
filter_movie: bool | None = False,
|
|
115
|
+
filter_python: bool | None = False,
|
|
116
|
+
filter_font: bool | None = False,
|
|
117
|
+
filter_sound: bool | None = False,
|
|
118
|
+
filter_text: bool | None = False,
|
|
119
|
+
filter_archive: bool | None = False,
|
|
120
|
+
filter_btx: bool | None = False,
|
|
121
|
+
filter_collada: bool | None = False,
|
|
122
|
+
filter_alembic: bool | None = False,
|
|
123
|
+
filter_usd: bool | None = False,
|
|
124
|
+
filter_obj: bool | None = False,
|
|
125
|
+
filter_volume: bool | None = False,
|
|
126
|
+
filter_folder: bool | None = True,
|
|
127
|
+
filter_blenlib: bool | None = False,
|
|
128
|
+
filemode: int | None = 9,
|
|
129
|
+
relative_path: bool | None = True,
|
|
129
130
|
display_type: str | None = "DEFAULT",
|
|
130
131
|
sort_method: str | None = "",
|
|
131
|
-
use_placeholders: bool |
|
|
132
|
+
use_placeholders: bool | None = False,
|
|
132
133
|
):
|
|
133
134
|
"""Undocumented, consider contributing.
|
|
134
135
|
|
|
@@ -136,53 +137,53 @@ def change_path(
|
|
|
136
137
|
:type execution_context: int | str | None
|
|
137
138
|
:type undo: bool | None
|
|
138
139
|
:param filepath: File Path, Path to file
|
|
139
|
-
:type filepath: str
|
|
140
|
+
:type filepath: str
|
|
140
141
|
:param directory: Directory, Directory of the file
|
|
141
|
-
:type directory: str
|
|
142
|
+
:type directory: str
|
|
142
143
|
:param files: Files
|
|
143
144
|
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
144
145
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
145
|
-
:type hide_props_region: bool |
|
|
146
|
+
:type hide_props_region: bool | None
|
|
146
147
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
147
|
-
:type check_existing: bool |
|
|
148
|
+
:type check_existing: bool | None
|
|
148
149
|
:param filter_blender: Filter .blend files
|
|
149
|
-
:type filter_blender: bool |
|
|
150
|
+
:type filter_blender: bool | None
|
|
150
151
|
:param filter_backup: Filter .blend files
|
|
151
|
-
:type filter_backup: bool |
|
|
152
|
+
:type filter_backup: bool | None
|
|
152
153
|
:param filter_image: Filter image files
|
|
153
|
-
:type filter_image: bool |
|
|
154
|
+
:type filter_image: bool | None
|
|
154
155
|
:param filter_movie: Filter movie files
|
|
155
|
-
:type filter_movie: bool |
|
|
156
|
+
:type filter_movie: bool | None
|
|
156
157
|
:param filter_python: Filter Python files
|
|
157
|
-
:type filter_python: bool |
|
|
158
|
+
:type filter_python: bool | None
|
|
158
159
|
:param filter_font: Filter font files
|
|
159
|
-
:type filter_font: bool |
|
|
160
|
+
:type filter_font: bool | None
|
|
160
161
|
:param filter_sound: Filter sound files
|
|
161
|
-
:type filter_sound: bool |
|
|
162
|
+
:type filter_sound: bool | None
|
|
162
163
|
:param filter_text: Filter text files
|
|
163
|
-
:type filter_text: bool |
|
|
164
|
+
:type filter_text: bool | None
|
|
164
165
|
:param filter_archive: Filter archive files
|
|
165
|
-
:type filter_archive: bool |
|
|
166
|
+
:type filter_archive: bool | None
|
|
166
167
|
:param filter_btx: Filter btx files
|
|
167
|
-
:type filter_btx: bool |
|
|
168
|
+
:type filter_btx: bool | None
|
|
168
169
|
:param filter_collada: Filter COLLADA files
|
|
169
|
-
:type filter_collada: bool |
|
|
170
|
+
:type filter_collada: bool | None
|
|
170
171
|
:param filter_alembic: Filter Alembic files
|
|
171
|
-
:type filter_alembic: bool |
|
|
172
|
+
:type filter_alembic: bool | None
|
|
172
173
|
:param filter_usd: Filter USD files
|
|
173
|
-
:type filter_usd: bool |
|
|
174
|
+
:type filter_usd: bool | None
|
|
174
175
|
:param filter_obj: Filter OBJ files
|
|
175
|
-
:type filter_obj: bool |
|
|
176
|
+
:type filter_obj: bool | None
|
|
176
177
|
:param filter_volume: Filter OpenVDB volume files
|
|
177
|
-
:type filter_volume: bool |
|
|
178
|
+
:type filter_volume: bool | None
|
|
178
179
|
:param filter_folder: Filter folders
|
|
179
|
-
:type filter_folder: bool |
|
|
180
|
+
:type filter_folder: bool | None
|
|
180
181
|
:param filter_blenlib: Filter Blender IDs
|
|
181
|
-
:type filter_blenlib: bool |
|
|
182
|
+
:type filter_blenlib: bool | None
|
|
182
183
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
183
|
-
:type filemode:
|
|
184
|
+
:type filemode: int | None
|
|
184
185
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
185
|
-
:type relative_path: bool |
|
|
186
|
+
:type relative_path: bool | None
|
|
186
187
|
:param display_type: Display Type
|
|
187
188
|
|
|
188
189
|
DEFAULT
|
|
@@ -200,7 +201,7 @@ def change_path(
|
|
|
200
201
|
:param sort_method: File sorting mode
|
|
201
202
|
:type sort_method: str | None
|
|
202
203
|
:param use_placeholders: Use Placeholders, Use placeholders for missing frames of the strip
|
|
203
|
-
:type use_placeholders: bool |
|
|
204
|
+
:type use_placeholders: bool | None
|
|
204
205
|
"""
|
|
205
206
|
|
|
206
207
|
...
|
|
@@ -256,7 +257,7 @@ def cursor_set(
|
|
|
256
257
|
execution_context: int | str | None = None,
|
|
257
258
|
undo: bool | None = None,
|
|
258
259
|
*,
|
|
259
|
-
location:
|
|
260
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
260
261
|
):
|
|
261
262
|
"""Set 2D cursor location
|
|
262
263
|
|
|
@@ -264,7 +265,7 @@ def cursor_set(
|
|
|
264
265
|
:type execution_context: int | str | None
|
|
265
266
|
:type undo: bool | None
|
|
266
267
|
:param location: Location, Cursor location in normalized preview coordinates
|
|
267
|
-
:type location:
|
|
268
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
268
269
|
"""
|
|
269
270
|
|
|
270
271
|
...
|
|
@@ -288,8 +289,8 @@ def delete(
|
|
|
288
289
|
execution_context: int | str | None = None,
|
|
289
290
|
undo: bool | None = None,
|
|
290
291
|
*,
|
|
291
|
-
delete_data: bool |
|
|
292
|
-
use_retiming_mode: bool |
|
|
292
|
+
delete_data: bool | None = False,
|
|
293
|
+
use_retiming_mode: bool | None = False,
|
|
293
294
|
):
|
|
294
295
|
"""Delete selected strips from the sequencer
|
|
295
296
|
|
|
@@ -297,9 +298,9 @@ def delete(
|
|
|
297
298
|
:type execution_context: int | str | None
|
|
298
299
|
:type undo: bool | None
|
|
299
300
|
:param delete_data: Delete Data, After removing the Strip, delete the associated data also
|
|
300
|
-
:type delete_data: bool |
|
|
301
|
+
:type delete_data: bool | None
|
|
301
302
|
:param use_retiming_mode: Use Retiming Data, Operate on retiming data instead of strips
|
|
302
|
-
:type use_retiming_mode: bool |
|
|
303
|
+
:type use_retiming_mode: bool | None
|
|
303
304
|
"""
|
|
304
305
|
|
|
305
306
|
...
|
|
@@ -345,13 +346,13 @@ def effect_strip_add(
|
|
|
345
346
|
undo: bool | None = None,
|
|
346
347
|
*,
|
|
347
348
|
type: str | None = "CROSS",
|
|
348
|
-
frame_start:
|
|
349
|
-
frame_end:
|
|
350
|
-
channel:
|
|
351
|
-
replace_sel: bool |
|
|
352
|
-
overlap: bool |
|
|
353
|
-
overlap_shuffle_override: bool |
|
|
354
|
-
color:
|
|
349
|
+
frame_start: int | None = 0,
|
|
350
|
+
frame_end: int | None = 0,
|
|
351
|
+
channel: int | None = 1,
|
|
352
|
+
replace_sel: bool | None = True,
|
|
353
|
+
overlap: bool | None = False,
|
|
354
|
+
overlap_shuffle_override: bool | None = False,
|
|
355
|
+
color: collections.abc.Sequence[float] | mathutils.Color | None = (0.0, 0.0, 0.0),
|
|
355
356
|
):
|
|
356
357
|
"""Add an effect to the sequencer, most are applied on top of existing strips
|
|
357
358
|
|
|
@@ -415,19 +416,19 @@ def effect_strip_add(
|
|
|
415
416
|
Color Mix.
|
|
416
417
|
:type type: str | None
|
|
417
418
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
418
|
-
:type frame_start:
|
|
419
|
+
:type frame_start: int | None
|
|
419
420
|
:param frame_end: End Frame, End frame for the color strip
|
|
420
|
-
:type frame_end:
|
|
421
|
+
:type frame_end: int | None
|
|
421
422
|
:param channel: Channel, Channel to place this strip into
|
|
422
|
-
:type channel:
|
|
423
|
+
:type channel: int | None
|
|
423
424
|
:param replace_sel: Replace Selection, Replace the current selection
|
|
424
|
-
:type replace_sel: bool |
|
|
425
|
+
:type replace_sel: bool | None
|
|
425
426
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
426
|
-
:type overlap: bool |
|
|
427
|
+
:type overlap: bool | None
|
|
427
428
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
428
|
-
:type overlap_shuffle_override: bool |
|
|
429
|
+
:type overlap_shuffle_override: bool | None
|
|
429
430
|
:param color: Color, Initialize the strip with this color
|
|
430
|
-
:type color:
|
|
431
|
+
:type color: collections.abc.Sequence[float] | mathutils.Color | None
|
|
431
432
|
"""
|
|
432
433
|
|
|
433
434
|
...
|
|
@@ -437,11 +438,11 @@ def enable_proxies(
|
|
|
437
438
|
execution_context: int | str | None = None,
|
|
438
439
|
undo: bool | None = None,
|
|
439
440
|
*,
|
|
440
|
-
proxy_25: bool |
|
|
441
|
-
proxy_50: bool |
|
|
442
|
-
proxy_75: bool |
|
|
443
|
-
proxy_100: bool |
|
|
444
|
-
overwrite: bool |
|
|
441
|
+
proxy_25: bool | None = False,
|
|
442
|
+
proxy_50: bool | None = False,
|
|
443
|
+
proxy_75: bool | None = False,
|
|
444
|
+
proxy_100: bool | None = False,
|
|
445
|
+
overwrite: bool | None = False,
|
|
445
446
|
):
|
|
446
447
|
"""Enable selected proxies on all selected Movie and Image strips
|
|
447
448
|
|
|
@@ -449,15 +450,15 @@ def enable_proxies(
|
|
|
449
450
|
:type execution_context: int | str | None
|
|
450
451
|
:type undo: bool | None
|
|
451
452
|
:param proxy_25: 25%
|
|
452
|
-
:type proxy_25: bool |
|
|
453
|
+
:type proxy_25: bool | None
|
|
453
454
|
:param proxy_50: 50%
|
|
454
|
-
:type proxy_50: bool |
|
|
455
|
+
:type proxy_50: bool | None
|
|
455
456
|
:param proxy_75: 75%
|
|
456
|
-
:type proxy_75: bool |
|
|
457
|
+
:type proxy_75: bool | None
|
|
457
458
|
:param proxy_100: 100%
|
|
458
|
-
:type proxy_100: bool |
|
|
459
|
+
:type proxy_100: bool | None
|
|
459
460
|
:param overwrite: Overwrite
|
|
460
|
-
:type overwrite: bool |
|
|
461
|
+
:type overwrite: bool | None
|
|
461
462
|
"""
|
|
462
463
|
|
|
463
464
|
...
|
|
@@ -467,27 +468,27 @@ def export_subtitles(
|
|
|
467
468
|
execution_context: int | str | None = None,
|
|
468
469
|
undo: bool | None = None,
|
|
469
470
|
*,
|
|
470
|
-
filepath: str
|
|
471
|
-
hide_props_region: bool |
|
|
472
|
-
check_existing: bool |
|
|
473
|
-
filter_blender: bool |
|
|
474
|
-
filter_backup: bool |
|
|
475
|
-
filter_image: bool |
|
|
476
|
-
filter_movie: bool |
|
|
477
|
-
filter_python: bool |
|
|
478
|
-
filter_font: bool |
|
|
479
|
-
filter_sound: bool |
|
|
480
|
-
filter_text: bool |
|
|
481
|
-
filter_archive: bool |
|
|
482
|
-
filter_btx: bool |
|
|
483
|
-
filter_collada: bool |
|
|
484
|
-
filter_alembic: bool |
|
|
485
|
-
filter_usd: bool |
|
|
486
|
-
filter_obj: bool |
|
|
487
|
-
filter_volume: bool |
|
|
488
|
-
filter_folder: bool |
|
|
489
|
-
filter_blenlib: bool |
|
|
490
|
-
filemode:
|
|
471
|
+
filepath: str = "",
|
|
472
|
+
hide_props_region: bool | None = True,
|
|
473
|
+
check_existing: bool | None = True,
|
|
474
|
+
filter_blender: bool | None = False,
|
|
475
|
+
filter_backup: bool | None = False,
|
|
476
|
+
filter_image: bool | None = False,
|
|
477
|
+
filter_movie: bool | None = False,
|
|
478
|
+
filter_python: bool | None = False,
|
|
479
|
+
filter_font: bool | None = False,
|
|
480
|
+
filter_sound: bool | None = False,
|
|
481
|
+
filter_text: bool | None = False,
|
|
482
|
+
filter_archive: bool | None = False,
|
|
483
|
+
filter_btx: bool | None = False,
|
|
484
|
+
filter_collada: bool | None = False,
|
|
485
|
+
filter_alembic: bool | None = False,
|
|
486
|
+
filter_usd: bool | None = False,
|
|
487
|
+
filter_obj: bool | None = False,
|
|
488
|
+
filter_volume: bool | None = False,
|
|
489
|
+
filter_folder: bool | None = True,
|
|
490
|
+
filter_blenlib: bool | None = False,
|
|
491
|
+
filemode: int | None = 8,
|
|
491
492
|
display_type: str | None = "DEFAULT",
|
|
492
493
|
sort_method: str | None = "",
|
|
493
494
|
):
|
|
@@ -497,47 +498,47 @@ def export_subtitles(
|
|
|
497
498
|
:type execution_context: int | str | None
|
|
498
499
|
:type undo: bool | None
|
|
499
500
|
:param filepath: File Path, Path to file
|
|
500
|
-
:type filepath: str
|
|
501
|
+
:type filepath: str
|
|
501
502
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
502
|
-
:type hide_props_region: bool |
|
|
503
|
+
:type hide_props_region: bool | None
|
|
503
504
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
504
|
-
:type check_existing: bool |
|
|
505
|
+
:type check_existing: bool | None
|
|
505
506
|
:param filter_blender: Filter .blend files
|
|
506
|
-
:type filter_blender: bool |
|
|
507
|
+
:type filter_blender: bool | None
|
|
507
508
|
:param filter_backup: Filter .blend files
|
|
508
|
-
:type filter_backup: bool |
|
|
509
|
+
:type filter_backup: bool | None
|
|
509
510
|
:param filter_image: Filter image files
|
|
510
|
-
:type filter_image: bool |
|
|
511
|
+
:type filter_image: bool | None
|
|
511
512
|
:param filter_movie: Filter movie files
|
|
512
|
-
:type filter_movie: bool |
|
|
513
|
+
:type filter_movie: bool | None
|
|
513
514
|
:param filter_python: Filter Python files
|
|
514
|
-
:type filter_python: bool |
|
|
515
|
+
:type filter_python: bool | None
|
|
515
516
|
:param filter_font: Filter font files
|
|
516
|
-
:type filter_font: bool |
|
|
517
|
+
:type filter_font: bool | None
|
|
517
518
|
:param filter_sound: Filter sound files
|
|
518
|
-
:type filter_sound: bool |
|
|
519
|
+
:type filter_sound: bool | None
|
|
519
520
|
:param filter_text: Filter text files
|
|
520
|
-
:type filter_text: bool |
|
|
521
|
+
:type filter_text: bool | None
|
|
521
522
|
:param filter_archive: Filter archive files
|
|
522
|
-
:type filter_archive: bool |
|
|
523
|
+
:type filter_archive: bool | None
|
|
523
524
|
:param filter_btx: Filter btx files
|
|
524
|
-
:type filter_btx: bool |
|
|
525
|
+
:type filter_btx: bool | None
|
|
525
526
|
:param filter_collada: Filter COLLADA files
|
|
526
|
-
:type filter_collada: bool |
|
|
527
|
+
:type filter_collada: bool | None
|
|
527
528
|
:param filter_alembic: Filter Alembic files
|
|
528
|
-
:type filter_alembic: bool |
|
|
529
|
+
:type filter_alembic: bool | None
|
|
529
530
|
:param filter_usd: Filter USD files
|
|
530
|
-
:type filter_usd: bool |
|
|
531
|
+
:type filter_usd: bool | None
|
|
531
532
|
:param filter_obj: Filter OBJ files
|
|
532
|
-
:type filter_obj: bool |
|
|
533
|
+
:type filter_obj: bool | None
|
|
533
534
|
:param filter_volume: Filter OpenVDB volume files
|
|
534
|
-
:type filter_volume: bool |
|
|
535
|
+
:type filter_volume: bool | None
|
|
535
536
|
:param filter_folder: Filter folders
|
|
536
|
-
:type filter_folder: bool |
|
|
537
|
+
:type filter_folder: bool | None
|
|
537
538
|
:param filter_blenlib: Filter Blender IDs
|
|
538
|
-
:type filter_blenlib: bool |
|
|
539
|
+
:type filter_blenlib: bool | None
|
|
539
540
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
540
|
-
:type filemode:
|
|
541
|
+
:type filemode: int | None
|
|
541
542
|
:param display_type: Display Type
|
|
542
543
|
|
|
543
544
|
DEFAULT
|
|
@@ -563,7 +564,7 @@ def fades_add(
|
|
|
563
564
|
execution_context: int | str | None = None,
|
|
564
565
|
undo: bool | None = None,
|
|
565
566
|
*,
|
|
566
|
-
duration_seconds:
|
|
567
|
+
duration_seconds: float | None = 1.0,
|
|
567
568
|
type: str | None = "IN_OUT",
|
|
568
569
|
):
|
|
569
570
|
"""Adds or updates a fade animation for either visual or audio strips
|
|
@@ -572,7 +573,7 @@ def fades_add(
|
|
|
572
573
|
:type execution_context: int | str | None
|
|
573
574
|
:type undo: bool | None
|
|
574
575
|
:param duration_seconds: Fade Duration, Duration of the fade in seconds
|
|
575
|
-
:type duration_seconds:
|
|
576
|
+
:type duration_seconds: float | None
|
|
576
577
|
:param type: Fade Type, Fade in, out, both in and out, to, or from the current frame. Default is both in and out
|
|
577
578
|
|
|
578
579
|
IN_OUT
|
|
@@ -613,7 +614,7 @@ def gap_insert(
|
|
|
613
614
|
execution_context: int | str | None = None,
|
|
614
615
|
undo: bool | None = None,
|
|
615
616
|
*,
|
|
616
|
-
frames:
|
|
617
|
+
frames: int | None = 10,
|
|
617
618
|
):
|
|
618
619
|
"""Insert gap at current frame to first strips at the right, independent of selection or locked state of strips
|
|
619
620
|
|
|
@@ -621,7 +622,7 @@ def gap_insert(
|
|
|
621
622
|
:type execution_context: int | str | None
|
|
622
623
|
:type undo: bool | None
|
|
623
624
|
:param frames: Frames, Frames to insert after current strip
|
|
624
|
-
:type frames:
|
|
625
|
+
:type frames: int | None
|
|
625
626
|
"""
|
|
626
627
|
|
|
627
628
|
...
|
|
@@ -631,7 +632,7 @@ def gap_remove(
|
|
|
631
632
|
execution_context: int | str | None = None,
|
|
632
633
|
undo: bool | None = None,
|
|
633
634
|
*,
|
|
634
|
-
all: bool |
|
|
635
|
+
all: bool | None = False,
|
|
635
636
|
):
|
|
636
637
|
"""Remove gap at current frame to first strip at the right, independent of selection or locked state of strips
|
|
637
638
|
|
|
@@ -639,7 +640,7 @@ def gap_remove(
|
|
|
639
640
|
:type execution_context: int | str | None
|
|
640
641
|
:type undo: bool | None
|
|
641
642
|
:param all: All Gaps, Do all gaps to right of current frame
|
|
642
|
-
:type all: bool |
|
|
643
|
+
:type all: bool | None
|
|
643
644
|
"""
|
|
644
645
|
|
|
645
646
|
...
|
|
@@ -649,42 +650,42 @@ def image_strip_add(
|
|
|
649
650
|
execution_context: int | str | None = None,
|
|
650
651
|
undo: bool | None = None,
|
|
651
652
|
*,
|
|
652
|
-
directory: str
|
|
653
|
+
directory: str = "",
|
|
653
654
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
654
655
|
| None = None,
|
|
655
|
-
check_existing: bool |
|
|
656
|
-
filter_blender: bool |
|
|
657
|
-
filter_backup: bool |
|
|
658
|
-
filter_image: bool |
|
|
659
|
-
filter_movie: bool |
|
|
660
|
-
filter_python: bool |
|
|
661
|
-
filter_font: bool |
|
|
662
|
-
filter_sound: bool |
|
|
663
|
-
filter_text: bool |
|
|
664
|
-
filter_archive: bool |
|
|
665
|
-
filter_btx: bool |
|
|
666
|
-
filter_collada: bool |
|
|
667
|
-
filter_alembic: bool |
|
|
668
|
-
filter_usd: bool |
|
|
669
|
-
filter_obj: bool |
|
|
670
|
-
filter_volume: bool |
|
|
671
|
-
filter_folder: bool |
|
|
672
|
-
filter_blenlib: bool |
|
|
673
|
-
filemode:
|
|
674
|
-
relative_path: bool |
|
|
675
|
-
show_multiview: bool |
|
|
676
|
-
use_multiview: bool |
|
|
656
|
+
check_existing: bool | None = False,
|
|
657
|
+
filter_blender: bool | None = False,
|
|
658
|
+
filter_backup: bool | None = False,
|
|
659
|
+
filter_image: bool | None = True,
|
|
660
|
+
filter_movie: bool | None = False,
|
|
661
|
+
filter_python: bool | None = False,
|
|
662
|
+
filter_font: bool | None = False,
|
|
663
|
+
filter_sound: bool | None = False,
|
|
664
|
+
filter_text: bool | None = False,
|
|
665
|
+
filter_archive: bool | None = False,
|
|
666
|
+
filter_btx: bool | None = False,
|
|
667
|
+
filter_collada: bool | None = False,
|
|
668
|
+
filter_alembic: bool | None = False,
|
|
669
|
+
filter_usd: bool | None = False,
|
|
670
|
+
filter_obj: bool | None = False,
|
|
671
|
+
filter_volume: bool | None = False,
|
|
672
|
+
filter_folder: bool | None = True,
|
|
673
|
+
filter_blenlib: bool | None = False,
|
|
674
|
+
filemode: int | None = 9,
|
|
675
|
+
relative_path: bool | None = True,
|
|
676
|
+
show_multiview: bool | None = False,
|
|
677
|
+
use_multiview: bool | None = False,
|
|
677
678
|
display_type: str | None = "DEFAULT",
|
|
678
679
|
sort_method: str | None = "",
|
|
679
|
-
frame_start:
|
|
680
|
-
frame_end:
|
|
681
|
-
channel:
|
|
682
|
-
replace_sel: bool |
|
|
683
|
-
overlap: bool |
|
|
684
|
-
overlap_shuffle_override: bool |
|
|
680
|
+
frame_start: int | None = 0,
|
|
681
|
+
frame_end: int | None = 0,
|
|
682
|
+
channel: int | None = 1,
|
|
683
|
+
replace_sel: bool | None = True,
|
|
684
|
+
overlap: bool | None = False,
|
|
685
|
+
overlap_shuffle_override: bool | None = False,
|
|
685
686
|
fit_method: str | None = "FIT",
|
|
686
|
-
set_view_transform: bool |
|
|
687
|
-
use_placeholders: bool |
|
|
687
|
+
set_view_transform: bool | None = True,
|
|
688
|
+
use_placeholders: bool | None = False,
|
|
688
689
|
):
|
|
689
690
|
"""Add an image or image sequence to the sequencer
|
|
690
691
|
|
|
@@ -692,53 +693,53 @@ def image_strip_add(
|
|
|
692
693
|
:type execution_context: int | str | None
|
|
693
694
|
:type undo: bool | None
|
|
694
695
|
:param directory: Directory, Directory of the file
|
|
695
|
-
:type directory: str
|
|
696
|
+
:type directory: str
|
|
696
697
|
:param files: Files
|
|
697
698
|
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
698
699
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
699
|
-
:type check_existing: bool |
|
|
700
|
+
:type check_existing: bool | None
|
|
700
701
|
:param filter_blender: Filter .blend files
|
|
701
|
-
:type filter_blender: bool |
|
|
702
|
+
:type filter_blender: bool | None
|
|
702
703
|
:param filter_backup: Filter .blend files
|
|
703
|
-
:type filter_backup: bool |
|
|
704
|
+
:type filter_backup: bool | None
|
|
704
705
|
:param filter_image: Filter image files
|
|
705
|
-
:type filter_image: bool |
|
|
706
|
+
:type filter_image: bool | None
|
|
706
707
|
:param filter_movie: Filter movie files
|
|
707
|
-
:type filter_movie: bool |
|
|
708
|
+
:type filter_movie: bool | None
|
|
708
709
|
:param filter_python: Filter Python files
|
|
709
|
-
:type filter_python: bool |
|
|
710
|
+
:type filter_python: bool | None
|
|
710
711
|
:param filter_font: Filter font files
|
|
711
|
-
:type filter_font: bool |
|
|
712
|
+
:type filter_font: bool | None
|
|
712
713
|
:param filter_sound: Filter sound files
|
|
713
|
-
:type filter_sound: bool |
|
|
714
|
+
:type filter_sound: bool | None
|
|
714
715
|
:param filter_text: Filter text files
|
|
715
|
-
:type filter_text: bool |
|
|
716
|
+
:type filter_text: bool | None
|
|
716
717
|
:param filter_archive: Filter archive files
|
|
717
|
-
:type filter_archive: bool |
|
|
718
|
+
:type filter_archive: bool | None
|
|
718
719
|
:param filter_btx: Filter btx files
|
|
719
|
-
:type filter_btx: bool |
|
|
720
|
+
:type filter_btx: bool | None
|
|
720
721
|
:param filter_collada: Filter COLLADA files
|
|
721
|
-
:type filter_collada: bool |
|
|
722
|
+
:type filter_collada: bool | None
|
|
722
723
|
:param filter_alembic: Filter Alembic files
|
|
723
|
-
:type filter_alembic: bool |
|
|
724
|
+
:type filter_alembic: bool | None
|
|
724
725
|
:param filter_usd: Filter USD files
|
|
725
|
-
:type filter_usd: bool |
|
|
726
|
+
:type filter_usd: bool | None
|
|
726
727
|
:param filter_obj: Filter OBJ files
|
|
727
|
-
:type filter_obj: bool |
|
|
728
|
+
:type filter_obj: bool | None
|
|
728
729
|
:param filter_volume: Filter OpenVDB volume files
|
|
729
|
-
:type filter_volume: bool |
|
|
730
|
+
:type filter_volume: bool | None
|
|
730
731
|
:param filter_folder: Filter folders
|
|
731
|
-
:type filter_folder: bool |
|
|
732
|
+
:type filter_folder: bool | None
|
|
732
733
|
:param filter_blenlib: Filter Blender IDs
|
|
733
|
-
:type filter_blenlib: bool |
|
|
734
|
+
:type filter_blenlib: bool | None
|
|
734
735
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
735
|
-
:type filemode:
|
|
736
|
+
:type filemode: int | None
|
|
736
737
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
737
|
-
:type relative_path: bool |
|
|
738
|
+
:type relative_path: bool | None
|
|
738
739
|
:param show_multiview: Enable Multi-View
|
|
739
|
-
:type show_multiview: bool |
|
|
740
|
+
:type show_multiview: bool | None
|
|
740
741
|
:param use_multiview: Use Multi-View
|
|
741
|
-
:type use_multiview: bool |
|
|
742
|
+
:type use_multiview: bool | None
|
|
742
743
|
:param display_type: Display Type
|
|
743
744
|
|
|
744
745
|
DEFAULT
|
|
@@ -771,17 +772,17 @@ def image_strip_add(
|
|
|
771
772
|
Size -- Sort files by size.
|
|
772
773
|
:type sort_method: str | None
|
|
773
774
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
774
|
-
:type frame_start:
|
|
775
|
+
:type frame_start: int | None
|
|
775
776
|
:param frame_end: End Frame, End frame for the color strip
|
|
776
|
-
:type frame_end:
|
|
777
|
+
:type frame_end: int | None
|
|
777
778
|
:param channel: Channel, Channel to place this strip into
|
|
778
|
-
:type channel:
|
|
779
|
+
:type channel: int | None
|
|
779
780
|
:param replace_sel: Replace Selection, Replace the current selection
|
|
780
|
-
:type replace_sel: bool |
|
|
781
|
+
:type replace_sel: bool | None
|
|
781
782
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
782
|
-
:type overlap: bool |
|
|
783
|
+
:type overlap: bool | None
|
|
783
784
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
784
|
-
:type overlap_shuffle_override: bool |
|
|
785
|
+
:type overlap_shuffle_override: bool | None
|
|
785
786
|
:param fit_method: Fit Method, Scale fit method
|
|
786
787
|
|
|
787
788
|
FIT
|
|
@@ -797,9 +798,9 @@ def image_strip_add(
|
|
|
797
798
|
Use Original Size -- Keep image at its original size.
|
|
798
799
|
:type fit_method: str | None
|
|
799
800
|
:param set_view_transform: Set View Transform, Set appropriate view transform based on media color space
|
|
800
|
-
:type set_view_transform: bool |
|
|
801
|
+
:type set_view_transform: bool | None
|
|
801
802
|
:param use_placeholders: Use Placeholders, Use placeholders for missing frames of the strip
|
|
802
|
-
:type use_placeholders: bool |
|
|
803
|
+
:type use_placeholders: bool | None
|
|
803
804
|
"""
|
|
804
805
|
|
|
805
806
|
...
|
|
@@ -809,7 +810,7 @@ def images_separate(
|
|
|
809
810
|
execution_context: int | str | None = None,
|
|
810
811
|
undo: bool | None = None,
|
|
811
812
|
*,
|
|
812
|
-
length:
|
|
813
|
+
length: int | None = 1,
|
|
813
814
|
):
|
|
814
815
|
"""On image sequence strips, it returns a strip for each image
|
|
815
816
|
|
|
@@ -817,7 +818,7 @@ def images_separate(
|
|
|
817
818
|
:type execution_context: int | str | None
|
|
818
819
|
:type undo: bool | None
|
|
819
820
|
:param length: Length, Length of each frame
|
|
820
|
-
:type length:
|
|
821
|
+
:type length: int | None
|
|
821
822
|
"""
|
|
822
823
|
|
|
823
824
|
...
|
|
@@ -841,11 +842,11 @@ def mask_strip_add(
|
|
|
841
842
|
execution_context: int | str | None = None,
|
|
842
843
|
undo: bool | None = None,
|
|
843
844
|
*,
|
|
844
|
-
frame_start:
|
|
845
|
-
channel:
|
|
846
|
-
replace_sel: bool |
|
|
847
|
-
overlap: bool |
|
|
848
|
-
overlap_shuffle_override: bool |
|
|
845
|
+
frame_start: int | None = 0,
|
|
846
|
+
channel: int | None = 1,
|
|
847
|
+
replace_sel: bool | None = True,
|
|
848
|
+
overlap: bool | None = False,
|
|
849
|
+
overlap_shuffle_override: bool | None = False,
|
|
849
850
|
mask: str | None = "",
|
|
850
851
|
):
|
|
851
852
|
"""Add a mask strip to the sequencer
|
|
@@ -854,15 +855,15 @@ def mask_strip_add(
|
|
|
854
855
|
:type execution_context: int | str | None
|
|
855
856
|
:type undo: bool | None
|
|
856
857
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
857
|
-
:type frame_start:
|
|
858
|
+
:type frame_start: int | None
|
|
858
859
|
:param channel: Channel, Channel to place this strip into
|
|
859
|
-
:type channel:
|
|
860
|
+
:type channel: int | None
|
|
860
861
|
:param replace_sel: Replace Selection, Replace the current selection
|
|
861
|
-
:type replace_sel: bool |
|
|
862
|
+
:type replace_sel: bool | None
|
|
862
863
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
863
|
-
:type overlap: bool |
|
|
864
|
+
:type overlap: bool | None
|
|
864
865
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
865
|
-
:type overlap_shuffle_override: bool |
|
|
866
|
+
:type overlap_shuffle_override: bool | None
|
|
866
867
|
:param mask: Mask
|
|
867
868
|
:type mask: str | None
|
|
868
869
|
"""
|
|
@@ -916,44 +917,44 @@ def movie_strip_add(
|
|
|
916
917
|
execution_context: int | str | None = None,
|
|
917
918
|
undo: bool | None = None,
|
|
918
919
|
*,
|
|
919
|
-
filepath: str
|
|
920
|
-
directory: str
|
|
920
|
+
filepath: str = "",
|
|
921
|
+
directory: str = "",
|
|
921
922
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
922
923
|
| None = None,
|
|
923
|
-
check_existing: bool |
|
|
924
|
-
filter_blender: bool |
|
|
925
|
-
filter_backup: bool |
|
|
926
|
-
filter_image: bool |
|
|
927
|
-
filter_movie: bool |
|
|
928
|
-
filter_python: bool |
|
|
929
|
-
filter_font: bool |
|
|
930
|
-
filter_sound: bool |
|
|
931
|
-
filter_text: bool |
|
|
932
|
-
filter_archive: bool |
|
|
933
|
-
filter_btx: bool |
|
|
934
|
-
filter_collada: bool |
|
|
935
|
-
filter_alembic: bool |
|
|
936
|
-
filter_usd: bool |
|
|
937
|
-
filter_obj: bool |
|
|
938
|
-
filter_volume: bool |
|
|
939
|
-
filter_folder: bool |
|
|
940
|
-
filter_blenlib: bool |
|
|
941
|
-
filemode:
|
|
942
|
-
relative_path: bool |
|
|
943
|
-
show_multiview: bool |
|
|
944
|
-
use_multiview: bool |
|
|
924
|
+
check_existing: bool | None = False,
|
|
925
|
+
filter_blender: bool | None = False,
|
|
926
|
+
filter_backup: bool | None = False,
|
|
927
|
+
filter_image: bool | None = False,
|
|
928
|
+
filter_movie: bool | None = True,
|
|
929
|
+
filter_python: bool | None = False,
|
|
930
|
+
filter_font: bool | None = False,
|
|
931
|
+
filter_sound: bool | None = False,
|
|
932
|
+
filter_text: bool | None = False,
|
|
933
|
+
filter_archive: bool | None = False,
|
|
934
|
+
filter_btx: bool | None = False,
|
|
935
|
+
filter_collada: bool | None = False,
|
|
936
|
+
filter_alembic: bool | None = False,
|
|
937
|
+
filter_usd: bool | None = False,
|
|
938
|
+
filter_obj: bool | None = False,
|
|
939
|
+
filter_volume: bool | None = False,
|
|
940
|
+
filter_folder: bool | None = True,
|
|
941
|
+
filter_blenlib: bool | None = False,
|
|
942
|
+
filemode: int | None = 9,
|
|
943
|
+
relative_path: bool | None = True,
|
|
944
|
+
show_multiview: bool | None = False,
|
|
945
|
+
use_multiview: bool | None = False,
|
|
945
946
|
display_type: str | None = "DEFAULT",
|
|
946
947
|
sort_method: str | None = "",
|
|
947
|
-
frame_start:
|
|
948
|
-
channel:
|
|
949
|
-
replace_sel: bool |
|
|
950
|
-
overlap: bool |
|
|
951
|
-
overlap_shuffle_override: bool |
|
|
948
|
+
frame_start: int | None = 0,
|
|
949
|
+
channel: int | None = 1,
|
|
950
|
+
replace_sel: bool | None = True,
|
|
951
|
+
overlap: bool | None = False,
|
|
952
|
+
overlap_shuffle_override: bool | None = False,
|
|
952
953
|
fit_method: str | None = "FIT",
|
|
953
|
-
set_view_transform: bool |
|
|
954
|
-
adjust_playback_rate: bool |
|
|
955
|
-
sound: bool |
|
|
956
|
-
use_framerate: bool |
|
|
954
|
+
set_view_transform: bool | None = True,
|
|
955
|
+
adjust_playback_rate: bool | None = True,
|
|
956
|
+
sound: bool | None = True,
|
|
957
|
+
use_framerate: bool | None = True,
|
|
957
958
|
):
|
|
958
959
|
"""Add a movie strip to the sequencer
|
|
959
960
|
|
|
@@ -961,55 +962,55 @@ def movie_strip_add(
|
|
|
961
962
|
:type execution_context: int | str | None
|
|
962
963
|
:type undo: bool | None
|
|
963
964
|
:param filepath: File Path, Path to file
|
|
964
|
-
:type filepath: str
|
|
965
|
+
:type filepath: str
|
|
965
966
|
:param directory: Directory, Directory of the file
|
|
966
|
-
:type directory: str
|
|
967
|
+
:type directory: str
|
|
967
968
|
:param files: Files
|
|
968
969
|
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
969
970
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
970
|
-
:type check_existing: bool |
|
|
971
|
+
:type check_existing: bool | None
|
|
971
972
|
:param filter_blender: Filter .blend files
|
|
972
|
-
:type filter_blender: bool |
|
|
973
|
+
:type filter_blender: bool | None
|
|
973
974
|
:param filter_backup: Filter .blend files
|
|
974
|
-
:type filter_backup: bool |
|
|
975
|
+
:type filter_backup: bool | None
|
|
975
976
|
:param filter_image: Filter image files
|
|
976
|
-
:type filter_image: bool |
|
|
977
|
+
:type filter_image: bool | None
|
|
977
978
|
:param filter_movie: Filter movie files
|
|
978
|
-
:type filter_movie: bool |
|
|
979
|
+
:type filter_movie: bool | None
|
|
979
980
|
:param filter_python: Filter Python files
|
|
980
|
-
:type filter_python: bool |
|
|
981
|
+
:type filter_python: bool | None
|
|
981
982
|
:param filter_font: Filter font files
|
|
982
|
-
:type filter_font: bool |
|
|
983
|
+
:type filter_font: bool | None
|
|
983
984
|
:param filter_sound: Filter sound files
|
|
984
|
-
:type filter_sound: bool |
|
|
985
|
+
:type filter_sound: bool | None
|
|
985
986
|
:param filter_text: Filter text files
|
|
986
|
-
:type filter_text: bool |
|
|
987
|
+
:type filter_text: bool | None
|
|
987
988
|
:param filter_archive: Filter archive files
|
|
988
|
-
:type filter_archive: bool |
|
|
989
|
+
:type filter_archive: bool | None
|
|
989
990
|
:param filter_btx: Filter btx files
|
|
990
|
-
:type filter_btx: bool |
|
|
991
|
+
:type filter_btx: bool | None
|
|
991
992
|
:param filter_collada: Filter COLLADA files
|
|
992
|
-
:type filter_collada: bool |
|
|
993
|
+
:type filter_collada: bool | None
|
|
993
994
|
:param filter_alembic: Filter Alembic files
|
|
994
|
-
:type filter_alembic: bool |
|
|
995
|
+
:type filter_alembic: bool | None
|
|
995
996
|
:param filter_usd: Filter USD files
|
|
996
|
-
:type filter_usd: bool |
|
|
997
|
+
:type filter_usd: bool | None
|
|
997
998
|
:param filter_obj: Filter OBJ files
|
|
998
|
-
:type filter_obj: bool |
|
|
999
|
+
:type filter_obj: bool | None
|
|
999
1000
|
:param filter_volume: Filter OpenVDB volume files
|
|
1000
|
-
:type filter_volume: bool |
|
|
1001
|
+
:type filter_volume: bool | None
|
|
1001
1002
|
:param filter_folder: Filter folders
|
|
1002
|
-
:type filter_folder: bool |
|
|
1003
|
+
:type filter_folder: bool | None
|
|
1003
1004
|
:param filter_blenlib: Filter Blender IDs
|
|
1004
|
-
:type filter_blenlib: bool |
|
|
1005
|
+
:type filter_blenlib: bool | None
|
|
1005
1006
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
1006
|
-
:type filemode:
|
|
1007
|
+
:type filemode: int | None
|
|
1007
1008
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
1008
|
-
:type relative_path: bool |
|
|
1009
|
+
:type relative_path: bool | None
|
|
1009
1010
|
:param show_multiview: Enable Multi-View
|
|
1010
|
-
:type show_multiview: bool |
|
|
1011
|
+
:type show_multiview: bool | None
|
|
1011
1012
|
:param use_multiview: Use Multi-View
|
|
1012
|
-
:type use_multiview: bool |
|
|
1013
|
+
:type use_multiview: bool | None
|
|
1013
1014
|
:param display_type: Display Type
|
|
1014
1015
|
|
|
1015
1016
|
DEFAULT
|
|
@@ -1042,15 +1043,15 @@ def movie_strip_add(
|
|
|
1042
1043
|
Size -- Sort files by size.
|
|
1043
1044
|
:type sort_method: str | None
|
|
1044
1045
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1045
|
-
:type frame_start:
|
|
1046
|
+
:type frame_start: int | None
|
|
1046
1047
|
:param channel: Channel, Channel to place this strip into
|
|
1047
|
-
:type channel:
|
|
1048
|
+
:type channel: int | None
|
|
1048
1049
|
:param replace_sel: Replace Selection, Replace the current selection
|
|
1049
|
-
:type replace_sel: bool |
|
|
1050
|
+
:type replace_sel: bool | None
|
|
1050
1051
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1051
|
-
:type overlap: bool |
|
|
1052
|
+
:type overlap: bool | None
|
|
1052
1053
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1053
|
-
:type overlap_shuffle_override: bool |
|
|
1054
|
+
:type overlap_shuffle_override: bool | None
|
|
1054
1055
|
:param fit_method: Fit Method, Scale fit method
|
|
1055
1056
|
|
|
1056
1057
|
FIT
|
|
@@ -1066,13 +1067,13 @@ def movie_strip_add(
|
|
|
1066
1067
|
Use Original Size -- Keep image at its original size.
|
|
1067
1068
|
:type fit_method: str | None
|
|
1068
1069
|
:param set_view_transform: Set View Transform, Set appropriate view transform based on media color space
|
|
1069
|
-
:type set_view_transform: bool |
|
|
1070
|
+
:type set_view_transform: bool | None
|
|
1070
1071
|
:param adjust_playback_rate: Adjust Playback Rate, Play at normal speed regardless of scene FPS
|
|
1071
|
-
:type adjust_playback_rate: bool |
|
|
1072
|
+
:type adjust_playback_rate: bool | None
|
|
1072
1073
|
:param sound: Sound, Load sound with the movie
|
|
1073
|
-
:type sound: bool |
|
|
1074
|
+
:type sound: bool | None
|
|
1074
1075
|
:param use_framerate: Use Movie Framerate, Use framerate from the movie to keep sound and video in sync
|
|
1075
|
-
:type use_framerate: bool |
|
|
1076
|
+
:type use_framerate: bool | None
|
|
1076
1077
|
"""
|
|
1077
1078
|
|
|
1078
1079
|
...
|
|
@@ -1082,11 +1083,11 @@ def movieclip_strip_add(
|
|
|
1082
1083
|
execution_context: int | str | None = None,
|
|
1083
1084
|
undo: bool | None = None,
|
|
1084
1085
|
*,
|
|
1085
|
-
frame_start:
|
|
1086
|
-
channel:
|
|
1087
|
-
replace_sel: bool |
|
|
1088
|
-
overlap: bool |
|
|
1089
|
-
overlap_shuffle_override: bool |
|
|
1086
|
+
frame_start: int | None = 0,
|
|
1087
|
+
channel: int | None = 1,
|
|
1088
|
+
replace_sel: bool | None = True,
|
|
1089
|
+
overlap: bool | None = False,
|
|
1090
|
+
overlap_shuffle_override: bool | None = False,
|
|
1090
1091
|
clip: str | None = "",
|
|
1091
1092
|
):
|
|
1092
1093
|
"""Add a movieclip strip to the sequencer
|
|
@@ -1095,15 +1096,15 @@ def movieclip_strip_add(
|
|
|
1095
1096
|
:type execution_context: int | str | None
|
|
1096
1097
|
:type undo: bool | None
|
|
1097
1098
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1098
|
-
:type frame_start:
|
|
1099
|
+
:type frame_start: int | None
|
|
1099
1100
|
:param channel: Channel, Channel to place this strip into
|
|
1100
|
-
:type channel:
|
|
1101
|
+
:type channel: int | None
|
|
1101
1102
|
:param replace_sel: Replace Selection, Replace the current selection
|
|
1102
|
-
:type replace_sel: bool |
|
|
1103
|
+
:type replace_sel: bool | None
|
|
1103
1104
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1104
|
-
:type overlap: bool |
|
|
1105
|
+
:type overlap: bool | None
|
|
1105
1106
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1106
|
-
:type overlap_shuffle_override: bool |
|
|
1107
|
+
:type overlap_shuffle_override: bool | None
|
|
1107
1108
|
:param clip: Clip
|
|
1108
1109
|
:type clip: str | None
|
|
1109
1110
|
"""
|
|
@@ -1115,7 +1116,7 @@ def mute(
|
|
|
1115
1116
|
execution_context: int | str | None = None,
|
|
1116
1117
|
undo: bool | None = None,
|
|
1117
1118
|
*,
|
|
1118
|
-
unselected: bool |
|
|
1119
|
+
unselected: bool | None = False,
|
|
1119
1120
|
):
|
|
1120
1121
|
"""Mute (un)selected strips
|
|
1121
1122
|
|
|
@@ -1123,7 +1124,7 @@ def mute(
|
|
|
1123
1124
|
:type execution_context: int | str | None
|
|
1124
1125
|
:type undo: bool | None
|
|
1125
1126
|
:param unselected: Unselected, Mute unselected rather than selected strips
|
|
1126
|
-
:type unselected: bool |
|
|
1127
|
+
:type unselected: bool | None
|
|
1127
1128
|
"""
|
|
1128
1129
|
|
|
1129
1130
|
...
|
|
@@ -1147,7 +1148,7 @@ def paste(
|
|
|
1147
1148
|
execution_context: int | str | None = None,
|
|
1148
1149
|
undo: bool | None = None,
|
|
1149
1150
|
*,
|
|
1150
|
-
keep_offset: bool |
|
|
1151
|
+
keep_offset: bool | None = False,
|
|
1151
1152
|
):
|
|
1152
1153
|
"""Paste strips from the internal clipboard
|
|
1153
1154
|
|
|
@@ -1155,7 +1156,7 @@ def paste(
|
|
|
1155
1156
|
:type execution_context: int | str | None
|
|
1156
1157
|
:type undo: bool | None
|
|
1157
1158
|
:param keep_offset: Keep Offset, Keep strip offset relative to the current frame when pasting
|
|
1158
|
-
:type keep_offset: bool |
|
|
1159
|
+
:type keep_offset: bool | None
|
|
1159
1160
|
"""
|
|
1160
1161
|
|
|
1161
1162
|
...
|
|
@@ -1207,7 +1208,7 @@ def reload(
|
|
|
1207
1208
|
execution_context: int | str | None = None,
|
|
1208
1209
|
undo: bool | None = None,
|
|
1209
1210
|
*,
|
|
1210
|
-
adjust_length: bool |
|
|
1211
|
+
adjust_length: bool | None = False,
|
|
1211
1212
|
):
|
|
1212
1213
|
"""Reload strips in the sequencer
|
|
1213
1214
|
|
|
@@ -1215,7 +1216,7 @@ def reload(
|
|
|
1215
1216
|
:type execution_context: int | str | None
|
|
1216
1217
|
:type undo: bool | None
|
|
1217
1218
|
:param adjust_length: Adjust Length, Adjust length of strips to their data length
|
|
1218
|
-
:type adjust_length: bool |
|
|
1219
|
+
:type adjust_length: bool | None
|
|
1219
1220
|
"""
|
|
1220
1221
|
|
|
1221
1222
|
...
|
|
@@ -1295,7 +1296,7 @@ def retiming_freeze_frame_add(
|
|
|
1295
1296
|
execution_context: int | str | None = None,
|
|
1296
1297
|
undo: bool | None = None,
|
|
1297
1298
|
*,
|
|
1298
|
-
duration:
|
|
1299
|
+
duration: int | None = 0,
|
|
1299
1300
|
):
|
|
1300
1301
|
"""Add freeze frame
|
|
1301
1302
|
|
|
@@ -1303,7 +1304,7 @@ def retiming_freeze_frame_add(
|
|
|
1303
1304
|
:type execution_context: int | str | None
|
|
1304
1305
|
:type undo: bool | None
|
|
1305
1306
|
:param duration: Duration, Duration of freeze frame segment
|
|
1306
|
-
:type duration:
|
|
1307
|
+
:type duration: int | None
|
|
1307
1308
|
"""
|
|
1308
1309
|
|
|
1309
1310
|
...
|
|
@@ -1313,7 +1314,7 @@ def retiming_key_add(
|
|
|
1313
1314
|
execution_context: int | str | None = None,
|
|
1314
1315
|
undo: bool | None = None,
|
|
1315
1316
|
*,
|
|
1316
|
-
timeline_frame:
|
|
1317
|
+
timeline_frame: int | None = 0,
|
|
1317
1318
|
):
|
|
1318
1319
|
"""Add retiming Key
|
|
1319
1320
|
|
|
@@ -1321,7 +1322,7 @@ def retiming_key_add(
|
|
|
1321
1322
|
:type execution_context: int | str | None
|
|
1322
1323
|
:type undo: bool | None
|
|
1323
1324
|
:param timeline_frame: Timeline Frame, Frame where key will be added
|
|
1324
|
-
:type timeline_frame:
|
|
1325
|
+
:type timeline_frame: int | None
|
|
1325
1326
|
"""
|
|
1326
1327
|
|
|
1327
1328
|
...
|
|
@@ -1345,8 +1346,8 @@ def retiming_segment_speed_set(
|
|
|
1345
1346
|
execution_context: int | str | None = None,
|
|
1346
1347
|
undo: bool | None = None,
|
|
1347
1348
|
*,
|
|
1348
|
-
speed:
|
|
1349
|
-
keep_retiming: bool |
|
|
1349
|
+
speed: float | None = 100.0,
|
|
1350
|
+
keep_retiming: bool | None = True,
|
|
1350
1351
|
):
|
|
1351
1352
|
"""Set speed of retimed segment
|
|
1352
1353
|
|
|
@@ -1354,9 +1355,9 @@ def retiming_segment_speed_set(
|
|
|
1354
1355
|
:type execution_context: int | str | None
|
|
1355
1356
|
:type undo: bool | None
|
|
1356
1357
|
:param speed: Speed, New speed of retimed segment
|
|
1357
|
-
:type speed:
|
|
1358
|
+
:type speed: float | None
|
|
1358
1359
|
:param keep_retiming: Preserve Current Retiming, Keep speed of other segments unchanged, change strip length instead
|
|
1359
|
-
:type keep_retiming: bool |
|
|
1360
|
+
:type keep_retiming: bool | None
|
|
1360
1361
|
"""
|
|
1361
1362
|
|
|
1362
1363
|
...
|
|
@@ -1380,7 +1381,7 @@ def retiming_transition_add(
|
|
|
1380
1381
|
execution_context: int | str | None = None,
|
|
1381
1382
|
undo: bool | None = None,
|
|
1382
1383
|
*,
|
|
1383
|
-
duration:
|
|
1384
|
+
duration: int | None = 0,
|
|
1384
1385
|
):
|
|
1385
1386
|
"""Add smooth transition between 2 retimed segments
|
|
1386
1387
|
|
|
@@ -1388,7 +1389,7 @@ def retiming_transition_add(
|
|
|
1388
1389
|
:type execution_context: int | str | None
|
|
1389
1390
|
:type undo: bool | None
|
|
1390
1391
|
:param duration: Duration, Duration of freeze frame segment
|
|
1391
|
-
:type duration:
|
|
1392
|
+
:type duration: int | None
|
|
1392
1393
|
"""
|
|
1393
1394
|
|
|
1394
1395
|
...
|
|
@@ -1398,7 +1399,7 @@ def sample(
|
|
|
1398
1399
|
execution_context: int | str | None = None,
|
|
1399
1400
|
undo: bool | None = None,
|
|
1400
1401
|
*,
|
|
1401
|
-
size:
|
|
1402
|
+
size: int | None = 1,
|
|
1402
1403
|
):
|
|
1403
1404
|
"""Use mouse to sample color in current frame
|
|
1404
1405
|
|
|
@@ -1406,7 +1407,7 @@ def sample(
|
|
|
1406
1407
|
:type execution_context: int | str | None
|
|
1407
1408
|
:type undo: bool | None
|
|
1408
1409
|
:param size: Sample Size
|
|
1409
|
-
:type size:
|
|
1410
|
+
:type size: int | None
|
|
1410
1411
|
"""
|
|
1411
1412
|
|
|
1412
1413
|
...
|
|
@@ -1430,11 +1431,11 @@ def scene_strip_add(
|
|
|
1430
1431
|
execution_context: int | str | None = None,
|
|
1431
1432
|
undo: bool | None = None,
|
|
1432
1433
|
*,
|
|
1433
|
-
frame_start:
|
|
1434
|
-
channel:
|
|
1435
|
-
replace_sel: bool |
|
|
1436
|
-
overlap: bool |
|
|
1437
|
-
overlap_shuffle_override: bool |
|
|
1434
|
+
frame_start: int | None = 0,
|
|
1435
|
+
channel: int | None = 1,
|
|
1436
|
+
replace_sel: bool | None = True,
|
|
1437
|
+
overlap: bool | None = False,
|
|
1438
|
+
overlap_shuffle_override: bool | None = False,
|
|
1438
1439
|
scene: str | None = "",
|
|
1439
1440
|
):
|
|
1440
1441
|
"""Add a strip to the sequencer using a Blender scene as a source
|
|
@@ -1443,15 +1444,15 @@ def scene_strip_add(
|
|
|
1443
1444
|
:type execution_context: int | str | None
|
|
1444
1445
|
:type undo: bool | None
|
|
1445
1446
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1446
|
-
:type frame_start:
|
|
1447
|
+
:type frame_start: int | None
|
|
1447
1448
|
:param channel: Channel, Channel to place this strip into
|
|
1448
|
-
:type channel:
|
|
1449
|
+
:type channel: int | None
|
|
1449
1450
|
:param replace_sel: Replace Selection, Replace the current selection
|
|
1450
|
-
:type replace_sel: bool |
|
|
1451
|
+
:type replace_sel: bool | None
|
|
1451
1452
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1452
|
-
:type overlap: bool |
|
|
1453
|
+
:type overlap: bool | None
|
|
1453
1454
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1454
|
-
:type overlap_shuffle_override: bool |
|
|
1455
|
+
:type overlap_shuffle_override: bool | None
|
|
1455
1456
|
:param scene: Scene
|
|
1456
1457
|
:type scene: str | None
|
|
1457
1458
|
"""
|
|
@@ -1463,11 +1464,11 @@ def scene_strip_add_new(
|
|
|
1463
1464
|
execution_context: int | str | None = None,
|
|
1464
1465
|
undo: bool | None = None,
|
|
1465
1466
|
*,
|
|
1466
|
-
frame_start:
|
|
1467
|
-
channel:
|
|
1468
|
-
replace_sel: bool |
|
|
1469
|
-
overlap: bool |
|
|
1470
|
-
overlap_shuffle_override: bool |
|
|
1467
|
+
frame_start: int | None = 0,
|
|
1468
|
+
channel: int | None = 1,
|
|
1469
|
+
replace_sel: bool | None = True,
|
|
1470
|
+
overlap: bool | None = False,
|
|
1471
|
+
overlap_shuffle_override: bool | None = False,
|
|
1471
1472
|
type: str | None = "NEW",
|
|
1472
1473
|
):
|
|
1473
1474
|
"""Create a new Strip and assign a new Scene as source
|
|
@@ -1476,15 +1477,15 @@ def scene_strip_add_new(
|
|
|
1476
1477
|
:type execution_context: int | str | None
|
|
1477
1478
|
:type undo: bool | None
|
|
1478
1479
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
1479
|
-
:type frame_start:
|
|
1480
|
+
:type frame_start: int | None
|
|
1480
1481
|
:param channel: Channel, Channel to place this strip into
|
|
1481
|
-
:type channel:
|
|
1482
|
+
:type channel: int | None
|
|
1482
1483
|
:param replace_sel: Replace Selection, Replace the current selection
|
|
1483
|
-
:type replace_sel: bool |
|
|
1484
|
+
:type replace_sel: bool | None
|
|
1484
1485
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1485
|
-
:type overlap: bool |
|
|
1486
|
+
:type overlap: bool | None
|
|
1486
1487
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
1487
|
-
:type overlap_shuffle_override: bool |
|
|
1488
|
+
:type overlap_shuffle_override: bool | None
|
|
1488
1489
|
:param type: Type
|
|
1489
1490
|
|
|
1490
1491
|
NEW
|
|
@@ -1508,18 +1509,18 @@ def select(
|
|
|
1508
1509
|
execution_context: int | str | None = None,
|
|
1509
1510
|
undo: bool | None = None,
|
|
1510
1511
|
*,
|
|
1511
|
-
wait_to_deselect_others: bool |
|
|
1512
|
-
mouse_x:
|
|
1513
|
-
mouse_y:
|
|
1514
|
-
extend: bool |
|
|
1515
|
-
deselect: bool |
|
|
1516
|
-
toggle: bool |
|
|
1517
|
-
deselect_all: bool |
|
|
1518
|
-
select_passthrough: bool |
|
|
1519
|
-
center: bool |
|
|
1520
|
-
linked_handle: bool |
|
|
1521
|
-
linked_time: bool |
|
|
1522
|
-
side_of_frame: bool |
|
|
1512
|
+
wait_to_deselect_others: bool | None = False,
|
|
1513
|
+
mouse_x: int | None = 0,
|
|
1514
|
+
mouse_y: int | None = 0,
|
|
1515
|
+
extend: bool | None = False,
|
|
1516
|
+
deselect: bool | None = False,
|
|
1517
|
+
toggle: bool | None = False,
|
|
1518
|
+
deselect_all: bool | None = False,
|
|
1519
|
+
select_passthrough: bool | None = False,
|
|
1520
|
+
center: bool | None = False,
|
|
1521
|
+
linked_handle: bool | None = False,
|
|
1522
|
+
linked_time: bool | None = False,
|
|
1523
|
+
side_of_frame: bool | None = False,
|
|
1523
1524
|
):
|
|
1524
1525
|
"""Select a strip (last selected becomes the "active strip")
|
|
1525
1526
|
|
|
@@ -1527,29 +1528,29 @@ def select(
|
|
|
1527
1528
|
:type execution_context: int | str | None
|
|
1528
1529
|
:type undo: bool | None
|
|
1529
1530
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
1530
|
-
:type wait_to_deselect_others: bool |
|
|
1531
|
+
:type wait_to_deselect_others: bool | None
|
|
1531
1532
|
:param mouse_x: Mouse X
|
|
1532
|
-
:type mouse_x:
|
|
1533
|
+
:type mouse_x: int | None
|
|
1533
1534
|
:param mouse_y: Mouse Y
|
|
1534
|
-
:type mouse_y:
|
|
1535
|
+
:type mouse_y: int | None
|
|
1535
1536
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1536
|
-
:type extend: bool |
|
|
1537
|
+
:type extend: bool | None
|
|
1537
1538
|
:param deselect: Deselect, Remove from selection
|
|
1538
|
-
:type deselect: bool |
|
|
1539
|
+
:type deselect: bool | None
|
|
1539
1540
|
:param toggle: Toggle Selection, Toggle the selection
|
|
1540
|
-
:type toggle: bool |
|
|
1541
|
+
:type toggle: bool | None
|
|
1541
1542
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
1542
|
-
:type deselect_all: bool |
|
|
1543
|
+
:type deselect_all: bool | None
|
|
1543
1544
|
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
1544
|
-
:type select_passthrough: bool |
|
|
1545
|
+
:type select_passthrough: bool | None
|
|
1545
1546
|
:param center: Center, Use the object center when selecting, in edit mode used to extend object selection
|
|
1546
|
-
:type center: bool |
|
|
1547
|
+
:type center: bool | None
|
|
1547
1548
|
:param linked_handle: Linked Handle, Select handles next to the active strip
|
|
1548
|
-
:type linked_handle: bool |
|
|
1549
|
+
:type linked_handle: bool | None
|
|
1549
1550
|
:param linked_time: Linked Time, Select other strips at the same time
|
|
1550
|
-
:type linked_time: bool |
|
|
1551
|
+
:type linked_time: bool | None
|
|
1551
1552
|
:param side_of_frame: Side of Frame, Select all strips on same side of the current frame as the mouse cursor
|
|
1552
|
-
:type side_of_frame: bool |
|
|
1553
|
+
:type side_of_frame: bool | None
|
|
1553
1554
|
"""
|
|
1554
1555
|
|
|
1555
1556
|
...
|
|
@@ -1589,14 +1590,14 @@ def select_box(
|
|
|
1589
1590
|
execution_context: int | str | None = None,
|
|
1590
1591
|
undo: bool | None = None,
|
|
1591
1592
|
*,
|
|
1592
|
-
xmin:
|
|
1593
|
-
xmax:
|
|
1594
|
-
ymin:
|
|
1595
|
-
ymax:
|
|
1596
|
-
wait_for_input: bool |
|
|
1593
|
+
xmin: int | None = 0,
|
|
1594
|
+
xmax: int | None = 0,
|
|
1595
|
+
ymin: int | None = 0,
|
|
1596
|
+
ymax: int | None = 0,
|
|
1597
|
+
wait_for_input: bool | None = True,
|
|
1597
1598
|
mode: str | None = "SET",
|
|
1598
|
-
tweak: bool |
|
|
1599
|
-
include_handles: bool |
|
|
1599
|
+
tweak: bool | None = False,
|
|
1600
|
+
include_handles: bool | None = False,
|
|
1600
1601
|
):
|
|
1601
1602
|
"""Select strips using box selection
|
|
1602
1603
|
|
|
@@ -1604,15 +1605,15 @@ def select_box(
|
|
|
1604
1605
|
:type execution_context: int | str | None
|
|
1605
1606
|
:type undo: bool | None
|
|
1606
1607
|
:param xmin: X Min
|
|
1607
|
-
:type xmin:
|
|
1608
|
+
:type xmin: int | None
|
|
1608
1609
|
:param xmax: X Max
|
|
1609
|
-
:type xmax:
|
|
1610
|
+
:type xmax: int | None
|
|
1610
1611
|
:param ymin: Y Min
|
|
1611
|
-
:type ymin:
|
|
1612
|
+
:type ymin: int | None
|
|
1612
1613
|
:param ymax: Y Max
|
|
1613
|
-
:type ymax:
|
|
1614
|
+
:type ymax: int | None
|
|
1614
1615
|
:param wait_for_input: Wait for Input
|
|
1615
|
-
:type wait_for_input: bool |
|
|
1616
|
+
:type wait_for_input: bool | None
|
|
1616
1617
|
:param mode: Mode
|
|
1617
1618
|
|
|
1618
1619
|
SET
|
|
@@ -1625,9 +1626,9 @@ def select_box(
|
|
|
1625
1626
|
Subtract -- Subtract existing selection.
|
|
1626
1627
|
:type mode: str | None
|
|
1627
1628
|
:param tweak: Tweak, Operator has been activated using a click-drag event
|
|
1628
|
-
:type tweak: bool |
|
|
1629
|
+
:type tweak: bool | None
|
|
1629
1630
|
:param include_handles: Select Handles, Select the strips and their handles
|
|
1630
|
-
:type include_handles: bool |
|
|
1631
|
+
:type include_handles: bool | None
|
|
1631
1632
|
"""
|
|
1632
1633
|
|
|
1633
1634
|
...
|
|
@@ -1638,8 +1639,8 @@ def select_grouped(
|
|
|
1638
1639
|
undo: bool | None = None,
|
|
1639
1640
|
*,
|
|
1640
1641
|
type: str | None = "TYPE",
|
|
1641
|
-
extend: bool |
|
|
1642
|
-
use_active_channel: bool |
|
|
1642
|
+
extend: bool | None = False,
|
|
1643
|
+
use_active_channel: bool | None = False,
|
|
1643
1644
|
):
|
|
1644
1645
|
"""Select all strips grouped by various properties
|
|
1645
1646
|
|
|
@@ -1670,9 +1671,9 @@ def select_grouped(
|
|
|
1670
1671
|
Overlap -- Overlapping time.
|
|
1671
1672
|
:type type: str | None
|
|
1672
1673
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1673
|
-
:type extend: bool |
|
|
1674
|
+
:type extend: bool | None
|
|
1674
1675
|
:param use_active_channel: Same Channel, Only consider strips on the same channel as the active one
|
|
1675
|
-
:type use_active_channel: bool |
|
|
1676
|
+
:type use_active_channel: bool | None
|
|
1676
1677
|
"""
|
|
1677
1678
|
|
|
1678
1679
|
...
|
|
@@ -1682,9 +1683,9 @@ def select_handle(
|
|
|
1682
1683
|
execution_context: int | str | None = None,
|
|
1683
1684
|
undo: bool | None = None,
|
|
1684
1685
|
*,
|
|
1685
|
-
wait_to_deselect_others: bool |
|
|
1686
|
-
mouse_x:
|
|
1687
|
-
mouse_y:
|
|
1686
|
+
wait_to_deselect_others: bool | None = False,
|
|
1687
|
+
mouse_x: int | None = 0,
|
|
1688
|
+
mouse_y: int | None = 0,
|
|
1688
1689
|
):
|
|
1689
1690
|
"""Select strip handle
|
|
1690
1691
|
|
|
@@ -1692,11 +1693,11 @@ def select_handle(
|
|
|
1692
1693
|
:type execution_context: int | str | None
|
|
1693
1694
|
:type undo: bool | None
|
|
1694
1695
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
1695
|
-
:type wait_to_deselect_others: bool |
|
|
1696
|
+
:type wait_to_deselect_others: bool | None
|
|
1696
1697
|
:param mouse_x: Mouse X
|
|
1697
|
-
:type mouse_x:
|
|
1698
|
+
:type mouse_x: int | None
|
|
1698
1699
|
:param mouse_y: Mouse Y
|
|
1699
|
-
:type mouse_y:
|
|
1700
|
+
:type mouse_y: int | None
|
|
1700
1701
|
"""
|
|
1701
1702
|
|
|
1702
1703
|
...
|
|
@@ -1752,7 +1753,7 @@ def select_linked_pick(
|
|
|
1752
1753
|
execution_context: int | str | None = None,
|
|
1753
1754
|
undo: bool | None = None,
|
|
1754
1755
|
*,
|
|
1755
|
-
extend: bool |
|
|
1756
|
+
extend: bool | None = False,
|
|
1756
1757
|
):
|
|
1757
1758
|
"""Select a chain of linked strips nearest to the mouse pointer
|
|
1758
1759
|
|
|
@@ -1760,7 +1761,7 @@ def select_linked_pick(
|
|
|
1760
1761
|
:type execution_context: int | str | None
|
|
1761
1762
|
:type undo: bool | None
|
|
1762
1763
|
:param extend: Extend, Extend the selection
|
|
1763
|
-
:type extend: bool |
|
|
1764
|
+
:type extend: bool | None
|
|
1764
1765
|
"""
|
|
1765
1766
|
|
|
1766
1767
|
...
|
|
@@ -1802,7 +1803,7 @@ def select_side_of_frame(
|
|
|
1802
1803
|
execution_context: int | str | None = None,
|
|
1803
1804
|
undo: bool | None = None,
|
|
1804
1805
|
*,
|
|
1805
|
-
extend: bool |
|
|
1806
|
+
extend: bool | None = False,
|
|
1806
1807
|
side: str | None = "LEFT",
|
|
1807
1808
|
):
|
|
1808
1809
|
"""Select strips relative to the current frame
|
|
@@ -1811,7 +1812,7 @@ def select_side_of_frame(
|
|
|
1811
1812
|
:type execution_context: int | str | None
|
|
1812
1813
|
:type undo: bool | None
|
|
1813
1814
|
:param extend: Extend, Extend the selection
|
|
1814
|
-
:type extend: bool |
|
|
1815
|
+
:type extend: bool | None
|
|
1815
1816
|
:param side: Side
|
|
1816
1817
|
|
|
1817
1818
|
LEFT
|
|
@@ -1832,7 +1833,7 @@ def set_range_to_strips(
|
|
|
1832
1833
|
execution_context: int | str | None = None,
|
|
1833
1834
|
undo: bool | None = None,
|
|
1834
1835
|
*,
|
|
1835
|
-
preview: bool |
|
|
1836
|
+
preview: bool | None = False,
|
|
1836
1837
|
):
|
|
1837
1838
|
"""Set the frame range to the selected strips start and end
|
|
1838
1839
|
|
|
@@ -1840,7 +1841,7 @@ def set_range_to_strips(
|
|
|
1840
1841
|
:type execution_context: int | str | None
|
|
1841
1842
|
:type undo: bool | None
|
|
1842
1843
|
:param preview: Preview, Set the preview range instead
|
|
1843
|
-
:type preview: bool |
|
|
1844
|
+
:type preview: bool | None
|
|
1844
1845
|
"""
|
|
1845
1846
|
|
|
1846
1847
|
...
|
|
@@ -1850,7 +1851,7 @@ def slip(
|
|
|
1850
1851
|
execution_context: int | str | None = None,
|
|
1851
1852
|
undo: bool | None = None,
|
|
1852
1853
|
*,
|
|
1853
|
-
offset:
|
|
1854
|
+
offset: int | None = 0,
|
|
1854
1855
|
):
|
|
1855
1856
|
"""Slip the contents of selected strips
|
|
1856
1857
|
|
|
@@ -1858,7 +1859,7 @@ def slip(
|
|
|
1858
1859
|
:type execution_context: int | str | None
|
|
1859
1860
|
:type undo: bool | None
|
|
1860
1861
|
:param offset: Offset, Offset to the data of the strip
|
|
1861
|
-
:type offset:
|
|
1862
|
+
:type offset: int | None
|
|
1862
1863
|
"""
|
|
1863
1864
|
|
|
1864
1865
|
...
|
|
@@ -1868,7 +1869,7 @@ def snap(
|
|
|
1868
1869
|
execution_context: int | str | None = None,
|
|
1869
1870
|
undo: bool | None = None,
|
|
1870
1871
|
*,
|
|
1871
|
-
frame:
|
|
1872
|
+
frame: int | None = 0,
|
|
1872
1873
|
):
|
|
1873
1874
|
"""Frame where selected strips will be snapped
|
|
1874
1875
|
|
|
@@ -1876,7 +1877,7 @@ def snap(
|
|
|
1876
1877
|
:type execution_context: int | str | None
|
|
1877
1878
|
:type undo: bool | None
|
|
1878
1879
|
:param frame: Frame, Frame where selected strips will be snapped
|
|
1879
|
-
:type frame:
|
|
1880
|
+
:type frame: int | None
|
|
1880
1881
|
"""
|
|
1881
1882
|
|
|
1882
1883
|
...
|
|
@@ -1886,39 +1887,39 @@ def sound_strip_add(
|
|
|
1886
1887
|
execution_context: int | str | None = None,
|
|
1887
1888
|
undo: bool | None = None,
|
|
1888
1889
|
*,
|
|
1889
|
-
filepath: str
|
|
1890
|
-
directory: str
|
|
1890
|
+
filepath: str = "",
|
|
1891
|
+
directory: str = "",
|
|
1891
1892
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
1892
1893
|
| None = None,
|
|
1893
|
-
check_existing: bool |
|
|
1894
|
-
filter_blender: bool |
|
|
1895
|
-
filter_backup: bool |
|
|
1896
|
-
filter_image: bool |
|
|
1897
|
-
filter_movie: bool |
|
|
1898
|
-
filter_python: bool |
|
|
1899
|
-
filter_font: bool |
|
|
1900
|
-
filter_sound: bool |
|
|
1901
|
-
filter_text: bool |
|
|
1902
|
-
filter_archive: bool |
|
|
1903
|
-
filter_btx: bool |
|
|
1904
|
-
filter_collada: bool |
|
|
1905
|
-
filter_alembic: bool |
|
|
1906
|
-
filter_usd: bool |
|
|
1907
|
-
filter_obj: bool |
|
|
1908
|
-
filter_volume: bool |
|
|
1909
|
-
filter_folder: bool |
|
|
1910
|
-
filter_blenlib: bool |
|
|
1911
|
-
filemode:
|
|
1912
|
-
relative_path: bool |
|
|
1894
|
+
check_existing: bool | None = False,
|
|
1895
|
+
filter_blender: bool | None = False,
|
|
1896
|
+
filter_backup: bool | None = False,
|
|
1897
|
+
filter_image: bool | None = False,
|
|
1898
|
+
filter_movie: bool | None = False,
|
|
1899
|
+
filter_python: bool | None = False,
|
|
1900
|
+
filter_font: bool | None = False,
|
|
1901
|
+
filter_sound: bool | None = True,
|
|
1902
|
+
filter_text: bool | None = False,
|
|
1903
|
+
filter_archive: bool | None = False,
|
|
1904
|
+
filter_btx: bool | None = False,
|
|
1905
|
+
filter_collada: bool | None = False,
|
|
1906
|
+
filter_alembic: bool | None = False,
|
|
1907
|
+
filter_usd: bool | None = False,
|
|
1908
|
+
filter_obj: bool | None = False,
|
|
1909
|
+
filter_volume: bool | None = False,
|
|
1910
|
+
filter_folder: bool | None = True,
|
|
1911
|
+
filter_blenlib: bool | None = False,
|
|
1912
|
+
filemode: int | None = 9,
|
|
1913
|
+
relative_path: bool | None = True,
|
|
1913
1914
|
display_type: str | None = "DEFAULT",
|
|
1914
1915
|
sort_method: str | None = "",
|
|
1915
|
-
frame_start:
|
|
1916
|
-
channel:
|
|
1917
|
-
replace_sel: bool |
|
|
1918
|
-
overlap: bool |
|
|
1919
|
-
overlap_shuffle_override: bool |
|
|
1920
|
-
cache: bool |
|
|
1921
|
-
mono: bool |
|
|
1916
|
+
frame_start: int | None = 0,
|
|
1917
|
+
channel: int | None = 1,
|
|
1918
|
+
replace_sel: bool | None = True,
|
|
1919
|
+
overlap: bool | None = False,
|
|
1920
|
+
overlap_shuffle_override: bool | None = False,
|
|
1921
|
+
cache: bool | None = False,
|
|
1922
|
+
mono: bool | None = False,
|
|
1922
1923
|
):
|
|
1923
1924
|
"""Add a sound strip to the sequencer
|
|
1924
1925
|
|
|
@@ -1926,51 +1927,51 @@ def sound_strip_add(
|
|
|
1926
1927
|
:type execution_context: int | str | None
|
|
1927
1928
|
:type undo: bool | None
|
|
1928
1929
|
:param filepath: File Path, Path to file
|
|
1929
|
-
:type filepath: str
|
|
1930
|
+
:type filepath: str
|
|
1930
1931
|
:param directory: Directory, Directory of the file
|
|
1931
|
-
:type directory: str
|
|
1932
|
+
:type directory: str
|
|
1932
1933
|
:param files: Files
|
|
1933
1934
|
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
1934
1935
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
1935
|
-
:type check_existing: bool |
|
|
1936
|
+
:type check_existing: bool | None
|
|
1936
1937
|
:param filter_blender: Filter .blend files
|
|
1937
|
-
:type filter_blender: bool |
|
|
1938
|
+
:type filter_blender: bool | None
|
|
1938
1939
|
:param filter_backup: Filter .blend files
|
|
1939
|
-
:type filter_backup: bool |
|
|
1940
|
+
:type filter_backup: bool | None
|
|
1940
1941
|
:param filter_image: Filter image files
|
|
1941
|
-
:type filter_image: bool |
|
|
1942
|
+
:type filter_image: bool | None
|
|
1942
1943
|
:param filter_movie: Filter movie files
|
|
1943
|
-
:type filter_movie: bool |
|
|
1944
|
+
:type filter_movie: bool | None
|
|
1944
1945
|
:param filter_python: Filter Python files
|
|
1945
|
-
:type filter_python: bool |
|
|
1946
|
+
:type filter_python: bool | None
|
|
1946
1947
|
:param filter_font: Filter font files
|
|
1947
|
-
:type filter_font: bool |
|
|
1948
|
+
:type filter_font: bool | None
|
|
1948
1949
|
:param filter_sound: Filter sound files
|
|
1949
|
-
:type filter_sound: bool |
|
|
1950
|
+
:type filter_sound: bool | None
|
|
1950
1951
|
:param filter_text: Filter text files
|
|
1951
|
-
:type filter_text: bool |
|
|
1952
|
+
:type filter_text: bool | None
|
|
1952
1953
|
:param filter_archive: Filter archive files
|
|
1953
|
-
:type filter_archive: bool |
|
|
1954
|
+
:type filter_archive: bool | None
|
|
1954
1955
|
:param filter_btx: Filter btx files
|
|
1955
|
-
:type filter_btx: bool |
|
|
1956
|
+
:type filter_btx: bool | None
|
|
1956
1957
|
:param filter_collada: Filter COLLADA files
|
|
1957
|
-
:type filter_collada: bool |
|
|
1958
|
+
:type filter_collada: bool | None
|
|
1958
1959
|
:param filter_alembic: Filter Alembic files
|
|
1959
|
-
:type filter_alembic: bool |
|
|
1960
|
+
:type filter_alembic: bool | None
|
|
1960
1961
|
:param filter_usd: Filter USD files
|
|
1961
|
-
:type filter_usd: bool |
|
|
1962
|
+
:type filter_usd: bool | None
|
|
1962
1963
|
:param filter_obj: Filter OBJ files
|
|
1963
|
-
:type filter_obj: bool |
|
|
1964
|
+
:type filter_obj: bool | None
|
|
1964
1965
|
:param filter_volume: Filter OpenVDB volume files
|
|
1965
|
-
:type filter_volume: bool |
|
|
1966
|
+
:type filter_volume: bool | None
|
|
1966
1967
|
:param filter_folder: Filter folders
|
|
1967
|
-
:type filter_folder: bool |
|
|
1968
|
+
:type filter_folder: bool | None
|
|
1968
1969
|
:param filter_blenlib: Filter Blender IDs
|
|
1969
|
-
:type filter_blenlib: bool |
|
|
1970
|
+
:type filter_blenlib: bool | None
|
|
1970
1971
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
1971
|
-
:type filemode:
|
|
1972
|
+
:type filemode: int | None
|
|
1972
1973
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
1973
|
-
:type relative_path: bool |
|
|
1974
|
+
:type relative_path: bool | None
|
|
1974
1975
|
:param display_type: Display Type
|
|
1975
1976
|
|
|
1976
1977
|
DEFAULT
|
|
@@ -2003,19 +2004,19 @@ def sound_strip_add(
|
|
|
2003
2004
|
Size -- Sort files by size.
|
|
2004
2005
|
:type sort_method: str | None
|
|
2005
2006
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
2006
|
-
:type frame_start:
|
|
2007
|
+
:type frame_start: int | None
|
|
2007
2008
|
:param channel: Channel, Channel to place this strip into
|
|
2008
|
-
:type channel:
|
|
2009
|
+
:type channel: int | None
|
|
2009
2010
|
:param replace_sel: Replace Selection, Replace the current selection
|
|
2010
|
-
:type replace_sel: bool |
|
|
2011
|
+
:type replace_sel: bool | None
|
|
2011
2012
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
2012
|
-
:type overlap: bool |
|
|
2013
|
+
:type overlap: bool | None
|
|
2013
2014
|
:param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
|
|
2014
|
-
:type overlap_shuffle_override: bool |
|
|
2015
|
+
:type overlap_shuffle_override: bool | None
|
|
2015
2016
|
:param cache: Cache, Cache the sound in memory
|
|
2016
|
-
:type cache: bool |
|
|
2017
|
+
:type cache: bool | None
|
|
2017
2018
|
:param mono: Mono, Merge all the sound's channels into one
|
|
2018
|
-
:type mono: bool |
|
|
2019
|
+
:type mono: bool | None
|
|
2019
2020
|
"""
|
|
2020
2021
|
|
|
2021
2022
|
...
|
|
@@ -2025,12 +2026,12 @@ def split(
|
|
|
2025
2026
|
execution_context: int | str | None = None,
|
|
2026
2027
|
undo: bool | None = None,
|
|
2027
2028
|
*,
|
|
2028
|
-
frame:
|
|
2029
|
-
channel:
|
|
2029
|
+
frame: int | None = 0,
|
|
2030
|
+
channel: int | None = 0,
|
|
2030
2031
|
type: str | None = "SOFT",
|
|
2031
|
-
use_cursor_position: bool |
|
|
2032
|
+
use_cursor_position: bool | None = False,
|
|
2032
2033
|
side: str | None = "MOUSE",
|
|
2033
|
-
ignore_selection: bool |
|
|
2034
|
+
ignore_selection: bool | None = False,
|
|
2034
2035
|
):
|
|
2035
2036
|
"""Split the selected strips in two
|
|
2036
2037
|
|
|
@@ -2038,17 +2039,17 @@ def split(
|
|
|
2038
2039
|
:type execution_context: int | str | None
|
|
2039
2040
|
:type undo: bool | None
|
|
2040
2041
|
:param frame: Frame, Frame where selected strips will be split
|
|
2041
|
-
:type frame:
|
|
2042
|
+
:type frame: int | None
|
|
2042
2043
|
:param channel: Channel, Channel in which strip will be cut
|
|
2043
|
-
:type channel:
|
|
2044
|
+
:type channel: int | None
|
|
2044
2045
|
:param type: Type, The type of split operation to perform on strips
|
|
2045
2046
|
:type type: str | None
|
|
2046
2047
|
:param use_cursor_position: Use Cursor Position, Split at position of the cursor instead of current frame
|
|
2047
|
-
:type use_cursor_position: bool |
|
|
2048
|
+
:type use_cursor_position: bool | None
|
|
2048
2049
|
:param side: Side, The side that remains selected after splitting
|
|
2049
2050
|
:type side: str | None
|
|
2050
2051
|
:param ignore_selection: Ignore Selection, Make cut even if strip is not selected preserving selection state after cut
|
|
2051
|
-
:type ignore_selection: bool |
|
|
2052
|
+
:type ignore_selection: bool | None
|
|
2052
2053
|
"""
|
|
2053
2054
|
|
|
2054
2055
|
...
|
|
@@ -2058,7 +2059,7 @@ def split_multicam(
|
|
|
2058
2059
|
execution_context: int | str | None = None,
|
|
2059
2060
|
undo: bool | None = None,
|
|
2060
2061
|
*,
|
|
2061
|
-
camera:
|
|
2062
|
+
camera: int | None = 1,
|
|
2062
2063
|
):
|
|
2063
2064
|
"""Split multicam strip and select camera
|
|
2064
2065
|
|
|
@@ -2066,7 +2067,7 @@ def split_multicam(
|
|
|
2066
2067
|
:type execution_context: int | str | None
|
|
2067
2068
|
:type undo: bool | None
|
|
2068
2069
|
:param camera: Camera
|
|
2069
|
-
:type camera:
|
|
2070
|
+
:type camera: int | None
|
|
2070
2071
|
"""
|
|
2071
2072
|
|
|
2072
2073
|
...
|
|
@@ -2094,8 +2095,8 @@ def strip_jump(
|
|
|
2094
2095
|
execution_context: int | str | None = None,
|
|
2095
2096
|
undo: bool | None = None,
|
|
2096
2097
|
*,
|
|
2097
|
-
next: bool |
|
|
2098
|
-
center: bool |
|
|
2098
|
+
next: bool | None = True,
|
|
2099
|
+
center: bool | None = True,
|
|
2099
2100
|
):
|
|
2100
2101
|
"""Move frame to previous edit point
|
|
2101
2102
|
|
|
@@ -2103,9 +2104,9 @@ def strip_jump(
|
|
|
2103
2104
|
:type execution_context: int | str | None
|
|
2104
2105
|
:type undo: bool | None
|
|
2105
2106
|
:param next: Next Strip
|
|
2106
|
-
:type next: bool |
|
|
2107
|
+
:type next: bool | None
|
|
2107
2108
|
:param center: Use Strip Center
|
|
2108
|
-
:type center: bool |
|
|
2109
|
+
:type center: bool | None
|
|
2109
2110
|
"""
|
|
2110
2111
|
|
|
2111
2112
|
...
|
|
@@ -2158,7 +2159,7 @@ def strip_modifier_equalizer_redefine(
|
|
|
2158
2159
|
undo: bool | None = None,
|
|
2159
2160
|
*,
|
|
2160
2161
|
graphs: str | None = "SIMPLE",
|
|
2161
|
-
name: str
|
|
2162
|
+
name: str = "Name",
|
|
2162
2163
|
):
|
|
2163
2164
|
"""Redefine equalizer graphs
|
|
2164
2165
|
|
|
@@ -2177,7 +2178,7 @@ def strip_modifier_equalizer_redefine(
|
|
|
2177
2178
|
Triplet -- Graphical definition in 3 sections.
|
|
2178
2179
|
:type graphs: str | None
|
|
2179
2180
|
:param name: Name, Name of modifier to redefine
|
|
2180
|
-
:type name: str
|
|
2181
|
+
:type name: str
|
|
2181
2182
|
"""
|
|
2182
2183
|
|
|
2183
2184
|
...
|
|
@@ -2187,7 +2188,7 @@ def strip_modifier_move(
|
|
|
2187
2188
|
execution_context: int | str | None = None,
|
|
2188
2189
|
undo: bool | None = None,
|
|
2189
2190
|
*,
|
|
2190
|
-
name: str
|
|
2191
|
+
name: str = "Name",
|
|
2191
2192
|
direction: str | None = "UP",
|
|
2192
2193
|
):
|
|
2193
2194
|
"""Move modifier up and down in the stack
|
|
@@ -2196,7 +2197,7 @@ def strip_modifier_move(
|
|
|
2196
2197
|
:type execution_context: int | str | None
|
|
2197
2198
|
:type undo: bool | None
|
|
2198
2199
|
:param name: Name, Name of modifier to remove
|
|
2199
|
-
:type name: str
|
|
2200
|
+
:type name: str
|
|
2200
2201
|
:param direction: Type
|
|
2201
2202
|
|
|
2202
2203
|
UP
|
|
@@ -2214,7 +2215,7 @@ def strip_modifier_remove(
|
|
|
2214
2215
|
execution_context: int | str | None = None,
|
|
2215
2216
|
undo: bool | None = None,
|
|
2216
2217
|
*,
|
|
2217
|
-
name: str
|
|
2218
|
+
name: str = "Name",
|
|
2218
2219
|
):
|
|
2219
2220
|
"""Remove a modifier from the strip
|
|
2220
2221
|
|
|
@@ -2222,7 +2223,7 @@ def strip_modifier_remove(
|
|
|
2222
2223
|
:type execution_context: int | str | None
|
|
2223
2224
|
:type undo: bool | None
|
|
2224
2225
|
:param name: Name, Name of modifier to remove
|
|
2225
|
-
:type name: str
|
|
2226
|
+
:type name: str
|
|
2226
2227
|
"""
|
|
2227
2228
|
|
|
2228
2229
|
...
|
|
@@ -2349,7 +2350,7 @@ def unmute(
|
|
|
2349
2350
|
execution_context: int | str | None = None,
|
|
2350
2351
|
undo: bool | None = None,
|
|
2351
2352
|
*,
|
|
2352
|
-
unselected: bool |
|
|
2353
|
+
unselected: bool | None = False,
|
|
2353
2354
|
):
|
|
2354
2355
|
"""Unmute (un)selected strips
|
|
2355
2356
|
|
|
@@ -2357,7 +2358,7 @@ def unmute(
|
|
|
2357
2358
|
:type execution_context: int | str | None
|
|
2358
2359
|
:type undo: bool | None
|
|
2359
2360
|
:param unselected: Unselected, Unmute unselected rather than selected strips
|
|
2360
|
-
:type unselected: bool |
|
|
2361
|
+
:type unselected: bool | None
|
|
2361
2362
|
"""
|
|
2362
2363
|
|
|
2363
2364
|
...
|
|
@@ -2409,11 +2410,11 @@ def view_ghost_border(
|
|
|
2409
2410
|
execution_context: int | str | None = None,
|
|
2410
2411
|
undo: bool | None = None,
|
|
2411
2412
|
*,
|
|
2412
|
-
xmin:
|
|
2413
|
-
xmax:
|
|
2414
|
-
ymin:
|
|
2415
|
-
ymax:
|
|
2416
|
-
wait_for_input: bool |
|
|
2413
|
+
xmin: int | None = 0,
|
|
2414
|
+
xmax: int | None = 0,
|
|
2415
|
+
ymin: int | None = 0,
|
|
2416
|
+
ymax: int | None = 0,
|
|
2417
|
+
wait_for_input: bool | None = True,
|
|
2417
2418
|
):
|
|
2418
2419
|
"""Set the boundaries of the border used for offset view
|
|
2419
2420
|
|
|
@@ -2421,15 +2422,15 @@ def view_ghost_border(
|
|
|
2421
2422
|
:type execution_context: int | str | None
|
|
2422
2423
|
:type undo: bool | None
|
|
2423
2424
|
:param xmin: X Min
|
|
2424
|
-
:type xmin:
|
|
2425
|
+
:type xmin: int | None
|
|
2425
2426
|
:param xmax: X Max
|
|
2426
|
-
:type xmax:
|
|
2427
|
+
:type xmax: int | None
|
|
2427
2428
|
:param ymin: Y Min
|
|
2428
|
-
:type ymin:
|
|
2429
|
+
:type ymin: int | None
|
|
2429
2430
|
:param ymax: Y Max
|
|
2430
|
-
:type ymax:
|
|
2431
|
+
:type ymax: int | None
|
|
2431
2432
|
:param wait_for_input: Wait for Input
|
|
2432
|
-
:type wait_for_input: bool |
|
|
2433
|
+
:type wait_for_input: bool | None
|
|
2433
2434
|
"""
|
|
2434
2435
|
|
|
2435
2436
|
...
|
|
@@ -2453,7 +2454,7 @@ def view_zoom_ratio(
|
|
|
2453
2454
|
execution_context: int | str | None = None,
|
|
2454
2455
|
undo: bool | None = None,
|
|
2455
2456
|
*,
|
|
2456
|
-
ratio:
|
|
2457
|
+
ratio: float | None = 1.0,
|
|
2457
2458
|
):
|
|
2458
2459
|
"""Change zoom ratio of sequencer preview
|
|
2459
2460
|
|
|
@@ -2461,7 +2462,7 @@ def view_zoom_ratio(
|
|
|
2461
2462
|
:type execution_context: int | str | None
|
|
2462
2463
|
:type undo: bool | None
|
|
2463
2464
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|
|
2464
|
-
:type ratio:
|
|
2465
|
+
:type ratio: float | None
|
|
2465
2466
|
"""
|
|
2466
2467
|
|
|
2467
2468
|
...
|