fake-bpy-module 20240812__py3-none-any.whl → 20240814__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_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +166 -166
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +64 -64
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +52 -36
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/RECORD +83 -83
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/top_level.txt +0 -0
bpy/ops/graph/__init__.pyi
CHANGED
|
@@ -8,13 +8,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
10
|
def bake_keys(
|
|
11
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
11
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
12
12
|
execution_context: int | str | None = None,
|
|
13
13
|
undo: bool | None = None,
|
|
14
14
|
):
|
|
15
15
|
"""Add keyframes on every frame between the selected keyframes
|
|
16
16
|
|
|
17
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
"""
|
|
@@ -22,7 +22,7 @@ def bake_keys(
|
|
|
22
22
|
...
|
|
23
23
|
|
|
24
24
|
def blend_offset(
|
|
25
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
26
26
|
execution_context: int | str | None = None,
|
|
27
27
|
undo: bool | None = None,
|
|
28
28
|
*,
|
|
@@ -30,7 +30,7 @@ def blend_offset(
|
|
|
30
30
|
):
|
|
31
31
|
"""Shift selected keys to the value of the neighboring keys as a block
|
|
32
32
|
|
|
33
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
33
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
34
|
:type execution_context: int | str | None
|
|
35
35
|
:type undo: bool | None
|
|
36
36
|
:param factor: Offset Factor, Control which key to offset towards and how far
|
|
@@ -40,7 +40,7 @@ def blend_offset(
|
|
|
40
40
|
...
|
|
41
41
|
|
|
42
42
|
def blend_to_default(
|
|
43
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
43
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
44
44
|
execution_context: int | str | None = None,
|
|
45
45
|
undo: bool | None = None,
|
|
46
46
|
*,
|
|
@@ -48,7 +48,7 @@ def blend_to_default(
|
|
|
48
48
|
):
|
|
49
49
|
"""Blend selected keys to their default value from their current position
|
|
50
50
|
|
|
51
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
51
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
52
|
:type execution_context: int | str | None
|
|
53
53
|
:type undo: bool | None
|
|
54
54
|
:param factor: Factor, How much to blend to the default value
|
|
@@ -58,7 +58,7 @@ def blend_to_default(
|
|
|
58
58
|
...
|
|
59
59
|
|
|
60
60
|
def blend_to_ease(
|
|
61
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
61
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
62
62
|
execution_context: int | str | None = None,
|
|
63
63
|
undo: bool | None = None,
|
|
64
64
|
*,
|
|
@@ -66,7 +66,7 @@ def blend_to_ease(
|
|
|
66
66
|
):
|
|
67
67
|
"""Blends keyframes from current state to an ease-in or ease-out curve
|
|
68
68
|
|
|
69
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
69
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
70
70
|
:type execution_context: int | str | None
|
|
71
71
|
:type undo: bool | None
|
|
72
72
|
:param factor: Blend, Favor either original data or ease curve
|
|
@@ -76,7 +76,7 @@ def blend_to_ease(
|
|
|
76
76
|
...
|
|
77
77
|
|
|
78
78
|
def blend_to_neighbor(
|
|
79
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
79
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
80
80
|
execution_context: int | str | None = None,
|
|
81
81
|
undo: bool | None = None,
|
|
82
82
|
*,
|
|
@@ -84,7 +84,7 @@ def blend_to_neighbor(
|
|
|
84
84
|
):
|
|
85
85
|
"""Blend selected keyframes to their left or right neighbor
|
|
86
86
|
|
|
87
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
87
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
88
88
|
:type execution_context: int | str | None
|
|
89
89
|
:type undo: bool | None
|
|
90
90
|
:param factor: Blend, The blend factor with 0 being the current frame
|
|
@@ -94,7 +94,7 @@ def blend_to_neighbor(
|
|
|
94
94
|
...
|
|
95
95
|
|
|
96
96
|
def breakdown(
|
|
97
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
97
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
98
98
|
execution_context: int | str | None = None,
|
|
99
99
|
undo: bool | None = None,
|
|
100
100
|
*,
|
|
@@ -102,7 +102,7 @@ def breakdown(
|
|
|
102
102
|
):
|
|
103
103
|
"""Move selected keyframes to an inbetween position relative to adjacent keys
|
|
104
104
|
|
|
105
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
105
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
106
106
|
:type execution_context: int | str | None
|
|
107
107
|
:type undo: bool | None
|
|
108
108
|
:param factor: Factor, Favor either the left or the right key
|
|
@@ -112,7 +112,7 @@ def breakdown(
|
|
|
112
112
|
...
|
|
113
113
|
|
|
114
114
|
def butterworth_smooth(
|
|
115
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
115
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
116
116
|
execution_context: int | str | None = None,
|
|
117
117
|
undo: bool | None = None,
|
|
118
118
|
*,
|
|
@@ -124,7 +124,7 @@ def butterworth_smooth(
|
|
|
124
124
|
):
|
|
125
125
|
"""Smooth an F-Curve while maintaining the general shape of the curve
|
|
126
126
|
|
|
127
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
127
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
128
128
|
:type execution_context: int | str | None
|
|
129
129
|
:type undo: bool | None
|
|
130
130
|
:param cutoff_frequency: Frequency Cutoff (Hz), Lower values give a smoother curve
|
|
@@ -142,7 +142,7 @@ def butterworth_smooth(
|
|
|
142
142
|
...
|
|
143
143
|
|
|
144
144
|
def clean(
|
|
145
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
145
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
146
146
|
execution_context: int | str | None = None,
|
|
147
147
|
undo: bool | None = None,
|
|
148
148
|
*,
|
|
@@ -151,7 +151,7 @@ def clean(
|
|
|
151
151
|
):
|
|
152
152
|
"""Simplify F-Curves by removing closely spaced keyframes
|
|
153
153
|
|
|
154
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
154
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
155
155
|
:type execution_context: int | str | None
|
|
156
156
|
:type undo: bool | None
|
|
157
157
|
:param threshold: Threshold
|
|
@@ -163,7 +163,7 @@ def clean(
|
|
|
163
163
|
...
|
|
164
164
|
|
|
165
165
|
def click_insert(
|
|
166
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
166
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
167
167
|
execution_context: int | str | None = None,
|
|
168
168
|
undo: bool | None = None,
|
|
169
169
|
*,
|
|
@@ -173,7 +173,7 @@ def click_insert(
|
|
|
173
173
|
):
|
|
174
174
|
"""Insert new keyframe at the cursor position for the active F-Curve
|
|
175
175
|
|
|
176
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
176
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
177
177
|
:type execution_context: int | str | None
|
|
178
178
|
:type undo: bool | None
|
|
179
179
|
:param frame: Frame Number, Frame to insert keyframe on
|
|
@@ -187,7 +187,7 @@ def click_insert(
|
|
|
187
187
|
...
|
|
188
188
|
|
|
189
189
|
def clickselect(
|
|
190
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
190
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
191
191
|
execution_context: int | str | None = None,
|
|
192
192
|
undo: bool | None = None,
|
|
193
193
|
*,
|
|
@@ -201,7 +201,7 @@ def clickselect(
|
|
|
201
201
|
):
|
|
202
202
|
"""Select keyframes by clicking on them
|
|
203
203
|
|
|
204
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
204
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
205
205
|
:type execution_context: int | str | None
|
|
206
206
|
:type undo: bool | None
|
|
207
207
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -223,13 +223,13 @@ def clickselect(
|
|
|
223
223
|
...
|
|
224
224
|
|
|
225
225
|
def copy(
|
|
226
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
226
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
227
227
|
execution_context: int | str | None = None,
|
|
228
228
|
undo: bool | None = None,
|
|
229
229
|
):
|
|
230
230
|
"""Copy selected keyframes to the internal clipboard
|
|
231
231
|
|
|
232
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
232
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
233
233
|
:type execution_context: int | str | None
|
|
234
234
|
:type undo: bool | None
|
|
235
235
|
"""
|
|
@@ -237,7 +237,7 @@ def copy(
|
|
|
237
237
|
...
|
|
238
238
|
|
|
239
239
|
def cursor_set(
|
|
240
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
240
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
241
241
|
execution_context: int | str | None = None,
|
|
242
242
|
undo: bool | None = None,
|
|
243
243
|
*,
|
|
@@ -246,7 +246,7 @@ def cursor_set(
|
|
|
246
246
|
):
|
|
247
247
|
"""Interactively set the current frame and value cursor
|
|
248
248
|
|
|
249
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
249
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
250
250
|
:type execution_context: int | str | None
|
|
251
251
|
:type undo: bool | None
|
|
252
252
|
:param frame: Frame
|
|
@@ -258,7 +258,7 @@ def cursor_set(
|
|
|
258
258
|
...
|
|
259
259
|
|
|
260
260
|
def decimate(
|
|
261
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
261
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
262
262
|
execution_context: int | str | None = None,
|
|
263
263
|
undo: bool | None = None,
|
|
264
264
|
*,
|
|
@@ -268,7 +268,7 @@ def decimate(
|
|
|
268
268
|
):
|
|
269
269
|
"""Decimate F-Curves by removing keyframes that influence the curve shape the least
|
|
270
270
|
|
|
271
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
271
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
272
272
|
:type execution_context: int | str | None
|
|
273
273
|
:type undo: bool | None
|
|
274
274
|
:param mode: Mode, Which mode to use for decimation
|
|
@@ -288,7 +288,7 @@ def decimate(
|
|
|
288
288
|
...
|
|
289
289
|
|
|
290
290
|
def delete(
|
|
291
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
291
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
292
292
|
execution_context: int | str | None = None,
|
|
293
293
|
undo: bool | None = None,
|
|
294
294
|
*,
|
|
@@ -296,7 +296,7 @@ def delete(
|
|
|
296
296
|
):
|
|
297
297
|
"""Remove all selected keyframes
|
|
298
298
|
|
|
299
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
299
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
300
300
|
:type execution_context: int | str | None
|
|
301
301
|
:type undo: bool | None
|
|
302
302
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -306,13 +306,13 @@ def delete(
|
|
|
306
306
|
...
|
|
307
307
|
|
|
308
308
|
def driver_delete_invalid(
|
|
309
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
309
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
310
310
|
execution_context: int | str | None = None,
|
|
311
311
|
undo: bool | None = None,
|
|
312
312
|
):
|
|
313
313
|
"""Delete all visible drivers considered invalid
|
|
314
314
|
|
|
315
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
315
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
316
316
|
:type execution_context: int | str | None
|
|
317
317
|
:type undo: bool | None
|
|
318
318
|
"""
|
|
@@ -320,13 +320,13 @@ def driver_delete_invalid(
|
|
|
320
320
|
...
|
|
321
321
|
|
|
322
322
|
def driver_variables_copy(
|
|
323
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
323
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
324
324
|
execution_context: int | str | None = None,
|
|
325
325
|
undo: bool | None = None,
|
|
326
326
|
):
|
|
327
327
|
"""Copy the driver variables of the active driver
|
|
328
328
|
|
|
329
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
329
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
330
330
|
:type execution_context: int | str | None
|
|
331
331
|
:type undo: bool | None
|
|
332
332
|
"""
|
|
@@ -334,7 +334,7 @@ def driver_variables_copy(
|
|
|
334
334
|
...
|
|
335
335
|
|
|
336
336
|
def driver_variables_paste(
|
|
337
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
337
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
338
338
|
execution_context: int | str | None = None,
|
|
339
339
|
undo: bool | None = None,
|
|
340
340
|
*,
|
|
@@ -342,7 +342,7 @@ def driver_variables_paste(
|
|
|
342
342
|
):
|
|
343
343
|
"""Add copied driver variables to the active driver
|
|
344
344
|
|
|
345
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
345
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
346
346
|
:type execution_context: int | str | None
|
|
347
347
|
:type undo: bool | None
|
|
348
348
|
:param replace: Replace Existing, Replace existing driver variables, instead of just appending to the end of the existing list
|
|
@@ -352,7 +352,7 @@ def driver_variables_paste(
|
|
|
352
352
|
...
|
|
353
353
|
|
|
354
354
|
def duplicate(
|
|
355
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
355
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
356
356
|
execution_context: int | str | None = None,
|
|
357
357
|
undo: bool | None = None,
|
|
358
358
|
*,
|
|
@@ -395,7 +395,7 @@ def duplicate(
|
|
|
395
395
|
):
|
|
396
396
|
"""Make a copy of all selected keyframes
|
|
397
397
|
|
|
398
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
398
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
399
399
|
:type execution_context: int | str | None
|
|
400
400
|
:type undo: bool | None
|
|
401
401
|
:param mode: Mode
|
|
@@ -405,7 +405,7 @@ def duplicate(
|
|
|
405
405
|
...
|
|
406
406
|
|
|
407
407
|
def duplicate_move(
|
|
408
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
408
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
409
409
|
execution_context: int | str | None = None,
|
|
410
410
|
undo: bool | None = None,
|
|
411
411
|
*,
|
|
@@ -414,7 +414,7 @@ def duplicate_move(
|
|
|
414
414
|
):
|
|
415
415
|
"""Make a copy of all selected keyframes and move them
|
|
416
416
|
|
|
417
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
417
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
418
418
|
:type execution_context: int | str | None
|
|
419
419
|
:type undo: bool | None
|
|
420
420
|
:param GRAPH_OT_duplicate: Duplicate Keyframes, Make a copy of all selected keyframes
|
|
@@ -426,7 +426,7 @@ def duplicate_move(
|
|
|
426
426
|
...
|
|
427
427
|
|
|
428
428
|
def ease(
|
|
429
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
429
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
430
430
|
execution_context: int | str | None = None,
|
|
431
431
|
undo: bool | None = None,
|
|
432
432
|
*,
|
|
@@ -435,7 +435,7 @@ def ease(
|
|
|
435
435
|
):
|
|
436
436
|
"""Align keyframes on a ease-in or ease-out curve
|
|
437
437
|
|
|
438
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
438
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
439
439
|
:type execution_context: int | str | None
|
|
440
440
|
:type undo: bool | None
|
|
441
441
|
:param factor: Curve Bend, Defines if the keys should be aligned on an ease-in or ease-out curve
|
|
@@ -447,7 +447,7 @@ def ease(
|
|
|
447
447
|
...
|
|
448
448
|
|
|
449
449
|
def easing_type(
|
|
450
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
450
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
451
451
|
execution_context: int | str | None = None,
|
|
452
452
|
undo: bool | None = None,
|
|
453
453
|
*,
|
|
@@ -455,7 +455,7 @@ def easing_type(
|
|
|
455
455
|
):
|
|
456
456
|
"""Set easing type for the F-Curve segments starting from the selected keyframes
|
|
457
457
|
|
|
458
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
458
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
459
459
|
:type execution_context: int | str | None
|
|
460
460
|
:type undo: bool | None
|
|
461
461
|
:param type: Type
|
|
@@ -465,7 +465,7 @@ def easing_type(
|
|
|
465
465
|
...
|
|
466
466
|
|
|
467
467
|
def equalize_handles(
|
|
468
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
468
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
469
469
|
execution_context: int | str | None = None,
|
|
470
470
|
undo: bool | None = None,
|
|
471
471
|
*,
|
|
@@ -475,7 +475,7 @@ def equalize_handles(
|
|
|
475
475
|
):
|
|
476
476
|
"""Ensure selected keyframes' handles have equal length, optionally making them horizontal. Automatic, Automatic Clamped, or Vector handle types will be converted to Aligned
|
|
477
477
|
|
|
478
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
478
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
479
479
|
:type execution_context: int | str | None
|
|
480
480
|
:type undo: bool | None
|
|
481
481
|
:param side: Side, Side of the keyframes' Bézier handles to affect
|
|
@@ -498,13 +498,13 @@ def equalize_handles(
|
|
|
498
498
|
...
|
|
499
499
|
|
|
500
500
|
def euler_filter(
|
|
501
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
501
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
502
502
|
execution_context: int | str | None = None,
|
|
503
503
|
undo: bool | None = None,
|
|
504
504
|
):
|
|
505
505
|
"""Fix large jumps and flips in the selected Euler Rotation F-Curves arising from rotation values being clipped when baking physics
|
|
506
506
|
|
|
507
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
507
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
508
508
|
:type execution_context: int | str | None
|
|
509
509
|
:type undo: bool | None
|
|
510
510
|
"""
|
|
@@ -512,7 +512,7 @@ def euler_filter(
|
|
|
512
512
|
...
|
|
513
513
|
|
|
514
514
|
def extrapolation_type(
|
|
515
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
515
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
516
516
|
execution_context: int | str | None = None,
|
|
517
517
|
undo: bool | None = None,
|
|
518
518
|
*,
|
|
@@ -521,7 +521,7 @@ def extrapolation_type(
|
|
|
521
521
|
):
|
|
522
522
|
"""Set extrapolation mode for selected F-Curves
|
|
523
523
|
|
|
524
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
524
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
525
525
|
:type execution_context: int | str | None
|
|
526
526
|
:type undo: bool | None
|
|
527
527
|
:param type: Type
|
|
@@ -543,7 +543,7 @@ def extrapolation_type(
|
|
|
543
543
|
...
|
|
544
544
|
|
|
545
545
|
def fmodifier_add(
|
|
546
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
546
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
547
547
|
execution_context: int | str | None = None,
|
|
548
548
|
undo: bool | None = None,
|
|
549
549
|
*,
|
|
@@ -562,7 +562,7 @@ def fmodifier_add(
|
|
|
562
562
|
):
|
|
563
563
|
"""Add F-Modifier to the active/selected F-Curves
|
|
564
564
|
|
|
565
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
565
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
566
566
|
:type execution_context: int | str | None
|
|
567
567
|
:type undo: bool | None
|
|
568
568
|
:param type: Type
|
|
@@ -574,13 +574,13 @@ def fmodifier_add(
|
|
|
574
574
|
...
|
|
575
575
|
|
|
576
576
|
def fmodifier_copy(
|
|
577
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
577
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
578
578
|
execution_context: int | str | None = None,
|
|
579
579
|
undo: bool | None = None,
|
|
580
580
|
):
|
|
581
581
|
"""Copy the F-Modifier(s) of the active F-Curve
|
|
582
582
|
|
|
583
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
583
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
584
584
|
:type execution_context: int | str | None
|
|
585
585
|
:type undo: bool | None
|
|
586
586
|
"""
|
|
@@ -588,7 +588,7 @@ def fmodifier_copy(
|
|
|
588
588
|
...
|
|
589
589
|
|
|
590
590
|
def fmodifier_paste(
|
|
591
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
591
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
592
592
|
execution_context: int | str | None = None,
|
|
593
593
|
undo: bool | None = None,
|
|
594
594
|
*,
|
|
@@ -597,7 +597,7 @@ def fmodifier_paste(
|
|
|
597
597
|
):
|
|
598
598
|
"""Add copied F-Modifiers to the selected F-Curves
|
|
599
599
|
|
|
600
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
600
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
601
601
|
:type execution_context: int | str | None
|
|
602
602
|
:type undo: bool | None
|
|
603
603
|
:param only_active: Only Active, Only paste F-Modifiers on active F-Curve
|
|
@@ -609,13 +609,13 @@ def fmodifier_paste(
|
|
|
609
609
|
...
|
|
610
610
|
|
|
611
611
|
def frame_jump(
|
|
612
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
612
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
613
613
|
execution_context: int | str | None = None,
|
|
614
614
|
undo: bool | None = None,
|
|
615
615
|
):
|
|
616
616
|
"""Place the cursor on the midpoint of selected keyframes
|
|
617
617
|
|
|
618
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
618
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
619
619
|
:type execution_context: int | str | None
|
|
620
620
|
:type undo: bool | None
|
|
621
621
|
"""
|
|
@@ -623,7 +623,7 @@ def frame_jump(
|
|
|
623
623
|
...
|
|
624
624
|
|
|
625
625
|
def gaussian_smooth(
|
|
626
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
626
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
627
627
|
execution_context: int | str | None = None,
|
|
628
628
|
undo: bool | None = None,
|
|
629
629
|
*,
|
|
@@ -633,7 +633,7 @@ def gaussian_smooth(
|
|
|
633
633
|
):
|
|
634
634
|
"""Smooth the curve using a Gaussian filter
|
|
635
635
|
|
|
636
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
636
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
637
637
|
:type execution_context: int | str | None
|
|
638
638
|
:type undo: bool | None
|
|
639
639
|
:param factor: Factor, How much to blend to the default value
|
|
@@ -647,13 +647,13 @@ def gaussian_smooth(
|
|
|
647
647
|
...
|
|
648
648
|
|
|
649
649
|
def ghost_curves_clear(
|
|
650
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
650
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
651
651
|
execution_context: int | str | None = None,
|
|
652
652
|
undo: bool | None = None,
|
|
653
653
|
):
|
|
654
654
|
"""Clear F-Curve snapshots (Ghosts) for active Graph Editor
|
|
655
655
|
|
|
656
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
656
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
657
657
|
:type execution_context: int | str | None
|
|
658
658
|
:type undo: bool | None
|
|
659
659
|
"""
|
|
@@ -661,13 +661,13 @@ def ghost_curves_clear(
|
|
|
661
661
|
...
|
|
662
662
|
|
|
663
663
|
def ghost_curves_create(
|
|
664
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
664
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
665
665
|
execution_context: int | str | None = None,
|
|
666
666
|
undo: bool | None = None,
|
|
667
667
|
):
|
|
668
668
|
"""Create snapshot (Ghosts) of selected F-Curves as background aid for active Graph Editor
|
|
669
669
|
|
|
670
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
670
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
671
671
|
:type execution_context: int | str | None
|
|
672
672
|
:type undo: bool | None
|
|
673
673
|
"""
|
|
@@ -675,7 +675,7 @@ def ghost_curves_create(
|
|
|
675
675
|
...
|
|
676
676
|
|
|
677
677
|
def handle_type(
|
|
678
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
678
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
679
679
|
execution_context: int | str | None = None,
|
|
680
680
|
undo: bool | None = None,
|
|
681
681
|
*,
|
|
@@ -684,7 +684,7 @@ def handle_type(
|
|
|
684
684
|
):
|
|
685
685
|
"""Set type of handle for selected keyframes
|
|
686
686
|
|
|
687
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
687
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
688
688
|
:type execution_context: int | str | None
|
|
689
689
|
:type undo: bool | None
|
|
690
690
|
:param type: Type
|
|
@@ -694,7 +694,7 @@ def handle_type(
|
|
|
694
694
|
...
|
|
695
695
|
|
|
696
696
|
def hide(
|
|
697
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
697
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
698
698
|
execution_context: int | str | None = None,
|
|
699
699
|
undo: bool | None = None,
|
|
700
700
|
*,
|
|
@@ -702,7 +702,7 @@ def hide(
|
|
|
702
702
|
):
|
|
703
703
|
"""Hide selected curves from Graph Editor view
|
|
704
704
|
|
|
705
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
705
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
706
706
|
:type execution_context: int | str | None
|
|
707
707
|
:type undo: bool | None
|
|
708
708
|
:param unselected: Unselected, Hide unselected rather than selected curves
|
|
@@ -712,7 +712,7 @@ def hide(
|
|
|
712
712
|
...
|
|
713
713
|
|
|
714
714
|
def interpolation_type(
|
|
715
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
715
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
716
716
|
execution_context: int | str | None = None,
|
|
717
717
|
undo: bool | None = None,
|
|
718
718
|
*,
|
|
@@ -735,7 +735,7 @@ def interpolation_type(
|
|
|
735
735
|
):
|
|
736
736
|
"""Set interpolation mode for the F-Curve segments starting from the selected keyframes
|
|
737
737
|
|
|
738
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
738
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
739
739
|
:type execution_context: int | str | None
|
|
740
740
|
:type undo: bool | None
|
|
741
741
|
:param type: Type
|
|
@@ -745,7 +745,7 @@ def interpolation_type(
|
|
|
745
745
|
...
|
|
746
746
|
|
|
747
747
|
def keyframe_insert(
|
|
748
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
748
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
749
749
|
execution_context: int | str | None = None,
|
|
750
750
|
undo: bool | None = None,
|
|
751
751
|
*,
|
|
@@ -754,7 +754,7 @@ def keyframe_insert(
|
|
|
754
754
|
):
|
|
755
755
|
"""Insert keyframes for the specified channels
|
|
756
756
|
|
|
757
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
757
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
758
758
|
:type execution_context: int | str | None
|
|
759
759
|
:type undo: bool | None
|
|
760
760
|
:param type: Type
|
|
@@ -779,7 +779,7 @@ def keyframe_insert(
|
|
|
779
779
|
...
|
|
780
780
|
|
|
781
781
|
def keyframe_jump(
|
|
782
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
782
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
783
783
|
execution_context: int | str | None = None,
|
|
784
784
|
undo: bool | None = None,
|
|
785
785
|
*,
|
|
@@ -787,7 +787,7 @@ def keyframe_jump(
|
|
|
787
787
|
):
|
|
788
788
|
"""Jump to previous/next keyframe
|
|
789
789
|
|
|
790
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
790
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
791
791
|
:type execution_context: int | str | None
|
|
792
792
|
:type undo: bool | None
|
|
793
793
|
:param next: Next Keyframe
|
|
@@ -797,13 +797,13 @@ def keyframe_jump(
|
|
|
797
797
|
...
|
|
798
798
|
|
|
799
799
|
def keys_to_samples(
|
|
800
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
800
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
801
801
|
execution_context: int | str | None = None,
|
|
802
802
|
undo: bool | None = None,
|
|
803
803
|
):
|
|
804
804
|
"""Convert selected channels to an uneditable set of samples to save storage space
|
|
805
805
|
|
|
806
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
806
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
807
807
|
:type execution_context: int | str | None
|
|
808
808
|
:type undo: bool | None
|
|
809
809
|
"""
|
|
@@ -811,7 +811,7 @@ def keys_to_samples(
|
|
|
811
811
|
...
|
|
812
812
|
|
|
813
813
|
def match_slope(
|
|
814
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
814
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
815
815
|
execution_context: int | str | None = None,
|
|
816
816
|
undo: bool | None = None,
|
|
817
817
|
*,
|
|
@@ -819,7 +819,7 @@ def match_slope(
|
|
|
819
819
|
):
|
|
820
820
|
"""Blend selected keys to the slope of neighboring ones
|
|
821
821
|
|
|
822
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
822
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
823
823
|
:type execution_context: int | str | None
|
|
824
824
|
:type undo: bool | None
|
|
825
825
|
:param factor: Factor, Defines which keys to use as slope and how much to blend towards them
|
|
@@ -829,7 +829,7 @@ def match_slope(
|
|
|
829
829
|
...
|
|
830
830
|
|
|
831
831
|
def mirror(
|
|
832
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
832
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
833
833
|
execution_context: int | str | None = None,
|
|
834
834
|
undo: bool | None = None,
|
|
835
835
|
*,
|
|
@@ -837,7 +837,7 @@ def mirror(
|
|
|
837
837
|
):
|
|
838
838
|
"""Flip selected keyframes over the selected mirror line
|
|
839
839
|
|
|
840
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
840
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
841
841
|
:type execution_context: int | str | None
|
|
842
842
|
:type undo: bool | None
|
|
843
843
|
:param type: Type
|
|
@@ -862,7 +862,7 @@ def mirror(
|
|
|
862
862
|
...
|
|
863
863
|
|
|
864
864
|
def paste(
|
|
865
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
865
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
866
866
|
execution_context: int | str | None = None,
|
|
867
867
|
undo: bool | None = None,
|
|
868
868
|
*,
|
|
@@ -877,7 +877,7 @@ def paste(
|
|
|
877
877
|
):
|
|
878
878
|
"""Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
|
|
879
879
|
|
|
880
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
880
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
881
881
|
:type execution_context: int | str | None
|
|
882
882
|
:type undo: bool | None
|
|
883
883
|
:param offset: Frame Offset, Paste time offset of keys
|
|
@@ -893,13 +893,13 @@ def paste(
|
|
|
893
893
|
...
|
|
894
894
|
|
|
895
895
|
def previewrange_set(
|
|
896
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
896
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
897
897
|
execution_context: int | str | None = None,
|
|
898
898
|
undo: bool | None = None,
|
|
899
899
|
):
|
|
900
900
|
"""Set Preview Range based on range of selected keyframes
|
|
901
901
|
|
|
902
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
902
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
903
903
|
:type execution_context: int | str | None
|
|
904
904
|
:type undo: bool | None
|
|
905
905
|
"""
|
|
@@ -907,7 +907,7 @@ def previewrange_set(
|
|
|
907
907
|
...
|
|
908
908
|
|
|
909
909
|
def push_pull(
|
|
910
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
910
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
911
911
|
execution_context: int | str | None = None,
|
|
912
912
|
undo: bool | None = None,
|
|
913
913
|
*,
|
|
@@ -915,7 +915,7 @@ def push_pull(
|
|
|
915
915
|
):
|
|
916
916
|
"""Exaggerate or minimize the value of the selected keys
|
|
917
917
|
|
|
918
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
918
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
919
919
|
:type execution_context: int | str | None
|
|
920
920
|
:type undo: bool | None
|
|
921
921
|
:param factor: Factor, Control how far to push or pull the keys
|
|
@@ -925,7 +925,7 @@ def push_pull(
|
|
|
925
925
|
...
|
|
926
926
|
|
|
927
927
|
def reveal(
|
|
928
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
928
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
929
929
|
execution_context: int | str | None = None,
|
|
930
930
|
undo: bool | None = None,
|
|
931
931
|
*,
|
|
@@ -933,7 +933,7 @@ def reveal(
|
|
|
933
933
|
):
|
|
934
934
|
"""Make previously hidden curves visible again in Graph Editor view
|
|
935
935
|
|
|
936
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
936
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
937
937
|
:type execution_context: int | str | None
|
|
938
938
|
:type undo: bool | None
|
|
939
939
|
:param select: Select
|
|
@@ -943,13 +943,13 @@ def reveal(
|
|
|
943
943
|
...
|
|
944
944
|
|
|
945
945
|
def samples_to_keys(
|
|
946
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
946
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
947
947
|
execution_context: int | str | None = None,
|
|
948
948
|
undo: bool | None = None,
|
|
949
949
|
):
|
|
950
950
|
"""Convert selected channels from samples to keyframes
|
|
951
951
|
|
|
952
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
952
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
953
953
|
:type execution_context: int | str | None
|
|
954
954
|
:type undo: bool | None
|
|
955
955
|
"""
|
|
@@ -957,7 +957,7 @@ def samples_to_keys(
|
|
|
957
957
|
...
|
|
958
958
|
|
|
959
959
|
def scale_average(
|
|
960
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
960
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
961
961
|
execution_context: int | str | None = None,
|
|
962
962
|
undo: bool | None = None,
|
|
963
963
|
*,
|
|
@@ -965,7 +965,7 @@ def scale_average(
|
|
|
965
965
|
):
|
|
966
966
|
"""Scale selected key values by their combined average
|
|
967
967
|
|
|
968
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
968
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
969
969
|
:type execution_context: int | str | None
|
|
970
970
|
:type undo: bool | None
|
|
971
971
|
:param factor: Scale Factor, The scale factor applied to the curve segments
|
|
@@ -975,7 +975,7 @@ def scale_average(
|
|
|
975
975
|
...
|
|
976
976
|
|
|
977
977
|
def scale_from_neighbor(
|
|
978
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
978
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
979
979
|
execution_context: int | str | None = None,
|
|
980
980
|
undo: bool | None = None,
|
|
981
981
|
*,
|
|
@@ -984,7 +984,7 @@ def scale_from_neighbor(
|
|
|
984
984
|
):
|
|
985
985
|
"""Increase or decrease the value of selected keys in relationship to the neighboring one
|
|
986
986
|
|
|
987
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
987
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
988
988
|
:type execution_context: int | str | None
|
|
989
989
|
:type undo: bool | None
|
|
990
990
|
:param factor: Factor, The factor to scale keys with
|
|
@@ -996,7 +996,7 @@ def scale_from_neighbor(
|
|
|
996
996
|
...
|
|
997
997
|
|
|
998
998
|
def select_all(
|
|
999
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
999
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1000
1000
|
execution_context: int | str | None = None,
|
|
1001
1001
|
undo: bool | None = None,
|
|
1002
1002
|
*,
|
|
@@ -1004,7 +1004,7 @@ def select_all(
|
|
|
1004
1004
|
):
|
|
1005
1005
|
"""Toggle selection of all keyframes
|
|
1006
1006
|
|
|
1007
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1007
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1008
1008
|
:type execution_context: int | str | None
|
|
1009
1009
|
:type undo: bool | None
|
|
1010
1010
|
:param action: Action, Selection action to execute
|
|
@@ -1026,7 +1026,7 @@ def select_all(
|
|
|
1026
1026
|
...
|
|
1027
1027
|
|
|
1028
1028
|
def select_box(
|
|
1029
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1029
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1030
1030
|
execution_context: int | str | None = None,
|
|
1031
1031
|
undo: bool | None = None,
|
|
1032
1032
|
*,
|
|
@@ -1043,7 +1043,7 @@ def select_box(
|
|
|
1043
1043
|
):
|
|
1044
1044
|
"""Select all keyframes within the specified region
|
|
1045
1045
|
|
|
1046
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1046
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1047
1047
|
:type execution_context: int | str | None
|
|
1048
1048
|
:type undo: bool | None
|
|
1049
1049
|
:param axis_range: Axis Range
|
|
@@ -1080,7 +1080,7 @@ def select_box(
|
|
|
1080
1080
|
...
|
|
1081
1081
|
|
|
1082
1082
|
def select_circle(
|
|
1083
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1083
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1084
1084
|
execution_context: int | str | None = None,
|
|
1085
1085
|
undo: bool | None = None,
|
|
1086
1086
|
*,
|
|
@@ -1093,7 +1093,7 @@ def select_circle(
|
|
|
1093
1093
|
):
|
|
1094
1094
|
"""Select keyframe points using circle selection
|
|
1095
1095
|
|
|
1096
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1096
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1097
1097
|
:type execution_context: int | str | None
|
|
1098
1098
|
:type undo: bool | None
|
|
1099
1099
|
:param x: X
|
|
@@ -1122,7 +1122,7 @@ def select_circle(
|
|
|
1122
1122
|
...
|
|
1123
1123
|
|
|
1124
1124
|
def select_column(
|
|
1125
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1125
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1126
1126
|
execution_context: int | str | None = None,
|
|
1127
1127
|
undo: bool | None = None,
|
|
1128
1128
|
*,
|
|
@@ -1131,7 +1131,7 @@ def select_column(
|
|
|
1131
1131
|
):
|
|
1132
1132
|
"""Select all keyframes on the specified frame(s)
|
|
1133
1133
|
|
|
1134
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1134
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1135
1135
|
:type execution_context: int | str | None
|
|
1136
1136
|
:type undo: bool | None
|
|
1137
1137
|
:param mode: Mode
|
|
@@ -1141,7 +1141,7 @@ def select_column(
|
|
|
1141
1141
|
...
|
|
1142
1142
|
|
|
1143
1143
|
def select_key_handles(
|
|
1144
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1144
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1145
1145
|
execution_context: int | str | None = None,
|
|
1146
1146
|
undo: bool | None = None,
|
|
1147
1147
|
*,
|
|
@@ -1151,7 +1151,7 @@ def select_key_handles(
|
|
|
1151
1151
|
):
|
|
1152
1152
|
"""For selected keyframes, select/deselect any combination of the key itself and its handles
|
|
1153
1153
|
|
|
1154
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1154
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1155
1155
|
:type execution_context: int | str | None
|
|
1156
1156
|
:type undo: bool | None
|
|
1157
1157
|
:param left_handle_action: Left Handle, Effect on the left handle
|
|
@@ -1192,7 +1192,7 @@ def select_key_handles(
|
|
|
1192
1192
|
...
|
|
1193
1193
|
|
|
1194
1194
|
def select_lasso(
|
|
1195
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1195
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1196
1196
|
execution_context: int | str | None = None,
|
|
1197
1197
|
undo: bool | None = None,
|
|
1198
1198
|
*,
|
|
@@ -1205,7 +1205,7 @@ def select_lasso(
|
|
|
1205
1205
|
):
|
|
1206
1206
|
"""Select keyframe points using lasso selection
|
|
1207
1207
|
|
|
1208
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1208
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1209
1209
|
:type execution_context: int | str | None
|
|
1210
1210
|
:type undo: bool | None
|
|
1211
1211
|
:param path: Path
|
|
@@ -1234,7 +1234,7 @@ def select_lasso(
|
|
|
1234
1234
|
...
|
|
1235
1235
|
|
|
1236
1236
|
def select_leftright(
|
|
1237
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1237
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1238
1238
|
execution_context: int | str | None = None,
|
|
1239
1239
|
undo: bool | None = None,
|
|
1240
1240
|
*,
|
|
@@ -1243,7 +1243,7 @@ def select_leftright(
|
|
|
1243
1243
|
):
|
|
1244
1244
|
"""Select keyframes to the left or the right of the current frame
|
|
1245
1245
|
|
|
1246
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1246
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1247
1247
|
:type execution_context: int | str | None
|
|
1248
1248
|
:type undo: bool | None
|
|
1249
1249
|
:param mode: Mode
|
|
@@ -1255,13 +1255,13 @@ def select_leftright(
|
|
|
1255
1255
|
...
|
|
1256
1256
|
|
|
1257
1257
|
def select_less(
|
|
1258
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1258
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1259
1259
|
execution_context: int | str | None = None,
|
|
1260
1260
|
undo: bool | None = None,
|
|
1261
1261
|
):
|
|
1262
1262
|
"""Deselect keyframes on ends of selection islands
|
|
1263
1263
|
|
|
1264
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1264
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1265
1265
|
:type execution_context: int | str | None
|
|
1266
1266
|
:type undo: bool | None
|
|
1267
1267
|
"""
|
|
@@ -1269,13 +1269,13 @@ def select_less(
|
|
|
1269
1269
|
...
|
|
1270
1270
|
|
|
1271
1271
|
def select_linked(
|
|
1272
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1272
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1273
1273
|
execution_context: int | str | None = None,
|
|
1274
1274
|
undo: bool | None = None,
|
|
1275
1275
|
):
|
|
1276
1276
|
"""Select keyframes occurring in the same F-Curves as selected ones
|
|
1277
1277
|
|
|
1278
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1278
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1279
1279
|
:type execution_context: int | str | None
|
|
1280
1280
|
:type undo: bool | None
|
|
1281
1281
|
"""
|
|
@@ -1283,13 +1283,13 @@ def select_linked(
|
|
|
1283
1283
|
...
|
|
1284
1284
|
|
|
1285
1285
|
def select_more(
|
|
1286
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1286
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1287
1287
|
execution_context: int | str | None = None,
|
|
1288
1288
|
undo: bool | None = None,
|
|
1289
1289
|
):
|
|
1290
1290
|
"""Select keyframes beside already selected ones
|
|
1291
1291
|
|
|
1292
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1292
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1293
1293
|
:type execution_context: int | str | None
|
|
1294
1294
|
:type undo: bool | None
|
|
1295
1295
|
"""
|
|
@@ -1297,7 +1297,7 @@ def select_more(
|
|
|
1297
1297
|
...
|
|
1298
1298
|
|
|
1299
1299
|
def shear(
|
|
1300
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1300
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1301
1301
|
execution_context: int | str | None = None,
|
|
1302
1302
|
undo: bool | None = None,
|
|
1303
1303
|
*,
|
|
@@ -1306,7 +1306,7 @@ def shear(
|
|
|
1306
1306
|
):
|
|
1307
1307
|
"""Affect the value of the keys linearly, keeping the same relationship between them using either the left or the right key as reference
|
|
1308
1308
|
|
|
1309
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1309
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1310
1310
|
:type execution_context: int | str | None
|
|
1311
1311
|
:type undo: bool | None
|
|
1312
1312
|
:param factor: Shear Factor, The amount of shear to apply
|
|
@@ -1324,13 +1324,13 @@ def shear(
|
|
|
1324
1324
|
...
|
|
1325
1325
|
|
|
1326
1326
|
def smooth(
|
|
1327
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1327
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1328
1328
|
execution_context: int | str | None = None,
|
|
1329
1329
|
undo: bool | None = None,
|
|
1330
1330
|
):
|
|
1331
1331
|
"""Apply weighted moving means to make selected F-Curves less bumpy
|
|
1332
1332
|
|
|
1333
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1333
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1334
1334
|
:type execution_context: int | str | None
|
|
1335
1335
|
:type undo: bool | None
|
|
1336
1336
|
"""
|
|
@@ -1338,7 +1338,7 @@ def smooth(
|
|
|
1338
1338
|
...
|
|
1339
1339
|
|
|
1340
1340
|
def snap(
|
|
1341
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1341
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1342
1342
|
execution_context: int | str | None = None,
|
|
1343
1343
|
undo: bool | None = None,
|
|
1344
1344
|
*,
|
|
@@ -1354,7 +1354,7 @@ def snap(
|
|
|
1354
1354
|
):
|
|
1355
1355
|
"""Snap selected keyframes to the chosen times/values
|
|
1356
1356
|
|
|
1357
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1357
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1358
1358
|
:type execution_context: int | str | None
|
|
1359
1359
|
:type undo: bool | None
|
|
1360
1360
|
:param type: Type
|
|
@@ -1382,13 +1382,13 @@ def snap(
|
|
|
1382
1382
|
...
|
|
1383
1383
|
|
|
1384
1384
|
def snap_cursor_value(
|
|
1385
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1385
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1386
1386
|
execution_context: int | str | None = None,
|
|
1387
1387
|
undo: bool | None = None,
|
|
1388
1388
|
):
|
|
1389
1389
|
"""Place the cursor value on the average value of selected keyframes
|
|
1390
1390
|
|
|
1391
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1391
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1392
1392
|
:type execution_context: int | str | None
|
|
1393
1393
|
:type undo: bool | None
|
|
1394
1394
|
"""
|
|
@@ -1396,7 +1396,7 @@ def snap_cursor_value(
|
|
|
1396
1396
|
...
|
|
1397
1397
|
|
|
1398
1398
|
def sound_to_samples(
|
|
1399
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1399
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1400
1400
|
execution_context: int | str | None = None,
|
|
1401
1401
|
undo: bool | None = None,
|
|
1402
1402
|
*,
|
|
@@ -1439,7 +1439,7 @@ def sound_to_samples(
|
|
|
1439
1439
|
):
|
|
1440
1440
|
"""Bakes a sound wave to samples on selected channels
|
|
1441
1441
|
|
|
1442
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1442
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1443
1443
|
:type execution_context: int | str | None
|
|
1444
1444
|
:type undo: bool | None
|
|
1445
1445
|
:param filepath: File Path, Path to file
|
|
@@ -1525,7 +1525,7 @@ def sound_to_samples(
|
|
|
1525
1525
|
...
|
|
1526
1526
|
|
|
1527
1527
|
def time_offset(
|
|
1528
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1528
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1529
1529
|
execution_context: int | str | None = None,
|
|
1530
1530
|
undo: bool | None = None,
|
|
1531
1531
|
*,
|
|
@@ -1533,7 +1533,7 @@ def time_offset(
|
|
|
1533
1533
|
):
|
|
1534
1534
|
"""Shifts the value of selected keys in time
|
|
1535
1535
|
|
|
1536
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1536
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1537
1537
|
:type execution_context: int | str | None
|
|
1538
1538
|
:type undo: bool | None
|
|
1539
1539
|
:param frame_offset: Frame Offset, How far in frames to offset the animation
|
|
@@ -1543,7 +1543,7 @@ def time_offset(
|
|
|
1543
1543
|
...
|
|
1544
1544
|
|
|
1545
1545
|
def view_all(
|
|
1546
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1546
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1547
1547
|
execution_context: int | str | None = None,
|
|
1548
1548
|
undo: bool | None = None,
|
|
1549
1549
|
*,
|
|
@@ -1551,7 +1551,7 @@ def view_all(
|
|
|
1551
1551
|
):
|
|
1552
1552
|
"""Reset viewable area to show full keyframe range
|
|
1553
1553
|
|
|
1554
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1554
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1555
1555
|
:type execution_context: int | str | None
|
|
1556
1556
|
:type undo: bool | None
|
|
1557
1557
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
@@ -1561,13 +1561,13 @@ def view_all(
|
|
|
1561
1561
|
...
|
|
1562
1562
|
|
|
1563
1563
|
def view_frame(
|
|
1564
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1564
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1565
1565
|
execution_context: int | str | None = None,
|
|
1566
1566
|
undo: bool | None = None,
|
|
1567
1567
|
):
|
|
1568
1568
|
"""Move the view to the current frame
|
|
1569
1569
|
|
|
1570
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1570
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1571
1571
|
:type execution_context: int | str | None
|
|
1572
1572
|
:type undo: bool | None
|
|
1573
1573
|
"""
|
|
@@ -1575,7 +1575,7 @@ def view_frame(
|
|
|
1575
1575
|
...
|
|
1576
1576
|
|
|
1577
1577
|
def view_selected(
|
|
1578
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1578
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1579
1579
|
execution_context: int | str | None = None,
|
|
1580
1580
|
undo: bool | None = None,
|
|
1581
1581
|
*,
|
|
@@ -1583,7 +1583,7 @@ def view_selected(
|
|
|
1583
1583
|
):
|
|
1584
1584
|
"""Reset viewable area to show selected keyframe range
|
|
1585
1585
|
|
|
1586
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1586
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1587
1587
|
:type execution_context: int | str | None
|
|
1588
1588
|
:type undo: bool | None
|
|
1589
1589
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|