fake-bpy-module 20240928__py3-none-any.whl → 20240930__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bmesh/types/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- 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 +202 -202
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +333 -298
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/RECORD +85 -85
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/top_level.txt +0 -0
bpy/ops/graph/__init__.pyi
CHANGED
|
@@ -6,19 +6,19 @@ import bpy.types
|
|
|
6
6
|
import bpy.typing
|
|
7
7
|
|
|
8
8
|
def bake_keys(
|
|
9
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
9
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
):
|
|
13
13
|
"""Add keyframes on every frame between the selected keyframes
|
|
14
14
|
|
|
15
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
15
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
16
16
|
:type execution_context: int | str | None
|
|
17
17
|
:type undo: bool | None
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
20
|
def blend_offset(
|
|
21
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
21
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
22
22
|
execution_context: int | str | None = None,
|
|
23
23
|
undo: bool | None = None,
|
|
24
24
|
*,
|
|
@@ -26,7 +26,7 @@ def blend_offset(
|
|
|
26
26
|
):
|
|
27
27
|
"""Shift selected keys to the value of the neighboring keys as a block
|
|
28
28
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
29
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
30
|
:type execution_context: int | str | None
|
|
31
31
|
:type undo: bool | None
|
|
32
32
|
:param factor: Offset Factor, Control which key to offset towards and how far
|
|
@@ -34,7 +34,7 @@ def blend_offset(
|
|
|
34
34
|
"""
|
|
35
35
|
|
|
36
36
|
def blend_to_default(
|
|
37
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
37
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
38
38
|
execution_context: int | str | None = None,
|
|
39
39
|
undo: bool | None = None,
|
|
40
40
|
*,
|
|
@@ -42,7 +42,7 @@ def blend_to_default(
|
|
|
42
42
|
):
|
|
43
43
|
"""Blend selected keys to their default value from their current position
|
|
44
44
|
|
|
45
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
46
46
|
:type execution_context: int | str | None
|
|
47
47
|
:type undo: bool | None
|
|
48
48
|
:param factor: Factor, How much to blend to the default value
|
|
@@ -50,7 +50,7 @@ def blend_to_default(
|
|
|
50
50
|
"""
|
|
51
51
|
|
|
52
52
|
def blend_to_ease(
|
|
53
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
53
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
54
54
|
execution_context: int | str | None = None,
|
|
55
55
|
undo: bool | None = None,
|
|
56
56
|
*,
|
|
@@ -58,7 +58,7 @@ def blend_to_ease(
|
|
|
58
58
|
):
|
|
59
59
|
"""Blends keyframes from current state to an ease-in or ease-out curve
|
|
60
60
|
|
|
61
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
61
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
62
62
|
:type execution_context: int | str | None
|
|
63
63
|
:type undo: bool | None
|
|
64
64
|
:param factor: Blend, Favor either original data or ease curve
|
|
@@ -66,7 +66,7 @@ def blend_to_ease(
|
|
|
66
66
|
"""
|
|
67
67
|
|
|
68
68
|
def blend_to_neighbor(
|
|
69
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
69
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
70
70
|
execution_context: int | str | None = None,
|
|
71
71
|
undo: bool | None = None,
|
|
72
72
|
*,
|
|
@@ -74,7 +74,7 @@ def blend_to_neighbor(
|
|
|
74
74
|
):
|
|
75
75
|
"""Blend selected keyframes to their left or right neighbor
|
|
76
76
|
|
|
77
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
77
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
78
78
|
:type execution_context: int | str | None
|
|
79
79
|
:type undo: bool | None
|
|
80
80
|
:param factor: Blend, The blend factor with 0 being the current frame
|
|
@@ -82,7 +82,7 @@ def blend_to_neighbor(
|
|
|
82
82
|
"""
|
|
83
83
|
|
|
84
84
|
def breakdown(
|
|
85
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
85
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
86
86
|
execution_context: int | str | None = None,
|
|
87
87
|
undo: bool | None = None,
|
|
88
88
|
*,
|
|
@@ -90,7 +90,7 @@ def breakdown(
|
|
|
90
90
|
):
|
|
91
91
|
"""Move selected keyframes to an inbetween position relative to adjacent keys
|
|
92
92
|
|
|
93
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
93
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
94
94
|
:type execution_context: int | str | None
|
|
95
95
|
:type undo: bool | None
|
|
96
96
|
:param factor: Factor, Favor either the left or the right key
|
|
@@ -98,7 +98,7 @@ def breakdown(
|
|
|
98
98
|
"""
|
|
99
99
|
|
|
100
100
|
def butterworth_smooth(
|
|
101
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
101
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
102
102
|
execution_context: int | str | None = None,
|
|
103
103
|
undo: bool | None = None,
|
|
104
104
|
*,
|
|
@@ -110,7 +110,7 @@ def butterworth_smooth(
|
|
|
110
110
|
):
|
|
111
111
|
"""Smooth an F-Curve while maintaining the general shape of the curve
|
|
112
112
|
|
|
113
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
113
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
114
114
|
:type execution_context: int | str | None
|
|
115
115
|
:type undo: bool | None
|
|
116
116
|
:param cutoff_frequency: Frequency Cutoff (Hz), Lower values give a smoother curve
|
|
@@ -126,7 +126,7 @@ def butterworth_smooth(
|
|
|
126
126
|
"""
|
|
127
127
|
|
|
128
128
|
def clean(
|
|
129
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
129
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
130
130
|
execution_context: int | str | None = None,
|
|
131
131
|
undo: bool | None = None,
|
|
132
132
|
*,
|
|
@@ -135,7 +135,7 @@ def clean(
|
|
|
135
135
|
):
|
|
136
136
|
"""Simplify F-Curves by removing closely spaced keyframes
|
|
137
137
|
|
|
138
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
138
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
139
139
|
:type execution_context: int | str | None
|
|
140
140
|
:type undo: bool | None
|
|
141
141
|
:param threshold: Threshold
|
|
@@ -145,7 +145,7 @@ def clean(
|
|
|
145
145
|
"""
|
|
146
146
|
|
|
147
147
|
def click_insert(
|
|
148
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
148
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
149
149
|
execution_context: int | str | None = None,
|
|
150
150
|
undo: bool | None = None,
|
|
151
151
|
*,
|
|
@@ -155,7 +155,7 @@ def click_insert(
|
|
|
155
155
|
):
|
|
156
156
|
"""Insert new keyframe at the cursor position for the active F-Curve
|
|
157
157
|
|
|
158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
158
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
159
159
|
:type execution_context: int | str | None
|
|
160
160
|
:type undo: bool | None
|
|
161
161
|
:param frame: Frame Number, Frame to insert keyframe on
|
|
@@ -167,7 +167,7 @@ def click_insert(
|
|
|
167
167
|
"""
|
|
168
168
|
|
|
169
169
|
def clickselect(
|
|
170
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
170
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
171
171
|
execution_context: int | str | None = None,
|
|
172
172
|
undo: bool | None = None,
|
|
173
173
|
*,
|
|
@@ -181,7 +181,7 @@ def clickselect(
|
|
|
181
181
|
):
|
|
182
182
|
"""Select keyframes by clicking on them
|
|
183
183
|
|
|
184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
185
185
|
:type execution_context: int | str | None
|
|
186
186
|
:type undo: bool | None
|
|
187
187
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -201,19 +201,19 @@ def clickselect(
|
|
|
201
201
|
"""
|
|
202
202
|
|
|
203
203
|
def copy(
|
|
204
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
204
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
205
205
|
execution_context: int | str | None = None,
|
|
206
206
|
undo: bool | None = None,
|
|
207
207
|
):
|
|
208
208
|
"""Copy selected keyframes to the internal clipboard
|
|
209
209
|
|
|
210
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
210
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
211
211
|
:type execution_context: int | str | None
|
|
212
212
|
:type undo: bool | None
|
|
213
213
|
"""
|
|
214
214
|
|
|
215
215
|
def cursor_set(
|
|
216
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
216
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
217
217
|
execution_context: int | str | None = None,
|
|
218
218
|
undo: bool | None = None,
|
|
219
219
|
*,
|
|
@@ -222,7 +222,7 @@ def cursor_set(
|
|
|
222
222
|
):
|
|
223
223
|
"""Interactively set the current frame and value cursor
|
|
224
224
|
|
|
225
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
225
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
226
226
|
:type execution_context: int | str | None
|
|
227
227
|
:type undo: bool | None
|
|
228
228
|
:param frame: Frame
|
|
@@ -232,7 +232,7 @@ def cursor_set(
|
|
|
232
232
|
"""
|
|
233
233
|
|
|
234
234
|
def decimate(
|
|
235
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
235
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
236
236
|
execution_context: int | str | None = None,
|
|
237
237
|
undo: bool | None = None,
|
|
238
238
|
*,
|
|
@@ -242,7 +242,7 @@ def decimate(
|
|
|
242
242
|
):
|
|
243
243
|
"""Decimate F-Curves by removing keyframes that influence the curve shape the least
|
|
244
244
|
|
|
245
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
245
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
246
246
|
:type execution_context: int | str | None
|
|
247
247
|
:type undo: bool | None
|
|
248
248
|
:param mode: Mode, Which mode to use for decimation
|
|
@@ -260,7 +260,7 @@ def decimate(
|
|
|
260
260
|
"""
|
|
261
261
|
|
|
262
262
|
def delete(
|
|
263
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
263
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
264
264
|
execution_context: int | str | None = None,
|
|
265
265
|
undo: bool | None = None,
|
|
266
266
|
*,
|
|
@@ -268,7 +268,7 @@ def delete(
|
|
|
268
268
|
):
|
|
269
269
|
"""Remove all selected keyframes
|
|
270
270
|
|
|
271
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
271
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
272
272
|
:type execution_context: int | str | None
|
|
273
273
|
:type undo: bool | None
|
|
274
274
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -276,31 +276,31 @@ def delete(
|
|
|
276
276
|
"""
|
|
277
277
|
|
|
278
278
|
def driver_delete_invalid(
|
|
279
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
279
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
280
280
|
execution_context: int | str | None = None,
|
|
281
281
|
undo: bool | None = None,
|
|
282
282
|
):
|
|
283
283
|
"""Delete all visible drivers considered invalid
|
|
284
284
|
|
|
285
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
285
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
286
286
|
:type execution_context: int | str | None
|
|
287
287
|
:type undo: bool | None
|
|
288
288
|
"""
|
|
289
289
|
|
|
290
290
|
def driver_variables_copy(
|
|
291
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
291
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
292
292
|
execution_context: int | str | None = None,
|
|
293
293
|
undo: bool | None = None,
|
|
294
294
|
):
|
|
295
295
|
"""Copy the driver variables of the active driver
|
|
296
296
|
|
|
297
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
297
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
298
298
|
:type execution_context: int | str | None
|
|
299
299
|
:type undo: bool | None
|
|
300
300
|
"""
|
|
301
301
|
|
|
302
302
|
def driver_variables_paste(
|
|
303
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
303
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
304
304
|
execution_context: int | str | None = None,
|
|
305
305
|
undo: bool | None = None,
|
|
306
306
|
*,
|
|
@@ -308,7 +308,7 @@ def driver_variables_paste(
|
|
|
308
308
|
):
|
|
309
309
|
"""Add copied driver variables to the active driver
|
|
310
310
|
|
|
311
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
311
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
312
312
|
:type execution_context: int | str | None
|
|
313
313
|
:type undo: bool | None
|
|
314
314
|
:param replace: Replace Existing, Replace existing driver variables, instead of just appending to the end of the existing list
|
|
@@ -316,7 +316,7 @@ def driver_variables_paste(
|
|
|
316
316
|
"""
|
|
317
317
|
|
|
318
318
|
def duplicate(
|
|
319
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
319
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
320
320
|
execution_context: int | str | None = None,
|
|
321
321
|
undo: bool | None = None,
|
|
322
322
|
*,
|
|
@@ -324,7 +324,7 @@ def duplicate(
|
|
|
324
324
|
):
|
|
325
325
|
"""Make a copy of all selected keyframes
|
|
326
326
|
|
|
327
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
327
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
328
328
|
:type execution_context: int | str | None
|
|
329
329
|
:type undo: bool | None
|
|
330
330
|
:param mode: Mode
|
|
@@ -332,7 +332,7 @@ def duplicate(
|
|
|
332
332
|
"""
|
|
333
333
|
|
|
334
334
|
def duplicate_move(
|
|
335
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
335
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
336
336
|
execution_context: int | str | None = None,
|
|
337
337
|
undo: bool | None = None,
|
|
338
338
|
*,
|
|
@@ -341,7 +341,7 @@ def duplicate_move(
|
|
|
341
341
|
):
|
|
342
342
|
"""Make a copy of all selected keyframes and move them
|
|
343
343
|
|
|
344
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
344
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
345
345
|
:type execution_context: int | str | None
|
|
346
346
|
:type undo: bool | None
|
|
347
347
|
:param GRAPH_OT_duplicate: Duplicate Keyframes, Make a copy of all selected keyframes
|
|
@@ -351,7 +351,7 @@ def duplicate_move(
|
|
|
351
351
|
"""
|
|
352
352
|
|
|
353
353
|
def ease(
|
|
354
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
354
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
355
355
|
execution_context: int | str | None = None,
|
|
356
356
|
undo: bool | None = None,
|
|
357
357
|
*,
|
|
@@ -360,7 +360,7 @@ def ease(
|
|
|
360
360
|
):
|
|
361
361
|
"""Align keyframes on a ease-in or ease-out curve
|
|
362
362
|
|
|
363
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
363
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
364
364
|
:type execution_context: int | str | None
|
|
365
365
|
:type undo: bool | None
|
|
366
366
|
:param factor: Curve Bend, Defines if the keys should be aligned on an ease-in or ease-out curve
|
|
@@ -370,7 +370,7 @@ def ease(
|
|
|
370
370
|
"""
|
|
371
371
|
|
|
372
372
|
def easing_type(
|
|
373
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
373
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
374
374
|
execution_context: int | str | None = None,
|
|
375
375
|
undo: bool | None = None,
|
|
376
376
|
*,
|
|
@@ -378,7 +378,7 @@ def easing_type(
|
|
|
378
378
|
):
|
|
379
379
|
"""Set easing type for the F-Curve segments starting from the selected keyframes
|
|
380
380
|
|
|
381
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
381
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
382
382
|
:type execution_context: int | str | None
|
|
383
383
|
:type undo: bool | None
|
|
384
384
|
:param type: Type
|
|
@@ -386,7 +386,7 @@ def easing_type(
|
|
|
386
386
|
"""
|
|
387
387
|
|
|
388
388
|
def equalize_handles(
|
|
389
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
389
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
390
390
|
execution_context: int | str | None = None,
|
|
391
391
|
undo: bool | None = None,
|
|
392
392
|
*,
|
|
@@ -396,7 +396,7 @@ def equalize_handles(
|
|
|
396
396
|
):
|
|
397
397
|
"""Ensure selected keyframes' handles have equal length, optionally making them horizontal. Automatic, Automatic Clamped, or Vector handle types will be converted to Aligned
|
|
398
398
|
|
|
399
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
399
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
400
400
|
:type execution_context: int | str | None
|
|
401
401
|
:type undo: bool | None
|
|
402
402
|
:param side: Side, Side of the keyframes' Bézier handles to affect
|
|
@@ -417,19 +417,19 @@ def equalize_handles(
|
|
|
417
417
|
"""
|
|
418
418
|
|
|
419
419
|
def euler_filter(
|
|
420
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
420
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
421
421
|
execution_context: int | str | None = None,
|
|
422
422
|
undo: bool | None = None,
|
|
423
423
|
):
|
|
424
424
|
"""Fix large jumps and flips in the selected Euler Rotation F-Curves arising from rotation values being clipped when baking physics
|
|
425
425
|
|
|
426
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
426
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
427
427
|
:type execution_context: int | str | None
|
|
428
428
|
:type undo: bool | None
|
|
429
429
|
"""
|
|
430
430
|
|
|
431
431
|
def extrapolation_type(
|
|
432
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
432
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
433
433
|
execution_context: int | str | None = None,
|
|
434
434
|
undo: bool | None = None,
|
|
435
435
|
*,
|
|
@@ -438,7 +438,7 @@ def extrapolation_type(
|
|
|
438
438
|
):
|
|
439
439
|
"""Set extrapolation mode for selected F-Curves
|
|
440
440
|
|
|
441
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
441
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
442
442
|
:type execution_context: int | str | None
|
|
443
443
|
:type undo: bool | None
|
|
444
444
|
:param type: Type
|
|
@@ -458,7 +458,7 @@ def extrapolation_type(
|
|
|
458
458
|
"""
|
|
459
459
|
|
|
460
460
|
def fmodifier_add(
|
|
461
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
461
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
462
462
|
execution_context: int | str | None = None,
|
|
463
463
|
undo: bool | None = None,
|
|
464
464
|
*,
|
|
@@ -467,7 +467,7 @@ def fmodifier_add(
|
|
|
467
467
|
):
|
|
468
468
|
"""Add F-Modifier to the active/selected F-Curves
|
|
469
469
|
|
|
470
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
470
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
471
471
|
:type execution_context: int | str | None
|
|
472
472
|
:type undo: bool | None
|
|
473
473
|
:param type: Type
|
|
@@ -477,19 +477,19 @@ def fmodifier_add(
|
|
|
477
477
|
"""
|
|
478
478
|
|
|
479
479
|
def fmodifier_copy(
|
|
480
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
480
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
481
481
|
execution_context: int | str | None = None,
|
|
482
482
|
undo: bool | None = None,
|
|
483
483
|
):
|
|
484
484
|
"""Copy the F-Modifier(s) of the active F-Curve
|
|
485
485
|
|
|
486
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
486
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
487
487
|
:type execution_context: int | str | None
|
|
488
488
|
:type undo: bool | None
|
|
489
489
|
"""
|
|
490
490
|
|
|
491
491
|
def fmodifier_paste(
|
|
492
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
492
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
493
493
|
execution_context: int | str | None = None,
|
|
494
494
|
undo: bool | None = None,
|
|
495
495
|
*,
|
|
@@ -498,7 +498,7 @@ def fmodifier_paste(
|
|
|
498
498
|
):
|
|
499
499
|
"""Add copied F-Modifiers to the selected F-Curves
|
|
500
500
|
|
|
501
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
501
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
502
502
|
:type execution_context: int | str | None
|
|
503
503
|
:type undo: bool | None
|
|
504
504
|
:param only_active: Only Active, Only paste F-Modifiers on active F-Curve
|
|
@@ -508,19 +508,19 @@ def fmodifier_paste(
|
|
|
508
508
|
"""
|
|
509
509
|
|
|
510
510
|
def frame_jump(
|
|
511
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
511
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
512
512
|
execution_context: int | str | None = None,
|
|
513
513
|
undo: bool | None = None,
|
|
514
514
|
):
|
|
515
515
|
"""Place the cursor on the midpoint of selected keyframes
|
|
516
516
|
|
|
517
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
517
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
518
518
|
:type execution_context: int | str | None
|
|
519
519
|
:type undo: bool | None
|
|
520
520
|
"""
|
|
521
521
|
|
|
522
522
|
def gaussian_smooth(
|
|
523
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
523
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
524
524
|
execution_context: int | str | None = None,
|
|
525
525
|
undo: bool | None = None,
|
|
526
526
|
*,
|
|
@@ -530,7 +530,7 @@ def gaussian_smooth(
|
|
|
530
530
|
):
|
|
531
531
|
"""Smooth the curve using a Gaussian filter
|
|
532
532
|
|
|
533
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
533
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
534
534
|
:type execution_context: int | str | None
|
|
535
535
|
:type undo: bool | None
|
|
536
536
|
:param factor: Factor, How much to blend to the default value
|
|
@@ -542,31 +542,31 @@ def gaussian_smooth(
|
|
|
542
542
|
"""
|
|
543
543
|
|
|
544
544
|
def ghost_curves_clear(
|
|
545
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
545
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
546
546
|
execution_context: int | str | None = None,
|
|
547
547
|
undo: bool | None = None,
|
|
548
548
|
):
|
|
549
549
|
"""Clear F-Curve snapshots (Ghosts) for active Graph Editor
|
|
550
550
|
|
|
551
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
551
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
552
552
|
:type execution_context: int | str | None
|
|
553
553
|
:type undo: bool | None
|
|
554
554
|
"""
|
|
555
555
|
|
|
556
556
|
def ghost_curves_create(
|
|
557
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
557
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
558
558
|
execution_context: int | str | None = None,
|
|
559
559
|
undo: bool | None = None,
|
|
560
560
|
):
|
|
561
561
|
"""Create snapshot (Ghosts) of selected F-Curves as background aid for active Graph Editor
|
|
562
562
|
|
|
563
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
563
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
564
564
|
:type execution_context: int | str | None
|
|
565
565
|
:type undo: bool | None
|
|
566
566
|
"""
|
|
567
567
|
|
|
568
568
|
def handle_type(
|
|
569
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
569
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
570
570
|
execution_context: int | str | None = None,
|
|
571
571
|
undo: bool | None = None,
|
|
572
572
|
*,
|
|
@@ -574,7 +574,7 @@ def handle_type(
|
|
|
574
574
|
):
|
|
575
575
|
"""Set type of handle for selected keyframes
|
|
576
576
|
|
|
577
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
577
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
578
578
|
:type execution_context: int | str | None
|
|
579
579
|
:type undo: bool | None
|
|
580
580
|
:param type: Type
|
|
@@ -582,7 +582,7 @@ def handle_type(
|
|
|
582
582
|
"""
|
|
583
583
|
|
|
584
584
|
def hide(
|
|
585
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
585
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
586
586
|
execution_context: int | str | None = None,
|
|
587
587
|
undo: bool | None = None,
|
|
588
588
|
*,
|
|
@@ -590,7 +590,7 @@ def hide(
|
|
|
590
590
|
):
|
|
591
591
|
"""Hide selected curves from Graph Editor view
|
|
592
592
|
|
|
593
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
593
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
594
594
|
:type execution_context: int | str | None
|
|
595
595
|
:type undo: bool | None
|
|
596
596
|
:param unselected: Unselected, Hide unselected rather than selected curves
|
|
@@ -598,7 +598,7 @@ def hide(
|
|
|
598
598
|
"""
|
|
599
599
|
|
|
600
600
|
def interpolation_type(
|
|
601
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
601
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
602
602
|
execution_context: int | str | None = None,
|
|
603
603
|
undo: bool | None = None,
|
|
604
604
|
*,
|
|
@@ -606,7 +606,7 @@ def interpolation_type(
|
|
|
606
606
|
):
|
|
607
607
|
"""Set interpolation mode for the F-Curve segments starting from the selected keyframes
|
|
608
608
|
|
|
609
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
609
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
610
610
|
:type execution_context: int | str | None
|
|
611
611
|
:type undo: bool | None
|
|
612
612
|
:param type: Type
|
|
@@ -614,7 +614,7 @@ def interpolation_type(
|
|
|
614
614
|
"""
|
|
615
615
|
|
|
616
616
|
def keyframe_insert(
|
|
617
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
617
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
618
618
|
execution_context: int | str | None = None,
|
|
619
619
|
undo: bool | None = None,
|
|
620
620
|
*,
|
|
@@ -623,7 +623,7 @@ def keyframe_insert(
|
|
|
623
623
|
):
|
|
624
624
|
"""Insert keyframes for the specified channels
|
|
625
625
|
|
|
626
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
626
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
627
627
|
:type execution_context: int | str | None
|
|
628
628
|
:type undo: bool | None
|
|
629
629
|
:param type: Type
|
|
@@ -646,7 +646,7 @@ def keyframe_insert(
|
|
|
646
646
|
"""
|
|
647
647
|
|
|
648
648
|
def keyframe_jump(
|
|
649
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
649
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
650
650
|
execution_context: int | str | None = None,
|
|
651
651
|
undo: bool | None = None,
|
|
652
652
|
*,
|
|
@@ -654,7 +654,7 @@ def keyframe_jump(
|
|
|
654
654
|
):
|
|
655
655
|
"""Jump to previous/next keyframe
|
|
656
656
|
|
|
657
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
657
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
658
658
|
:type execution_context: int | str | None
|
|
659
659
|
:type undo: bool | None
|
|
660
660
|
:param next: Next Keyframe
|
|
@@ -662,19 +662,19 @@ def keyframe_jump(
|
|
|
662
662
|
"""
|
|
663
663
|
|
|
664
664
|
def keys_to_samples(
|
|
665
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
665
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
666
666
|
execution_context: int | str | None = None,
|
|
667
667
|
undo: bool | None = None,
|
|
668
668
|
):
|
|
669
669
|
"""Convert selected channels to an uneditable set of samples to save storage space
|
|
670
670
|
|
|
671
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
671
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
672
672
|
:type execution_context: int | str | None
|
|
673
673
|
:type undo: bool | None
|
|
674
674
|
"""
|
|
675
675
|
|
|
676
676
|
def match_slope(
|
|
677
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
677
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
678
678
|
execution_context: int | str | None = None,
|
|
679
679
|
undo: bool | None = None,
|
|
680
680
|
*,
|
|
@@ -682,7 +682,7 @@ def match_slope(
|
|
|
682
682
|
):
|
|
683
683
|
"""Blend selected keys to the slope of neighboring ones
|
|
684
684
|
|
|
685
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
685
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
686
686
|
:type execution_context: int | str | None
|
|
687
687
|
:type undo: bool | None
|
|
688
688
|
:param factor: Factor, Defines which keys to use as slope and how much to blend towards them
|
|
@@ -690,7 +690,7 @@ def match_slope(
|
|
|
690
690
|
"""
|
|
691
691
|
|
|
692
692
|
def mirror(
|
|
693
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
693
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
694
694
|
execution_context: int | str | None = None,
|
|
695
695
|
undo: bool | None = None,
|
|
696
696
|
*,
|
|
@@ -698,7 +698,7 @@ def mirror(
|
|
|
698
698
|
):
|
|
699
699
|
"""Flip selected keyframes over the selected mirror line
|
|
700
700
|
|
|
701
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
701
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
702
702
|
:type execution_context: int | str | None
|
|
703
703
|
:type undo: bool | None
|
|
704
704
|
:param type: Type
|
|
@@ -721,7 +721,7 @@ def mirror(
|
|
|
721
721
|
"""
|
|
722
722
|
|
|
723
723
|
def paste(
|
|
724
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
724
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
725
725
|
execution_context: int | str | None = None,
|
|
726
726
|
undo: bool | None = None,
|
|
727
727
|
*,
|
|
@@ -732,7 +732,7 @@ def paste(
|
|
|
732
732
|
):
|
|
733
733
|
"""Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
|
|
734
734
|
|
|
735
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
735
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
736
736
|
:type execution_context: int | str | None
|
|
737
737
|
:type undo: bool | None
|
|
738
738
|
:param offset: Frame Offset, Paste time offset of keys
|
|
@@ -746,19 +746,19 @@ def paste(
|
|
|
746
746
|
"""
|
|
747
747
|
|
|
748
748
|
def previewrange_set(
|
|
749
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
749
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
750
750
|
execution_context: int | str | None = None,
|
|
751
751
|
undo: bool | None = None,
|
|
752
752
|
):
|
|
753
753
|
"""Set Preview Range based on range of selected keyframes
|
|
754
754
|
|
|
755
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
755
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
756
756
|
:type execution_context: int | str | None
|
|
757
757
|
:type undo: bool | None
|
|
758
758
|
"""
|
|
759
759
|
|
|
760
760
|
def push_pull(
|
|
761
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
761
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
762
762
|
execution_context: int | str | None = None,
|
|
763
763
|
undo: bool | None = None,
|
|
764
764
|
*,
|
|
@@ -766,7 +766,7 @@ def push_pull(
|
|
|
766
766
|
):
|
|
767
767
|
"""Exaggerate or minimize the value of the selected keys
|
|
768
768
|
|
|
769
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
769
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
770
770
|
:type execution_context: int | str | None
|
|
771
771
|
:type undo: bool | None
|
|
772
772
|
:param factor: Factor, Control how far to push or pull the keys
|
|
@@ -774,7 +774,7 @@ def push_pull(
|
|
|
774
774
|
"""
|
|
775
775
|
|
|
776
776
|
def reveal(
|
|
777
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
777
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
778
778
|
execution_context: int | str | None = None,
|
|
779
779
|
undo: bool | None = None,
|
|
780
780
|
*,
|
|
@@ -782,7 +782,7 @@ def reveal(
|
|
|
782
782
|
):
|
|
783
783
|
"""Make previously hidden curves visible again in Graph Editor view
|
|
784
784
|
|
|
785
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
785
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
786
786
|
:type execution_context: int | str | None
|
|
787
787
|
:type undo: bool | None
|
|
788
788
|
:param select: Select
|
|
@@ -790,19 +790,19 @@ def reveal(
|
|
|
790
790
|
"""
|
|
791
791
|
|
|
792
792
|
def samples_to_keys(
|
|
793
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
793
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
794
794
|
execution_context: int | str | None = None,
|
|
795
795
|
undo: bool | None = None,
|
|
796
796
|
):
|
|
797
797
|
"""Convert selected channels from samples to keyframes
|
|
798
798
|
|
|
799
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
799
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
800
800
|
:type execution_context: int | str | None
|
|
801
801
|
:type undo: bool | None
|
|
802
802
|
"""
|
|
803
803
|
|
|
804
804
|
def scale_average(
|
|
805
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
805
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
806
806
|
execution_context: int | str | None = None,
|
|
807
807
|
undo: bool | None = None,
|
|
808
808
|
*,
|
|
@@ -810,7 +810,7 @@ def scale_average(
|
|
|
810
810
|
):
|
|
811
811
|
"""Scale selected key values by their combined average
|
|
812
812
|
|
|
813
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
813
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
814
814
|
:type execution_context: int | str | None
|
|
815
815
|
:type undo: bool | None
|
|
816
816
|
:param factor: Scale Factor, The scale factor applied to the curve segments
|
|
@@ -818,7 +818,7 @@ def scale_average(
|
|
|
818
818
|
"""
|
|
819
819
|
|
|
820
820
|
def scale_from_neighbor(
|
|
821
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
821
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
822
822
|
execution_context: int | str | None = None,
|
|
823
823
|
undo: bool | None = None,
|
|
824
824
|
*,
|
|
@@ -827,7 +827,7 @@ def scale_from_neighbor(
|
|
|
827
827
|
):
|
|
828
828
|
"""Increase or decrease the value of selected keys in relationship to the neighboring one
|
|
829
829
|
|
|
830
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
830
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
831
831
|
:type execution_context: int | str | None
|
|
832
832
|
:type undo: bool | None
|
|
833
833
|
:param factor: Factor, The factor to scale keys with
|
|
@@ -837,7 +837,7 @@ def scale_from_neighbor(
|
|
|
837
837
|
"""
|
|
838
838
|
|
|
839
839
|
def select_all(
|
|
840
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
840
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
841
841
|
execution_context: int | str | None = None,
|
|
842
842
|
undo: bool | None = None,
|
|
843
843
|
*,
|
|
@@ -845,7 +845,7 @@ def select_all(
|
|
|
845
845
|
):
|
|
846
846
|
"""Toggle selection of all keyframes
|
|
847
847
|
|
|
848
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
848
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
849
849
|
:type execution_context: int | str | None
|
|
850
850
|
:type undo: bool | None
|
|
851
851
|
:param action: Action, Selection action to execute
|
|
@@ -865,7 +865,7 @@ def select_all(
|
|
|
865
865
|
"""
|
|
866
866
|
|
|
867
867
|
def select_box(
|
|
868
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
868
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
869
869
|
execution_context: int | str | None = None,
|
|
870
870
|
undo: bool | None = None,
|
|
871
871
|
*,
|
|
@@ -882,7 +882,7 @@ def select_box(
|
|
|
882
882
|
):
|
|
883
883
|
"""Select all keyframes within the specified region
|
|
884
884
|
|
|
885
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
885
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
886
886
|
:type execution_context: int | str | None
|
|
887
887
|
:type undo: bool | None
|
|
888
888
|
:param axis_range: Axis Range
|
|
@@ -917,7 +917,7 @@ def select_box(
|
|
|
917
917
|
"""
|
|
918
918
|
|
|
919
919
|
def select_circle(
|
|
920
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
920
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
921
921
|
execution_context: int | str | None = None,
|
|
922
922
|
undo: bool | None = None,
|
|
923
923
|
*,
|
|
@@ -930,7 +930,7 @@ def select_circle(
|
|
|
930
930
|
):
|
|
931
931
|
"""Select keyframe points using circle selection
|
|
932
932
|
|
|
933
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
933
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
934
934
|
:type execution_context: int | str | None
|
|
935
935
|
:type undo: bool | None
|
|
936
936
|
:param x: X
|
|
@@ -957,7 +957,7 @@ def select_circle(
|
|
|
957
957
|
"""
|
|
958
958
|
|
|
959
959
|
def select_column(
|
|
960
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
960
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
961
961
|
execution_context: int | str | None = None,
|
|
962
962
|
undo: bool | None = None,
|
|
963
963
|
*,
|
|
@@ -966,7 +966,7 @@ def select_column(
|
|
|
966
966
|
):
|
|
967
967
|
"""Select all keyframes on the specified frame(s)
|
|
968
968
|
|
|
969
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
969
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
970
970
|
:type execution_context: int | str | None
|
|
971
971
|
:type undo: bool | None
|
|
972
972
|
:param mode: Mode
|
|
@@ -974,7 +974,7 @@ def select_column(
|
|
|
974
974
|
"""
|
|
975
975
|
|
|
976
976
|
def select_key_handles(
|
|
977
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
977
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
978
978
|
execution_context: int | str | None = None,
|
|
979
979
|
undo: bool | None = None,
|
|
980
980
|
*,
|
|
@@ -984,7 +984,7 @@ def select_key_handles(
|
|
|
984
984
|
):
|
|
985
985
|
"""For selected keyframes, select/deselect any combination of the key itself and its handles
|
|
986
986
|
|
|
987
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
987
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
988
988
|
:type execution_context: int | str | None
|
|
989
989
|
:type undo: bool | None
|
|
990
990
|
:param left_handle_action: Left Handle, Effect on the left handle
|
|
@@ -1023,7 +1023,7 @@ def select_key_handles(
|
|
|
1023
1023
|
"""
|
|
1024
1024
|
|
|
1025
1025
|
def select_lasso(
|
|
1026
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1026
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1027
1027
|
execution_context: int | str | None = None,
|
|
1028
1028
|
undo: bool | None = None,
|
|
1029
1029
|
*,
|
|
@@ -1036,7 +1036,7 @@ def select_lasso(
|
|
|
1036
1036
|
):
|
|
1037
1037
|
"""Select keyframe points using lasso selection
|
|
1038
1038
|
|
|
1039
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1039
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1040
1040
|
:type execution_context: int | str | None
|
|
1041
1041
|
:type undo: bool | None
|
|
1042
1042
|
:param path: Path
|
|
@@ -1063,7 +1063,7 @@ def select_lasso(
|
|
|
1063
1063
|
"""
|
|
1064
1064
|
|
|
1065
1065
|
def select_leftright(
|
|
1066
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1066
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1067
1067
|
execution_context: int | str | None = None,
|
|
1068
1068
|
undo: bool | None = None,
|
|
1069
1069
|
*,
|
|
@@ -1072,7 +1072,7 @@ def select_leftright(
|
|
|
1072
1072
|
):
|
|
1073
1073
|
"""Select keyframes to the left or the right of the current frame
|
|
1074
1074
|
|
|
1075
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1075
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1076
1076
|
:type execution_context: int | str | None
|
|
1077
1077
|
:type undo: bool | None
|
|
1078
1078
|
:param mode: Mode
|
|
@@ -1082,43 +1082,43 @@ def select_leftright(
|
|
|
1082
1082
|
"""
|
|
1083
1083
|
|
|
1084
1084
|
def select_less(
|
|
1085
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1085
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1086
1086
|
execution_context: int | str | None = None,
|
|
1087
1087
|
undo: bool | None = None,
|
|
1088
1088
|
):
|
|
1089
1089
|
"""Deselect keyframes on ends of selection islands
|
|
1090
1090
|
|
|
1091
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1091
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1092
1092
|
:type execution_context: int | str | None
|
|
1093
1093
|
:type undo: bool | None
|
|
1094
1094
|
"""
|
|
1095
1095
|
|
|
1096
1096
|
def select_linked(
|
|
1097
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1097
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1098
1098
|
execution_context: int | str | None = None,
|
|
1099
1099
|
undo: bool | None = None,
|
|
1100
1100
|
):
|
|
1101
1101
|
"""Select keyframes occurring in the same F-Curves as selected ones
|
|
1102
1102
|
|
|
1103
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1103
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1104
1104
|
:type execution_context: int | str | None
|
|
1105
1105
|
:type undo: bool | None
|
|
1106
1106
|
"""
|
|
1107
1107
|
|
|
1108
1108
|
def select_more(
|
|
1109
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1109
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1110
1110
|
execution_context: int | str | None = None,
|
|
1111
1111
|
undo: bool | None = None,
|
|
1112
1112
|
):
|
|
1113
1113
|
"""Select keyframes beside already selected ones
|
|
1114
1114
|
|
|
1115
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1115
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1116
1116
|
:type execution_context: int | str | None
|
|
1117
1117
|
:type undo: bool | None
|
|
1118
1118
|
"""
|
|
1119
1119
|
|
|
1120
1120
|
def shear(
|
|
1121
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1121
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1122
1122
|
execution_context: int | str | None = None,
|
|
1123
1123
|
undo: bool | None = None,
|
|
1124
1124
|
*,
|
|
@@ -1127,7 +1127,7 @@ def shear(
|
|
|
1127
1127
|
):
|
|
1128
1128
|
"""Affect the value of the keys linearly, keeping the same relationship between them using either the left or the right key as reference
|
|
1129
1129
|
|
|
1130
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1130
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1131
1131
|
:type execution_context: int | str | None
|
|
1132
1132
|
:type undo: bool | None
|
|
1133
1133
|
:param factor: Shear Factor, The amount of shear to apply
|
|
@@ -1143,19 +1143,19 @@ def shear(
|
|
|
1143
1143
|
"""
|
|
1144
1144
|
|
|
1145
1145
|
def smooth(
|
|
1146
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1146
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1147
1147
|
execution_context: int | str | None = None,
|
|
1148
1148
|
undo: bool | None = None,
|
|
1149
1149
|
):
|
|
1150
1150
|
"""Apply weighted moving means to make selected F-Curves less bumpy
|
|
1151
1151
|
|
|
1152
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1152
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1153
1153
|
:type execution_context: int | str | None
|
|
1154
1154
|
:type undo: bool | None
|
|
1155
1155
|
"""
|
|
1156
1156
|
|
|
1157
1157
|
def snap(
|
|
1158
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1158
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1159
1159
|
execution_context: int | str | None = None,
|
|
1160
1160
|
undo: bool | None = None,
|
|
1161
1161
|
*,
|
|
@@ -1171,7 +1171,7 @@ def snap(
|
|
|
1171
1171
|
):
|
|
1172
1172
|
"""Snap selected keyframes to the chosen times/values
|
|
1173
1173
|
|
|
1174
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1174
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1175
1175
|
:type execution_context: int | str | None
|
|
1176
1176
|
:type undo: bool | None
|
|
1177
1177
|
:param type: Type
|
|
@@ -1197,19 +1197,19 @@ def snap(
|
|
|
1197
1197
|
"""
|
|
1198
1198
|
|
|
1199
1199
|
def snap_cursor_value(
|
|
1200
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1200
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1201
1201
|
execution_context: int | str | None = None,
|
|
1202
1202
|
undo: bool | None = None,
|
|
1203
1203
|
):
|
|
1204
1204
|
"""Place the cursor value on the average value of selected keyframes
|
|
1205
1205
|
|
|
1206
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1206
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1207
1207
|
:type execution_context: int | str | None
|
|
1208
1208
|
:type undo: bool | None
|
|
1209
1209
|
"""
|
|
1210
1210
|
|
|
1211
1211
|
def sound_to_samples(
|
|
1212
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1212
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1213
1213
|
execution_context: int | str | None = None,
|
|
1214
1214
|
undo: bool | None = None,
|
|
1215
1215
|
*,
|
|
@@ -1252,7 +1252,7 @@ def sound_to_samples(
|
|
|
1252
1252
|
):
|
|
1253
1253
|
"""Bakes a sound wave to samples on selected channels
|
|
1254
1254
|
|
|
1255
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1255
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1256
1256
|
:type execution_context: int | str | None
|
|
1257
1257
|
:type undo: bool | None
|
|
1258
1258
|
:param filepath: File Path, Path to file
|
|
@@ -1336,7 +1336,7 @@ def sound_to_samples(
|
|
|
1336
1336
|
"""
|
|
1337
1337
|
|
|
1338
1338
|
def time_offset(
|
|
1339
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1339
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1340
1340
|
execution_context: int | str | None = None,
|
|
1341
1341
|
undo: bool | None = None,
|
|
1342
1342
|
*,
|
|
@@ -1344,7 +1344,7 @@ def time_offset(
|
|
|
1344
1344
|
):
|
|
1345
1345
|
"""Shifts the value of selected keys in time
|
|
1346
1346
|
|
|
1347
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1347
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1348
1348
|
:type execution_context: int | str | None
|
|
1349
1349
|
:type undo: bool | None
|
|
1350
1350
|
:param frame_offset: Frame Offset, How far in frames to offset the animation
|
|
@@ -1352,7 +1352,7 @@ def time_offset(
|
|
|
1352
1352
|
"""
|
|
1353
1353
|
|
|
1354
1354
|
def view_all(
|
|
1355
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1355
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1356
1356
|
execution_context: int | str | None = None,
|
|
1357
1357
|
undo: bool | None = None,
|
|
1358
1358
|
*,
|
|
@@ -1360,7 +1360,7 @@ def view_all(
|
|
|
1360
1360
|
):
|
|
1361
1361
|
"""Reset viewable area to show full keyframe range
|
|
1362
1362
|
|
|
1363
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1363
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1364
1364
|
:type execution_context: int | str | None
|
|
1365
1365
|
:type undo: bool | None
|
|
1366
1366
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|
|
@@ -1368,19 +1368,19 @@ def view_all(
|
|
|
1368
1368
|
"""
|
|
1369
1369
|
|
|
1370
1370
|
def view_frame(
|
|
1371
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1371
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1372
1372
|
execution_context: int | str | None = None,
|
|
1373
1373
|
undo: bool | None = None,
|
|
1374
1374
|
):
|
|
1375
1375
|
"""Move the view to the current frame
|
|
1376
1376
|
|
|
1377
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1377
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1378
1378
|
:type execution_context: int | str | None
|
|
1379
1379
|
:type undo: bool | None
|
|
1380
1380
|
"""
|
|
1381
1381
|
|
|
1382
1382
|
def view_selected(
|
|
1383
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1383
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1384
1384
|
execution_context: int | str | None = None,
|
|
1385
1385
|
undo: bool | None = None,
|
|
1386
1386
|
*,
|
|
@@ -1388,7 +1388,7 @@ def view_selected(
|
|
|
1388
1388
|
):
|
|
1389
1389
|
"""Reset viewable area to show selected keyframe range
|
|
1390
1390
|
|
|
1391
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1391
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1392
1392
|
:type execution_context: int | str | None
|
|
1393
1393
|
:type undo: bool | None
|
|
1394
1394
|
:param include_handles: Include Handles, Include handles of keyframes when calculating extents
|