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/graph/__init__.pyi
CHANGED
|
@@ -25,7 +25,7 @@ def blend_offset(
|
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
*,
|
|
28
|
-
factor:
|
|
28
|
+
factor: float | None = 0.0,
|
|
29
29
|
):
|
|
30
30
|
"""Shift selected keys to the value of the neighboring keys as a block
|
|
31
31
|
|
|
@@ -33,7 +33,7 @@ def blend_offset(
|
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
:param factor: Offset Factor, Control which key to offset towards and how far
|
|
36
|
-
:type factor:
|
|
36
|
+
:type factor: float | None
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
39
|
...
|
|
@@ -43,7 +43,7 @@ def blend_to_default(
|
|
|
43
43
|
execution_context: int | str | None = None,
|
|
44
44
|
undo: bool | None = None,
|
|
45
45
|
*,
|
|
46
|
-
factor:
|
|
46
|
+
factor: float | None = 0.0,
|
|
47
47
|
):
|
|
48
48
|
"""Blend selected keys to their default value from their current position
|
|
49
49
|
|
|
@@ -51,7 +51,7 @@ def blend_to_default(
|
|
|
51
51
|
:type execution_context: int | str | None
|
|
52
52
|
:type undo: bool | None
|
|
53
53
|
:param factor: Factor, How much to blend to the default value
|
|
54
|
-
:type factor:
|
|
54
|
+
:type factor: float | None
|
|
55
55
|
"""
|
|
56
56
|
|
|
57
57
|
...
|
|
@@ -61,7 +61,7 @@ def blend_to_ease(
|
|
|
61
61
|
execution_context: int | str | None = None,
|
|
62
62
|
undo: bool | None = None,
|
|
63
63
|
*,
|
|
64
|
-
factor:
|
|
64
|
+
factor: float | None = 0.0,
|
|
65
65
|
):
|
|
66
66
|
"""Blends keyframes from current state to an ease-in or ease-out curve
|
|
67
67
|
|
|
@@ -69,7 +69,7 @@ def blend_to_ease(
|
|
|
69
69
|
:type execution_context: int | str | None
|
|
70
70
|
:type undo: bool | None
|
|
71
71
|
:param factor: Blend, Favor either original data or ease curve
|
|
72
|
-
:type factor:
|
|
72
|
+
:type factor: float | None
|
|
73
73
|
"""
|
|
74
74
|
|
|
75
75
|
...
|
|
@@ -79,7 +79,7 @@ def blend_to_neighbor(
|
|
|
79
79
|
execution_context: int | str | None = None,
|
|
80
80
|
undo: bool | None = None,
|
|
81
81
|
*,
|
|
82
|
-
factor:
|
|
82
|
+
factor: float | None = 0.0,
|
|
83
83
|
):
|
|
84
84
|
"""Blend selected keyframes to their left or right neighbor
|
|
85
85
|
|
|
@@ -87,7 +87,7 @@ def blend_to_neighbor(
|
|
|
87
87
|
:type execution_context: int | str | None
|
|
88
88
|
:type undo: bool | None
|
|
89
89
|
:param factor: Blend, The blend factor with 0 being the current frame
|
|
90
|
-
:type factor:
|
|
90
|
+
:type factor: float | None
|
|
91
91
|
"""
|
|
92
92
|
|
|
93
93
|
...
|
|
@@ -97,7 +97,7 @@ def breakdown(
|
|
|
97
97
|
execution_context: int | str | None = None,
|
|
98
98
|
undo: bool | None = None,
|
|
99
99
|
*,
|
|
100
|
-
factor:
|
|
100
|
+
factor: float | None = 0.0,
|
|
101
101
|
):
|
|
102
102
|
"""Move selected keyframes to an inbetween position relative to adjacent keys
|
|
103
103
|
|
|
@@ -105,7 +105,7 @@ def breakdown(
|
|
|
105
105
|
:type execution_context: int | str | None
|
|
106
106
|
:type undo: bool | None
|
|
107
107
|
:param factor: Factor, Favor either the left or the right key
|
|
108
|
-
:type factor:
|
|
108
|
+
:type factor: float | None
|
|
109
109
|
"""
|
|
110
110
|
|
|
111
111
|
...
|
|
@@ -115,11 +115,11 @@ def butterworth_smooth(
|
|
|
115
115
|
execution_context: int | str | None = None,
|
|
116
116
|
undo: bool | None = None,
|
|
117
117
|
*,
|
|
118
|
-
cutoff_frequency:
|
|
119
|
-
filter_order:
|
|
120
|
-
samples_per_frame:
|
|
121
|
-
blend:
|
|
122
|
-
blend_in_out:
|
|
118
|
+
cutoff_frequency: float | None = 3.0,
|
|
119
|
+
filter_order: int | None = 4,
|
|
120
|
+
samples_per_frame: int | None = 1,
|
|
121
|
+
blend: float | None = 1.0,
|
|
122
|
+
blend_in_out: int | None = 1,
|
|
123
123
|
):
|
|
124
124
|
"""Smooth an F-Curve while maintaining the general shape of the curve
|
|
125
125
|
|
|
@@ -127,15 +127,15 @@ def butterworth_smooth(
|
|
|
127
127
|
:type execution_context: int | str | None
|
|
128
128
|
:type undo: bool | None
|
|
129
129
|
:param cutoff_frequency: Frequency Cutoff (Hz), Lower values give a smoother curve
|
|
130
|
-
:type cutoff_frequency:
|
|
130
|
+
:type cutoff_frequency: float | None
|
|
131
131
|
:param filter_order: Filter Order, Higher values produce a harder frequency cutoff
|
|
132
|
-
:type filter_order:
|
|
132
|
+
:type filter_order: int | None
|
|
133
133
|
:param samples_per_frame: Samples per Frame, How many samples to calculate per frame, helps with subframe data
|
|
134
|
-
:type samples_per_frame:
|
|
134
|
+
:type samples_per_frame: int | None
|
|
135
135
|
:param blend: Blend, How much to blend to the smoothed curve
|
|
136
|
-
:type blend:
|
|
136
|
+
:type blend: float | None
|
|
137
137
|
:param blend_in_out: Blend In/Out, Linearly blend the smooth data to the border frames of the selection
|
|
138
|
-
:type blend_in_out:
|
|
138
|
+
:type blend_in_out: int | None
|
|
139
139
|
"""
|
|
140
140
|
|
|
141
141
|
...
|
|
@@ -145,8 +145,8 @@ def clean(
|
|
|
145
145
|
execution_context: int | str | None = None,
|
|
146
146
|
undo: bool | None = None,
|
|
147
147
|
*,
|
|
148
|
-
threshold:
|
|
149
|
-
channels: bool |
|
|
148
|
+
threshold: float | None = 0.001,
|
|
149
|
+
channels: bool | None = False,
|
|
150
150
|
):
|
|
151
151
|
"""Simplify F-Curves by removing closely spaced keyframes
|
|
152
152
|
|
|
@@ -154,9 +154,9 @@ def clean(
|
|
|
154
154
|
:type execution_context: int | str | None
|
|
155
155
|
:type undo: bool | None
|
|
156
156
|
:param threshold: Threshold
|
|
157
|
-
:type threshold:
|
|
157
|
+
:type threshold: float | None
|
|
158
158
|
:param channels: Channels
|
|
159
|
-
:type channels: bool |
|
|
159
|
+
:type channels: bool | None
|
|
160
160
|
"""
|
|
161
161
|
|
|
162
162
|
...
|
|
@@ -166,9 +166,9 @@ def click_insert(
|
|
|
166
166
|
execution_context: int | str | None = None,
|
|
167
167
|
undo: bool | None = None,
|
|
168
168
|
*,
|
|
169
|
-
frame:
|
|
170
|
-
value:
|
|
171
|
-
extend: bool |
|
|
169
|
+
frame: float | None = 1.0,
|
|
170
|
+
value: float | None = 1.0,
|
|
171
|
+
extend: bool | None = False,
|
|
172
172
|
):
|
|
173
173
|
"""Insert new keyframe at the cursor position for the active F-Curve
|
|
174
174
|
|
|
@@ -176,11 +176,11 @@ def click_insert(
|
|
|
176
176
|
:type execution_context: int | str | None
|
|
177
177
|
:type undo: bool | None
|
|
178
178
|
:param frame: Frame Number, Frame to insert keyframe on
|
|
179
|
-
:type frame:
|
|
179
|
+
:type frame: float | None
|
|
180
180
|
:param value: Value, Value for keyframe on
|
|
181
|
-
:type value:
|
|
181
|
+
:type value: float | None
|
|
182
182
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
183
|
-
:type extend: bool |
|
|
183
|
+
:type extend: bool | None
|
|
184
184
|
"""
|
|
185
185
|
|
|
186
186
|
...
|
|
@@ -190,13 +190,13 @@ def clickselect(
|
|
|
190
190
|
execution_context: int | str | None = None,
|
|
191
191
|
undo: bool | None = None,
|
|
192
192
|
*,
|
|
193
|
-
wait_to_deselect_others: bool |
|
|
194
|
-
mouse_x:
|
|
195
|
-
mouse_y:
|
|
196
|
-
extend: bool |
|
|
197
|
-
deselect_all: bool |
|
|
198
|
-
column: bool |
|
|
199
|
-
curves: bool |
|
|
193
|
+
wait_to_deselect_others: bool | None = False,
|
|
194
|
+
mouse_x: int | None = 0,
|
|
195
|
+
mouse_y: int | None = 0,
|
|
196
|
+
extend: bool | None = False,
|
|
197
|
+
deselect_all: bool | None = False,
|
|
198
|
+
column: bool | None = False,
|
|
199
|
+
curves: bool | None = False,
|
|
200
200
|
):
|
|
201
201
|
"""Select keyframes by clicking on them
|
|
202
202
|
|
|
@@ -204,19 +204,19 @@ def clickselect(
|
|
|
204
204
|
:type execution_context: int | str | None
|
|
205
205
|
:type undo: bool | None
|
|
206
206
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
207
|
-
:type wait_to_deselect_others: bool |
|
|
207
|
+
:type wait_to_deselect_others: bool | None
|
|
208
208
|
:param mouse_x: Mouse X
|
|
209
|
-
:type mouse_x:
|
|
209
|
+
:type mouse_x: int | None
|
|
210
210
|
:param mouse_y: Mouse Y
|
|
211
|
-
:type mouse_y:
|
|
211
|
+
:type mouse_y: int | None
|
|
212
212
|
:param extend: Extend Select, Toggle keyframe selection instead of leaving newly selected keyframes only
|
|
213
|
-
:type extend: bool |
|
|
213
|
+
:type extend: bool | None
|
|
214
214
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
215
|
-
:type deselect_all: bool |
|
|
215
|
+
:type deselect_all: bool | None
|
|
216
216
|
:param column: Column Select, Select all keyframes that occur on the same frame as the one under the mouse
|
|
217
|
-
:type column: bool |
|
|
217
|
+
:type column: bool | None
|
|
218
218
|
:param curves: Only Curves, Select all the keyframes in the curve
|
|
219
|
-
:type curves: bool |
|
|
219
|
+
:type curves: bool | None
|
|
220
220
|
"""
|
|
221
221
|
|
|
222
222
|
...
|
|
@@ -240,8 +240,8 @@ def cursor_set(
|
|
|
240
240
|
execution_context: int | str | None = None,
|
|
241
241
|
undo: bool | None = None,
|
|
242
242
|
*,
|
|
243
|
-
frame:
|
|
244
|
-
value:
|
|
243
|
+
frame: float | None = 0.0,
|
|
244
|
+
value: float | None = 0.0,
|
|
245
245
|
):
|
|
246
246
|
"""Interactively set the current frame and value cursor
|
|
247
247
|
|
|
@@ -249,9 +249,9 @@ def cursor_set(
|
|
|
249
249
|
:type execution_context: int | str | None
|
|
250
250
|
:type undo: bool | None
|
|
251
251
|
:param frame: Frame
|
|
252
|
-
:type frame:
|
|
252
|
+
:type frame: float | None
|
|
253
253
|
:param value: Value
|
|
254
|
-
:type value:
|
|
254
|
+
:type value: float | None
|
|
255
255
|
"""
|
|
256
256
|
|
|
257
257
|
...
|
|
@@ -262,8 +262,8 @@ def decimate(
|
|
|
262
262
|
undo: bool | None = None,
|
|
263
263
|
*,
|
|
264
264
|
mode: str | None = "RATIO",
|
|
265
|
-
factor:
|
|
266
|
-
remove_error_margin:
|
|
265
|
+
factor: float | None = 0.333333,
|
|
266
|
+
remove_error_margin: float | None = 0.0,
|
|
267
267
|
):
|
|
268
268
|
"""Decimate F-Curves by removing keyframes that influence the curve shape the least
|
|
269
269
|
|
|
@@ -279,9 +279,9 @@ def decimate(
|
|
|
279
279
|
Error Margin -- Use an error margin to specify how much the curve is allowed to deviate from the original path.
|
|
280
280
|
:type mode: str | None
|
|
281
281
|
:param factor: Remove, The ratio of remaining keyframes after the operation
|
|
282
|
-
:type factor:
|
|
282
|
+
:type factor: float | None
|
|
283
283
|
:param remove_error_margin: Max Error Margin, How much the new decimated curve is allowed to deviate from the original
|
|
284
|
-
:type remove_error_margin:
|
|
284
|
+
:type remove_error_margin: float | None
|
|
285
285
|
"""
|
|
286
286
|
|
|
287
287
|
...
|
|
@@ -291,7 +291,7 @@ def delete(
|
|
|
291
291
|
execution_context: int | str | None = None,
|
|
292
292
|
undo: bool | None = None,
|
|
293
293
|
*,
|
|
294
|
-
confirm: bool |
|
|
294
|
+
confirm: bool | None = True,
|
|
295
295
|
):
|
|
296
296
|
"""Remove all selected keyframes
|
|
297
297
|
|
|
@@ -299,7 +299,7 @@ def delete(
|
|
|
299
299
|
:type execution_context: int | str | None
|
|
300
300
|
:type undo: bool | None
|
|
301
301
|
:param confirm: Confirm, Prompt for confirmation
|
|
302
|
-
:type confirm: bool |
|
|
302
|
+
:type confirm: bool | None
|
|
303
303
|
"""
|
|
304
304
|
|
|
305
305
|
...
|
|
@@ -337,7 +337,7 @@ def driver_variables_paste(
|
|
|
337
337
|
execution_context: int | str | None = None,
|
|
338
338
|
undo: bool | None = None,
|
|
339
339
|
*,
|
|
340
|
-
replace: bool |
|
|
340
|
+
replace: bool | None = False,
|
|
341
341
|
):
|
|
342
342
|
"""Add copied driver variables to the active driver
|
|
343
343
|
|
|
@@ -345,7 +345,7 @@ def driver_variables_paste(
|
|
|
345
345
|
:type execution_context: int | str | None
|
|
346
346
|
:type undo: bool | None
|
|
347
347
|
:param replace: Replace Existing, Replace existing driver variables, instead of just appending to the end of the existing list
|
|
348
|
-
:type replace: bool |
|
|
348
|
+
:type replace: bool | None
|
|
349
349
|
"""
|
|
350
350
|
|
|
351
351
|
...
|
|
@@ -394,8 +394,8 @@ def ease(
|
|
|
394
394
|
execution_context: int | str | None = None,
|
|
395
395
|
undo: bool | None = None,
|
|
396
396
|
*,
|
|
397
|
-
factor:
|
|
398
|
-
sharpness:
|
|
397
|
+
factor: float | None = 0.0,
|
|
398
|
+
sharpness: float | None = 2.0,
|
|
399
399
|
):
|
|
400
400
|
"""Align keyframes on a ease-in or ease-out curve
|
|
401
401
|
|
|
@@ -403,9 +403,9 @@ def ease(
|
|
|
403
403
|
:type execution_context: int | str | None
|
|
404
404
|
:type undo: bool | None
|
|
405
405
|
:param factor: Curve Bend, Defines if the keys should be aligned on an ease-in or ease-out curve
|
|
406
|
-
:type factor:
|
|
406
|
+
:type factor: float | None
|
|
407
407
|
:param sharpness: Sharpness, Higher values make the change more abrupt
|
|
408
|
-
:type sharpness:
|
|
408
|
+
:type sharpness: float | None
|
|
409
409
|
"""
|
|
410
410
|
|
|
411
411
|
...
|
|
@@ -434,8 +434,8 @@ def equalize_handles(
|
|
|
434
434
|
undo: bool | None = None,
|
|
435
435
|
*,
|
|
436
436
|
side: str | None = "LEFT",
|
|
437
|
-
handle_length:
|
|
438
|
-
flatten: bool |
|
|
437
|
+
handle_length: float | None = 5.0,
|
|
438
|
+
flatten: bool | None = False,
|
|
439
439
|
):
|
|
440
440
|
"""Ensure selected keyframes' handles have equal length, optionally making them horizontal. Automatic, Automatic Clamped, or Vector handle types will be converted to Aligned
|
|
441
441
|
|
|
@@ -454,9 +454,9 @@ def equalize_handles(
|
|
|
454
454
|
Both -- Equalize both of a keyframe's handles.
|
|
455
455
|
:type side: str | None
|
|
456
456
|
:param handle_length: Handle Length, Length to make selected keyframes' Bézier handles
|
|
457
|
-
:type handle_length:
|
|
457
|
+
:type handle_length: float | None
|
|
458
458
|
:param flatten: Flatten, Make the values of the selected keyframes' handles the same as their respective keyframes
|
|
459
|
-
:type flatten: bool |
|
|
459
|
+
:type flatten: bool | None
|
|
460
460
|
"""
|
|
461
461
|
|
|
462
462
|
...
|
|
@@ -511,7 +511,7 @@ def fmodifier_add(
|
|
|
511
511
|
undo: bool | None = None,
|
|
512
512
|
*,
|
|
513
513
|
type: str | None = "NULL",
|
|
514
|
-
only_active: bool |
|
|
514
|
+
only_active: bool | None = False,
|
|
515
515
|
):
|
|
516
516
|
"""Add F-Modifier to the active/selected F-Curves
|
|
517
517
|
|
|
@@ -521,7 +521,7 @@ def fmodifier_add(
|
|
|
521
521
|
:param type: Type
|
|
522
522
|
:type type: str | None
|
|
523
523
|
:param only_active: Only Active, Only add F-Modifier to active F-Curve
|
|
524
|
-
:type only_active: bool |
|
|
524
|
+
:type only_active: bool | None
|
|
525
525
|
"""
|
|
526
526
|
|
|
527
527
|
...
|
|
@@ -545,8 +545,8 @@ def fmodifier_paste(
|
|
|
545
545
|
execution_context: int | str | None = None,
|
|
546
546
|
undo: bool | None = None,
|
|
547
547
|
*,
|
|
548
|
-
only_active: bool |
|
|
549
|
-
replace: bool |
|
|
548
|
+
only_active: bool | None = False,
|
|
549
|
+
replace: bool | None = False,
|
|
550
550
|
):
|
|
551
551
|
"""Add copied F-Modifiers to the selected F-Curves
|
|
552
552
|
|
|
@@ -554,9 +554,9 @@ def fmodifier_paste(
|
|
|
554
554
|
:type execution_context: int | str | None
|
|
555
555
|
:type undo: bool | None
|
|
556
556
|
:param only_active: Only Active, Only paste F-Modifiers on active F-Curve
|
|
557
|
-
:type only_active: bool |
|
|
557
|
+
:type only_active: bool | None
|
|
558
558
|
:param replace: Replace Existing, Replace existing F-Modifiers, instead of just appending to the end of the existing list
|
|
559
|
-
:type replace: bool |
|
|
559
|
+
:type replace: bool | None
|
|
560
560
|
"""
|
|
561
561
|
|
|
562
562
|
...
|
|
@@ -580,9 +580,9 @@ def gaussian_smooth(
|
|
|
580
580
|
execution_context: int | str | None = None,
|
|
581
581
|
undo: bool | None = None,
|
|
582
582
|
*,
|
|
583
|
-
factor:
|
|
584
|
-
sigma:
|
|
585
|
-
filter_width:
|
|
583
|
+
factor: float | None = 1.0,
|
|
584
|
+
sigma: float | None = 0.33,
|
|
585
|
+
filter_width: int | None = 6,
|
|
586
586
|
):
|
|
587
587
|
"""Smooth the curve using a Gaussian filter
|
|
588
588
|
|
|
@@ -590,11 +590,11 @@ def gaussian_smooth(
|
|
|
590
590
|
:type execution_context: int | str | None
|
|
591
591
|
:type undo: bool | None
|
|
592
592
|
:param factor: Factor, How much to blend to the default value
|
|
593
|
-
:type factor:
|
|
593
|
+
:type factor: float | None
|
|
594
594
|
:param sigma: Sigma, The shape of the gaussian distribution, lower values make it sharper
|
|
595
|
-
:type sigma:
|
|
595
|
+
:type sigma: float | None
|
|
596
596
|
:param filter_width: Filter Width, How far to each side the operator will average the key values
|
|
597
|
-
:type filter_width:
|
|
597
|
+
:type filter_width: int | None
|
|
598
598
|
"""
|
|
599
599
|
|
|
600
600
|
...
|
|
@@ -650,7 +650,7 @@ def hide(
|
|
|
650
650
|
execution_context: int | str | None = None,
|
|
651
651
|
undo: bool | None = None,
|
|
652
652
|
*,
|
|
653
|
-
unselected: bool |
|
|
653
|
+
unselected: bool | None = False,
|
|
654
654
|
):
|
|
655
655
|
"""Hide selected curves from Graph Editor view
|
|
656
656
|
|
|
@@ -658,7 +658,7 @@ def hide(
|
|
|
658
658
|
:type execution_context: int | str | None
|
|
659
659
|
:type undo: bool | None
|
|
660
660
|
:param unselected: Unselected, Hide unselected rather than selected curves
|
|
661
|
-
:type unselected: bool |
|
|
661
|
+
:type unselected: bool | None
|
|
662
662
|
"""
|
|
663
663
|
|
|
664
664
|
...
|
|
@@ -719,7 +719,7 @@ def keyframe_jump(
|
|
|
719
719
|
execution_context: int | str | None = None,
|
|
720
720
|
undo: bool | None = None,
|
|
721
721
|
*,
|
|
722
|
-
next: bool |
|
|
722
|
+
next: bool | None = True,
|
|
723
723
|
):
|
|
724
724
|
"""Jump to previous/next keyframe
|
|
725
725
|
|
|
@@ -727,7 +727,7 @@ def keyframe_jump(
|
|
|
727
727
|
:type execution_context: int | str | None
|
|
728
728
|
:type undo: bool | None
|
|
729
729
|
:param next: Next Keyframe
|
|
730
|
-
:type next: bool |
|
|
730
|
+
:type next: bool | None
|
|
731
731
|
"""
|
|
732
732
|
|
|
733
733
|
...
|
|
@@ -751,7 +751,7 @@ def match_slope(
|
|
|
751
751
|
execution_context: int | str | None = None,
|
|
752
752
|
undo: bool | None = None,
|
|
753
753
|
*,
|
|
754
|
-
factor:
|
|
754
|
+
factor: float | None = 0.0,
|
|
755
755
|
):
|
|
756
756
|
"""Blend selected keys to the slope of neighboring ones
|
|
757
757
|
|
|
@@ -759,7 +759,7 @@ def match_slope(
|
|
|
759
759
|
:type execution_context: int | str | None
|
|
760
760
|
:type undo: bool | None
|
|
761
761
|
:param factor: Factor, Defines which keys to use as slope and how much to blend towards them
|
|
762
|
-
:type factor:
|
|
762
|
+
:type factor: float | None
|
|
763
763
|
"""
|
|
764
764
|
|
|
765
765
|
...
|
|
@@ -805,7 +805,7 @@ def paste(
|
|
|
805
805
|
offset: str | None = "START",
|
|
806
806
|
value_offset: str | None = "NONE",
|
|
807
807
|
merge: str | None = "MIX",
|
|
808
|
-
flipped: bool |
|
|
808
|
+
flipped: bool | None = False,
|
|
809
809
|
):
|
|
810
810
|
"""Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
|
|
811
811
|
|
|
@@ -819,7 +819,7 @@ def paste(
|
|
|
819
819
|
:param merge: Type, Method of merging pasted keys and existing
|
|
820
820
|
:type merge: str | None
|
|
821
821
|
:param flipped: Flipped, Paste keyframes from mirrored bones if they exist
|
|
822
|
-
:type flipped: bool |
|
|
822
|
+
:type flipped: bool | None
|
|
823
823
|
"""
|
|
824
824
|
|
|
825
825
|
...
|
|
@@ -843,7 +843,7 @@ def push_pull(
|
|
|
843
843
|
execution_context: int | str | None = None,
|
|
844
844
|
undo: bool | None = None,
|
|
845
845
|
*,
|
|
846
|
-
factor:
|
|
846
|
+
factor: float | None = 1.0,
|
|
847
847
|
):
|
|
848
848
|
"""Exaggerate or minimize the value of the selected keys
|
|
849
849
|
|
|
@@ -851,7 +851,7 @@ def push_pull(
|
|
|
851
851
|
:type execution_context: int | str | None
|
|
852
852
|
:type undo: bool | None
|
|
853
853
|
:param factor: Factor, Control how far to push or pull the keys
|
|
854
|
-
:type factor:
|
|
854
|
+
:type factor: float | None
|
|
855
855
|
"""
|
|
856
856
|
|
|
857
857
|
...
|
|
@@ -861,7 +861,7 @@ def reveal(
|
|
|
861
861
|
execution_context: int | str | None = None,
|
|
862
862
|
undo: bool | None = None,
|
|
863
863
|
*,
|
|
864
|
-
select: bool |
|
|
864
|
+
select: bool | None = True,
|
|
865
865
|
):
|
|
866
866
|
"""Make previously hidden curves visible again in Graph Editor view
|
|
867
867
|
|
|
@@ -869,7 +869,7 @@ def reveal(
|
|
|
869
869
|
:type execution_context: int | str | None
|
|
870
870
|
:type undo: bool | None
|
|
871
871
|
:param select: Select
|
|
872
|
-
:type select: bool |
|
|
872
|
+
:type select: bool | None
|
|
873
873
|
"""
|
|
874
874
|
|
|
875
875
|
...
|
|
@@ -893,7 +893,7 @@ def scale_average(
|
|
|
893
893
|
execution_context: int | str | None = None,
|
|
894
894
|
undo: bool | None = None,
|
|
895
895
|
*,
|
|
896
|
-
factor:
|
|
896
|
+
factor: float | None = 1.0,
|
|
897
897
|
):
|
|
898
898
|
"""Scale selected key values by their combined average
|
|
899
899
|
|
|
@@ -901,7 +901,7 @@ def scale_average(
|
|
|
901
901
|
:type execution_context: int | str | None
|
|
902
902
|
:type undo: bool | None
|
|
903
903
|
:param factor: Scale Factor, The scale factor applied to the curve segments
|
|
904
|
-
:type factor:
|
|
904
|
+
:type factor: float | None
|
|
905
905
|
"""
|
|
906
906
|
|
|
907
907
|
...
|
|
@@ -911,7 +911,7 @@ def scale_from_neighbor(
|
|
|
911
911
|
execution_context: int | str | None = None,
|
|
912
912
|
undo: bool | None = None,
|
|
913
913
|
*,
|
|
914
|
-
factor:
|
|
914
|
+
factor: float | None = 0.0,
|
|
915
915
|
anchor: str | None = "LEFT",
|
|
916
916
|
):
|
|
917
917
|
"""Increase or decrease the value of selected keys in relationship to the neighboring one
|
|
@@ -920,7 +920,7 @@ def scale_from_neighbor(
|
|
|
920
920
|
:type execution_context: int | str | None
|
|
921
921
|
:type undo: bool | None
|
|
922
922
|
:param factor: Factor, The factor to scale keys with
|
|
923
|
-
:type factor:
|
|
923
|
+
:type factor: float | None
|
|
924
924
|
:param anchor: Reference Key, Which end of the segment to use as a reference to scale from
|
|
925
925
|
:type anchor: str | None
|
|
926
926
|
"""
|
|
@@ -962,15 +962,15 @@ def select_box(
|
|
|
962
962
|
execution_context: int | str | None = None,
|
|
963
963
|
undo: bool | None = None,
|
|
964
964
|
*,
|
|
965
|
-
axis_range: bool |
|
|
966
|
-
include_handles: bool |
|
|
967
|
-
tweak: bool |
|
|
968
|
-
use_curve_selection: bool |
|
|
969
|
-
xmin:
|
|
970
|
-
xmax:
|
|
971
|
-
ymin:
|
|
972
|
-
ymax:
|
|
973
|
-
wait_for_input: bool |
|
|
965
|
+
axis_range: bool | None = False,
|
|
966
|
+
include_handles: bool | None = True,
|
|
967
|
+
tweak: bool | None = False,
|
|
968
|
+
use_curve_selection: bool | None = True,
|
|
969
|
+
xmin: int | None = 0,
|
|
970
|
+
xmax: int | None = 0,
|
|
971
|
+
ymin: int | None = 0,
|
|
972
|
+
ymax: int | None = 0,
|
|
973
|
+
wait_for_input: bool | None = True,
|
|
974
974
|
mode: str | None = "SET",
|
|
975
975
|
):
|
|
976
976
|
"""Select all keyframes within the specified region
|
|
@@ -979,23 +979,23 @@ def select_box(
|
|
|
979
979
|
:type execution_context: int | str | None
|
|
980
980
|
:type undo: bool | None
|
|
981
981
|
:param axis_range: Axis Range
|
|
982
|
-
:type axis_range: bool |
|
|
982
|
+
:type axis_range: bool | None
|
|
983
983
|
:param include_handles: Include Handles, Are handles tested individually against the selection criteria
|
|
984
|
-
:type include_handles: bool |
|
|
984
|
+
:type include_handles: bool | None
|
|
985
985
|
:param tweak: Tweak, Operator has been activated using a click-drag event
|
|
986
|
-
:type tweak: bool |
|
|
986
|
+
:type tweak: bool | None
|
|
987
987
|
:param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the calculated F-curve
|
|
988
|
-
:type use_curve_selection: bool |
|
|
988
|
+
:type use_curve_selection: bool | None
|
|
989
989
|
:param xmin: X Min
|
|
990
|
-
:type xmin:
|
|
990
|
+
:type xmin: int | None
|
|
991
991
|
:param xmax: X Max
|
|
992
|
-
:type xmax:
|
|
992
|
+
:type xmax: int | None
|
|
993
993
|
:param ymin: Y Min
|
|
994
|
-
:type ymin:
|
|
994
|
+
:type ymin: int | None
|
|
995
995
|
:param ymax: Y Max
|
|
996
|
-
:type ymax:
|
|
996
|
+
:type ymax: int | None
|
|
997
997
|
:param wait_for_input: Wait for Input
|
|
998
|
-
:type wait_for_input: bool |
|
|
998
|
+
:type wait_for_input: bool | None
|
|
999
999
|
:param mode: Mode
|
|
1000
1000
|
|
|
1001
1001
|
SET
|
|
@@ -1016,12 +1016,12 @@ def select_circle(
|
|
|
1016
1016
|
execution_context: int | str | None = None,
|
|
1017
1017
|
undo: bool | None = None,
|
|
1018
1018
|
*,
|
|
1019
|
-
x:
|
|
1020
|
-
y:
|
|
1021
|
-
radius:
|
|
1022
|
-
wait_for_input: bool |
|
|
1019
|
+
x: int | None = 0,
|
|
1020
|
+
y: int | None = 0,
|
|
1021
|
+
radius: int | None = 25,
|
|
1022
|
+
wait_for_input: bool | None = True,
|
|
1023
1023
|
mode: str | None = "SET",
|
|
1024
|
-
use_curve_selection: bool |
|
|
1024
|
+
use_curve_selection: bool | None = True,
|
|
1025
1025
|
):
|
|
1026
1026
|
"""Select keyframe points using circle selection
|
|
1027
1027
|
|
|
@@ -1029,13 +1029,13 @@ def select_circle(
|
|
|
1029
1029
|
:type execution_context: int | str | None
|
|
1030
1030
|
:type undo: bool | None
|
|
1031
1031
|
:param x: X
|
|
1032
|
-
:type x:
|
|
1032
|
+
:type x: int | None
|
|
1033
1033
|
:param y: Y
|
|
1034
|
-
:type y:
|
|
1034
|
+
:type y: int | None
|
|
1035
1035
|
:param radius: Radius
|
|
1036
|
-
:type radius:
|
|
1036
|
+
:type radius: int | None
|
|
1037
1037
|
:param wait_for_input: Wait for Input
|
|
1038
|
-
:type wait_for_input: bool |
|
|
1038
|
+
:type wait_for_input: bool | None
|
|
1039
1039
|
:param mode: Mode
|
|
1040
1040
|
|
|
1041
1041
|
SET
|
|
@@ -1048,7 +1048,7 @@ def select_circle(
|
|
|
1048
1048
|
Subtract -- Subtract existing selection.
|
|
1049
1049
|
:type mode: str | None
|
|
1050
1050
|
:param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the curve itself
|
|
1051
|
-
:type use_curve_selection: bool |
|
|
1051
|
+
:type use_curve_selection: bool | None
|
|
1052
1052
|
"""
|
|
1053
1053
|
|
|
1054
1054
|
...
|
|
@@ -1129,7 +1129,7 @@ def select_lasso(
|
|
|
1129
1129
|
*,
|
|
1130
1130
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1131
1131
|
mode: str | None = "SET",
|
|
1132
|
-
use_curve_selection: bool |
|
|
1132
|
+
use_curve_selection: bool | None = True,
|
|
1133
1133
|
):
|
|
1134
1134
|
"""Select keyframe points using lasso selection
|
|
1135
1135
|
|
|
@@ -1150,7 +1150,7 @@ def select_lasso(
|
|
|
1150
1150
|
Subtract -- Subtract existing selection.
|
|
1151
1151
|
:type mode: str | None
|
|
1152
1152
|
:param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the curve itself
|
|
1153
|
-
:type use_curve_selection: bool |
|
|
1153
|
+
:type use_curve_selection: bool | None
|
|
1154
1154
|
"""
|
|
1155
1155
|
|
|
1156
1156
|
...
|
|
@@ -1161,7 +1161,7 @@ def select_leftright(
|
|
|
1161
1161
|
undo: bool | None = None,
|
|
1162
1162
|
*,
|
|
1163
1163
|
mode: str | None = "CHECK",
|
|
1164
|
-
extend: bool |
|
|
1164
|
+
extend: bool | None = False,
|
|
1165
1165
|
):
|
|
1166
1166
|
"""Select keyframes to the left or the right of the current frame
|
|
1167
1167
|
|
|
@@ -1171,7 +1171,7 @@ def select_leftright(
|
|
|
1171
1171
|
:param mode: Mode
|
|
1172
1172
|
:type mode: str | None
|
|
1173
1173
|
:param extend: Extend Select
|
|
1174
|
-
:type extend: bool |
|
|
1174
|
+
:type extend: bool | None
|
|
1175
1175
|
"""
|
|
1176
1176
|
|
|
1177
1177
|
...
|
|
@@ -1223,7 +1223,7 @@ def shear(
|
|
|
1223
1223
|
execution_context: int | str | None = None,
|
|
1224
1224
|
undo: bool | None = None,
|
|
1225
1225
|
*,
|
|
1226
|
-
factor:
|
|
1226
|
+
factor: float | None = 0.0,
|
|
1227
1227
|
direction: str | None = "FROM_LEFT",
|
|
1228
1228
|
):
|
|
1229
1229
|
"""Affect the value of the keys linearly, keeping the same relationship between them using either the left or the right key as reference
|
|
@@ -1232,7 +1232,7 @@ def shear(
|
|
|
1232
1232
|
:type execution_context: int | str | None
|
|
1233
1233
|
:type undo: bool | None
|
|
1234
1234
|
:param factor: Shear Factor, The amount of shear to apply
|
|
1235
|
-
:type factor:
|
|
1235
|
+
:type factor: float | None
|
|
1236
1236
|
:param direction: Direction, Which end of the segment to use as a reference to shear from
|
|
1237
1237
|
|
|
1238
1238
|
FROM_LEFT
|
|
@@ -1314,39 +1314,39 @@ def sound_to_samples(
|
|
|
1314
1314
|
execution_context: int | str | None = None,
|
|
1315
1315
|
undo: bool | None = None,
|
|
1316
1316
|
*,
|
|
1317
|
-
filepath: str
|
|
1318
|
-
check_existing: bool |
|
|
1319
|
-
filter_blender: bool |
|
|
1320
|
-
filter_backup: bool |
|
|
1321
|
-
filter_image: bool |
|
|
1322
|
-
filter_movie: bool |
|
|
1323
|
-
filter_python: bool |
|
|
1324
|
-
filter_font: bool |
|
|
1325
|
-
filter_sound: bool |
|
|
1326
|
-
filter_text: bool |
|
|
1327
|
-
filter_archive: bool |
|
|
1328
|
-
filter_btx: bool |
|
|
1329
|
-
filter_collada: bool |
|
|
1330
|
-
filter_alembic: bool |
|
|
1331
|
-
filter_usd: bool |
|
|
1332
|
-
filter_obj: bool |
|
|
1333
|
-
filter_volume: bool |
|
|
1334
|
-
filter_folder: bool |
|
|
1335
|
-
filter_blenlib: bool |
|
|
1336
|
-
filemode:
|
|
1337
|
-
show_multiview: bool |
|
|
1338
|
-
use_multiview: bool |
|
|
1317
|
+
filepath: str = "",
|
|
1318
|
+
check_existing: bool | None = False,
|
|
1319
|
+
filter_blender: bool | None = False,
|
|
1320
|
+
filter_backup: bool | None = False,
|
|
1321
|
+
filter_image: bool | None = False,
|
|
1322
|
+
filter_movie: bool | None = True,
|
|
1323
|
+
filter_python: bool | None = False,
|
|
1324
|
+
filter_font: bool | None = False,
|
|
1325
|
+
filter_sound: bool | None = True,
|
|
1326
|
+
filter_text: bool | None = False,
|
|
1327
|
+
filter_archive: bool | None = False,
|
|
1328
|
+
filter_btx: bool | None = False,
|
|
1329
|
+
filter_collada: bool | None = False,
|
|
1330
|
+
filter_alembic: bool | None = False,
|
|
1331
|
+
filter_usd: bool | None = False,
|
|
1332
|
+
filter_obj: bool | None = False,
|
|
1333
|
+
filter_volume: bool | None = False,
|
|
1334
|
+
filter_folder: bool | None = True,
|
|
1335
|
+
filter_blenlib: bool | None = False,
|
|
1336
|
+
filemode: int | None = 9,
|
|
1337
|
+
show_multiview: bool | None = False,
|
|
1338
|
+
use_multiview: bool | None = False,
|
|
1339
1339
|
display_type: str | None = "DEFAULT",
|
|
1340
1340
|
sort_method: str | None = "",
|
|
1341
|
-
low:
|
|
1342
|
-
high:
|
|
1343
|
-
attack:
|
|
1344
|
-
release:
|
|
1345
|
-
threshold:
|
|
1346
|
-
use_accumulate: bool |
|
|
1347
|
-
use_additive: bool |
|
|
1348
|
-
use_square: bool |
|
|
1349
|
-
sthreshold:
|
|
1341
|
+
low: float | None = 0.0,
|
|
1342
|
+
high: float | None = 100000.0,
|
|
1343
|
+
attack: float | None = 0.005,
|
|
1344
|
+
release: float | None = 0.2,
|
|
1345
|
+
threshold: float | None = 0.0,
|
|
1346
|
+
use_accumulate: bool | None = False,
|
|
1347
|
+
use_additive: bool | None = False,
|
|
1348
|
+
use_square: bool | None = False,
|
|
1349
|
+
sthreshold: float | None = 0.1,
|
|
1350
1350
|
):
|
|
1351
1351
|
"""Bakes a sound wave to samples on selected channels
|
|
1352
1352
|
|
|
@@ -1354,49 +1354,49 @@ def sound_to_samples(
|
|
|
1354
1354
|
:type execution_context: int | str | None
|
|
1355
1355
|
:type undo: bool | None
|
|
1356
1356
|
:param filepath: File Path, Path to file
|
|
1357
|
-
:type filepath: str
|
|
1357
|
+
:type filepath: str
|
|
1358
1358
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
1359
|
-
:type check_existing: bool |
|
|
1359
|
+
:type check_existing: bool | None
|
|
1360
1360
|
:param filter_blender: Filter .blend files
|
|
1361
|
-
:type filter_blender: bool |
|
|
1361
|
+
:type filter_blender: bool | None
|
|
1362
1362
|
:param filter_backup: Filter .blend files
|
|
1363
|
-
:type filter_backup: bool |
|
|
1363
|
+
:type filter_backup: bool | None
|
|
1364
1364
|
:param filter_image: Filter image files
|
|
1365
|
-
:type filter_image: bool |
|
|
1365
|
+
:type filter_image: bool | None
|
|
1366
1366
|
:param filter_movie: Filter movie files
|
|
1367
|
-
:type filter_movie: bool |
|
|
1367
|
+
:type filter_movie: bool | None
|
|
1368
1368
|
:param filter_python: Filter Python files
|
|
1369
|
-
:type filter_python: bool |
|
|
1369
|
+
:type filter_python: bool | None
|
|
1370
1370
|
:param filter_font: Filter font files
|
|
1371
|
-
:type filter_font: bool |
|
|
1371
|
+
:type filter_font: bool | None
|
|
1372
1372
|
:param filter_sound: Filter sound files
|
|
1373
|
-
:type filter_sound: bool |
|
|
1373
|
+
:type filter_sound: bool | None
|
|
1374
1374
|
:param filter_text: Filter text files
|
|
1375
|
-
:type filter_text: bool |
|
|
1375
|
+
:type filter_text: bool | None
|
|
1376
1376
|
:param filter_archive: Filter archive files
|
|
1377
|
-
:type filter_archive: bool |
|
|
1377
|
+
:type filter_archive: bool | None
|
|
1378
1378
|
:param filter_btx: Filter btx files
|
|
1379
|
-
:type filter_btx: bool |
|
|
1379
|
+
:type filter_btx: bool | None
|
|
1380
1380
|
:param filter_collada: Filter COLLADA files
|
|
1381
|
-
:type filter_collada: bool |
|
|
1381
|
+
:type filter_collada: bool | None
|
|
1382
1382
|
:param filter_alembic: Filter Alembic files
|
|
1383
|
-
:type filter_alembic: bool |
|
|
1383
|
+
:type filter_alembic: bool | None
|
|
1384
1384
|
:param filter_usd: Filter USD files
|
|
1385
|
-
:type filter_usd: bool |
|
|
1385
|
+
:type filter_usd: bool | None
|
|
1386
1386
|
:param filter_obj: Filter OBJ files
|
|
1387
|
-
:type filter_obj: bool |
|
|
1387
|
+
:type filter_obj: bool | None
|
|
1388
1388
|
:param filter_volume: Filter OpenVDB volume files
|
|
1389
|
-
:type filter_volume: bool |
|
|
1389
|
+
:type filter_volume: bool | None
|
|
1390
1390
|
:param filter_folder: Filter folders
|
|
1391
|
-
:type filter_folder: bool |
|
|
1391
|
+
:type filter_folder: bool | None
|
|
1392
1392
|
:param filter_blenlib: Filter Blender IDs
|
|
1393
|
-
:type filter_blenlib: bool |
|
|
1393
|
+
:type filter_blenlib: bool | None
|
|
1394
1394
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
1395
|
-
:type filemode:
|
|
1395
|
+
:type filemode: int | None
|
|
1396
1396
|
:param show_multiview: Enable Multi-View
|
|
1397
|
-
:type show_multiview: bool |
|
|
1397
|
+
:type show_multiview: bool | None
|
|
1398
1398
|
:param use_multiview: Use Multi-View
|
|
1399
|
-
:type use_multiview: bool |
|
|
1399
|
+
:type use_multiview: bool | None
|
|
1400
1400
|
:param display_type: Display Type
|
|
1401
1401
|
|
|
1402
1402
|
DEFAULT
|
|
@@ -1414,23 +1414,23 @@ def sound_to_samples(
|
|
|
1414
1414
|
:param sort_method: File sorting mode
|
|
1415
1415
|
:type sort_method: str | None
|
|
1416
1416
|
:param low: Lowest Frequency, Cutoff frequency of a high-pass filter that is applied to the audio data
|
|
1417
|
-
:type low:
|
|
1417
|
+
:type low: float | None
|
|
1418
1418
|
:param high: Highest Frequency, Cutoff frequency of a low-pass filter that is applied to the audio data
|
|
1419
|
-
:type high:
|
|
1419
|
+
:type high: float | None
|
|
1420
1420
|
:param attack: Attack Time, Value for the envelope calculation that tells how fast the envelope can rise (the lower the value the steeper it can rise)
|
|
1421
|
-
:type attack:
|
|
1421
|
+
:type attack: float | None
|
|
1422
1422
|
:param release: Release Time, Value for the envelope calculation that tells how fast the envelope can fall (the lower the value the steeper it can fall)
|
|
1423
|
-
:type release:
|
|
1423
|
+
:type release: float | None
|
|
1424
1424
|
:param threshold: Threshold, Minimum amplitude value needed to influence the envelope
|
|
1425
|
-
:type threshold:
|
|
1425
|
+
:type threshold: float | None
|
|
1426
1426
|
:param use_accumulate: Accumulate, Only the positive differences of the envelope amplitudes are summarized to produce the output
|
|
1427
|
-
:type use_accumulate: bool |
|
|
1427
|
+
:type use_accumulate: bool | None
|
|
1428
1428
|
:param use_additive: Additive, The amplitudes of the envelope are summarized (or, when Accumulate is enabled, both positive and negative differences are accumulated)
|
|
1429
|
-
:type use_additive: bool |
|
|
1429
|
+
:type use_additive: bool | None
|
|
1430
1430
|
:param use_square: Square, The output is a square curve (negative values always result in -1, and positive ones in 1)
|
|
1431
|
-
:type use_square: bool |
|
|
1431
|
+
:type use_square: bool | None
|
|
1432
1432
|
:param sthreshold: Square Threshold, Square only: all values with an absolute amplitude lower than that result in 0
|
|
1433
|
-
:type sthreshold:
|
|
1433
|
+
:type sthreshold: float | None
|
|
1434
1434
|
"""
|
|
1435
1435
|
|
|
1436
1436
|
...
|
|
@@ -1440,7 +1440,7 @@ def time_offset(
|
|
|
1440
1440
|
execution_context: int | str | None = None,
|
|
1441
1441
|
undo: bool | None = None,
|
|
1442
1442
|
*,
|
|
1443
|
-
frame_offset:
|
|
1443
|
+
frame_offset: float | None = 0.0,
|
|
1444
1444
|
):
|
|
1445
1445
|
"""Shifts the value of selected keys in time
|
|
1446
1446
|
|
|
@@ -1448,7 +1448,7 @@ def time_offset(
|
|
|
1448
1448
|
:type execution_context: int | str | None
|
|
1449
1449
|
:type undo: bool | None
|
|
1450
1450
|
:param frame_offset: Frame Offset, How far in frames to offset the animation
|
|
1451
|
-
:type frame_offset:
|
|
1451
|
+
:type frame_offset: float | None
|
|
1452
1452
|
"""
|
|
1453
1453
|
|
|
1454
1454
|
...
|
|
@@ -1458,7 +1458,7 @@ def view_all(
|
|
|
1458
1458
|
execution_context: int | str | None = None,
|
|
1459
1459
|
undo: bool | None = None,
|
|
1460
1460
|
*,
|
|
1461
|
-
include_handles: bool |
|
|
1461
|
+
include_handles: bool | None = True,
|
|
1462
1462
|
):
|
|
1463
1463
|
"""Reset viewable area to show full keyframe range
|
|
1464
1464
|
|
|
@@ -1466,7 +1466,7 @@ def view_all(
|
|
|
1466
1466
|
:type execution_context: int | str | None
|
|
1467
1467
|
:type undo: bool | None
|
|
1468
1468
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
1469
|
-
:type include_handles: bool |
|
|
1469
|
+
:type include_handles: bool | None
|
|
1470
1470
|
"""
|
|
1471
1471
|
|
|
1472
1472
|
...
|
|
@@ -1490,7 +1490,7 @@ def view_selected(
|
|
|
1490
1490
|
execution_context: int | str | None = None,
|
|
1491
1491
|
undo: bool | None = None,
|
|
1492
1492
|
*,
|
|
1493
|
-
include_handles: bool |
|
|
1493
|
+
include_handles: bool | None = True,
|
|
1494
1494
|
):
|
|
1495
1495
|
"""Reset viewable area to show selected keyframe range
|
|
1496
1496
|
|
|
@@ -1498,7 +1498,7 @@ def view_selected(
|
|
|
1498
1498
|
:type execution_context: int | str | None
|
|
1499
1499
|
:type undo: bool | None
|
|
1500
1500
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
1501
|
-
:type include_handles: bool |
|
|
1501
|
+
:type include_handles: bool | None
|
|
1502
1502
|
"""
|
|
1503
1503
|
|
|
1504
1504
|
...
|