fake-bpy-module 20240508__py3-none-any.whl → 20240509__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.
- bpy/ops/action/__init__.pyi +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +16 -10
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +159 -81
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +396 -28
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/action/__init__.pyi
CHANGED
|
@@ -5,13 +5,15 @@ import bpy.types
|
|
|
5
5
|
GenericType = typing.TypeVar("GenericType")
|
|
6
6
|
|
|
7
7
|
def bake_keys(
|
|
8
|
-
override_context: typing.Optional[
|
|
8
|
+
override_context: typing.Optional[
|
|
9
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
10
|
+
] = None,
|
|
9
11
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
10
12
|
undo: typing.Optional[bool] = None,
|
|
11
13
|
):
|
|
12
14
|
"""Add keyframes on every frame between the selected keyframes
|
|
13
15
|
|
|
14
|
-
:type override_context: typing.Optional[typing.Union[
|
|
16
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
15
17
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
16
18
|
:type undo: typing.Optional[bool]
|
|
17
19
|
"""
|
|
@@ -19,7 +21,9 @@ def bake_keys(
|
|
|
19
21
|
...
|
|
20
22
|
|
|
21
23
|
def clean(
|
|
22
|
-
override_context: typing.Optional[
|
|
24
|
+
override_context: typing.Optional[
|
|
25
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
26
|
+
] = None,
|
|
23
27
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
24
28
|
undo: typing.Optional[bool] = None,
|
|
25
29
|
threshold: typing.Optional[typing.Any] = 0.001,
|
|
@@ -27,7 +31,7 @@ def clean(
|
|
|
27
31
|
):
|
|
28
32
|
"""Simplify F-Curves by removing closely spaced keyframes
|
|
29
33
|
|
|
30
|
-
:type override_context: typing.Optional[typing.Union[
|
|
34
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
31
35
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
32
36
|
:type undo: typing.Optional[bool]
|
|
33
37
|
:param threshold: Threshold
|
|
@@ -39,7 +43,9 @@ def clean(
|
|
|
39
43
|
...
|
|
40
44
|
|
|
41
45
|
def clickselect(
|
|
42
|
-
override_context: typing.Optional[
|
|
46
|
+
override_context: typing.Optional[
|
|
47
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
48
|
+
] = None,
|
|
43
49
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
44
50
|
undo: typing.Optional[bool] = None,
|
|
45
51
|
wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -52,7 +58,7 @@ def clickselect(
|
|
|
52
58
|
):
|
|
53
59
|
"""Select keyframes by clicking on them
|
|
54
60
|
|
|
55
|
-
:type override_context: typing.Optional[typing.Union[
|
|
61
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
56
62
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
57
63
|
:type undo: typing.Optional[bool]
|
|
58
64
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -74,13 +80,15 @@ def clickselect(
|
|
|
74
80
|
...
|
|
75
81
|
|
|
76
82
|
def copy(
|
|
77
|
-
override_context: typing.Optional[
|
|
83
|
+
override_context: typing.Optional[
|
|
84
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
85
|
+
] = None,
|
|
78
86
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
79
87
|
undo: typing.Optional[bool] = None,
|
|
80
88
|
):
|
|
81
89
|
"""Copy selected keyframes to the internal clipboard
|
|
82
90
|
|
|
83
|
-
:type override_context: typing.Optional[typing.Union[
|
|
91
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
84
92
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
85
93
|
:type undo: typing.Optional[bool]
|
|
86
94
|
"""
|
|
@@ -88,14 +96,16 @@ def copy(
|
|
|
88
96
|
...
|
|
89
97
|
|
|
90
98
|
def delete(
|
|
91
|
-
override_context: typing.Optional[
|
|
99
|
+
override_context: typing.Optional[
|
|
100
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
101
|
+
] = None,
|
|
92
102
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
93
103
|
undo: typing.Optional[bool] = None,
|
|
94
104
|
confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
95
105
|
):
|
|
96
106
|
"""Remove all selected keyframes
|
|
97
107
|
|
|
98
|
-
:type override_context: typing.Optional[typing.Union[
|
|
108
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
99
109
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
100
110
|
:type undo: typing.Optional[bool]
|
|
101
111
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -105,13 +115,15 @@ def delete(
|
|
|
105
115
|
...
|
|
106
116
|
|
|
107
117
|
def duplicate(
|
|
108
|
-
override_context: typing.Optional[
|
|
118
|
+
override_context: typing.Optional[
|
|
119
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
120
|
+
] = None,
|
|
109
121
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
110
122
|
undo: typing.Optional[bool] = None,
|
|
111
123
|
):
|
|
112
124
|
"""Make a copy of all selected keyframes
|
|
113
125
|
|
|
114
|
-
:type override_context: typing.Optional[typing.Union[
|
|
126
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
115
127
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
116
128
|
:type undo: typing.Optional[bool]
|
|
117
129
|
"""
|
|
@@ -119,7 +131,9 @@ def duplicate(
|
|
|
119
131
|
...
|
|
120
132
|
|
|
121
133
|
def duplicate_move(
|
|
122
|
-
override_context: typing.Optional[
|
|
134
|
+
override_context: typing.Optional[
|
|
135
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
136
|
+
] = None,
|
|
123
137
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
124
138
|
undo: typing.Optional[bool] = None,
|
|
125
139
|
ACTION_OT_duplicate: typing.Optional[duplicate] = None,
|
|
@@ -127,7 +141,7 @@ def duplicate_move(
|
|
|
127
141
|
):
|
|
128
142
|
"""Make a copy of all selected keyframes and move them
|
|
129
143
|
|
|
130
|
-
:type override_context: typing.Optional[typing.Union[
|
|
144
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
131
145
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
132
146
|
:type undo: typing.Optional[bool]
|
|
133
147
|
:param ACTION_OT_duplicate: Duplicate Keyframes, Make a copy of all selected keyframes
|
|
@@ -139,14 +153,16 @@ def duplicate_move(
|
|
|
139
153
|
...
|
|
140
154
|
|
|
141
155
|
def easing_type(
|
|
142
|
-
override_context: typing.Optional[
|
|
156
|
+
override_context: typing.Optional[
|
|
157
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
158
|
+
] = None,
|
|
143
159
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
144
160
|
undo: typing.Optional[bool] = None,
|
|
145
161
|
type: typing.Optional[typing.Union[str, int]] = "AUTO",
|
|
146
162
|
):
|
|
147
163
|
"""Set easing type for the F-Curve segments starting from the selected keyframes
|
|
148
164
|
|
|
149
|
-
:type override_context: typing.Optional[typing.Union[
|
|
165
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
150
166
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
151
167
|
:type undo: typing.Optional[bool]
|
|
152
168
|
:param type: Type
|
|
@@ -156,14 +172,16 @@ def easing_type(
|
|
|
156
172
|
...
|
|
157
173
|
|
|
158
174
|
def extrapolation_type(
|
|
159
|
-
override_context: typing.Optional[
|
|
175
|
+
override_context: typing.Optional[
|
|
176
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
177
|
+
] = None,
|
|
160
178
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
161
179
|
undo: typing.Optional[bool] = None,
|
|
162
180
|
type: typing.Optional[typing.Any] = "CONSTANT",
|
|
163
181
|
):
|
|
164
182
|
"""Set extrapolation mode for selected F-Curves
|
|
165
183
|
|
|
166
|
-
:type override_context: typing.Optional[typing.Union[
|
|
184
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
167
185
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
168
186
|
:type undo: typing.Optional[bool]
|
|
169
187
|
:param type: Type
|
|
@@ -185,13 +203,15 @@ def extrapolation_type(
|
|
|
185
203
|
...
|
|
186
204
|
|
|
187
205
|
def frame_jump(
|
|
188
|
-
override_context: typing.Optional[
|
|
206
|
+
override_context: typing.Optional[
|
|
207
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
208
|
+
] = None,
|
|
189
209
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
190
210
|
undo: typing.Optional[bool] = None,
|
|
191
211
|
):
|
|
192
212
|
"""Set the current frame to the average frame value of selected keyframes
|
|
193
213
|
|
|
194
|
-
:type override_context: typing.Optional[typing.Union[
|
|
214
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
195
215
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
196
216
|
:type undo: typing.Optional[bool]
|
|
197
217
|
"""
|
|
@@ -199,14 +219,16 @@ def frame_jump(
|
|
|
199
219
|
...
|
|
200
220
|
|
|
201
221
|
def handle_type(
|
|
202
|
-
override_context: typing.Optional[
|
|
222
|
+
override_context: typing.Optional[
|
|
223
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
224
|
+
] = None,
|
|
203
225
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
204
226
|
undo: typing.Optional[bool] = None,
|
|
205
227
|
type: typing.Optional[typing.Union[str, int]] = "FREE",
|
|
206
228
|
):
|
|
207
229
|
"""Set type of handle for selected keyframes
|
|
208
230
|
|
|
209
|
-
:type override_context: typing.Optional[typing.Union[
|
|
231
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
210
232
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
211
233
|
:type undo: typing.Optional[bool]
|
|
212
234
|
:param type: Type
|
|
@@ -216,14 +238,16 @@ def handle_type(
|
|
|
216
238
|
...
|
|
217
239
|
|
|
218
240
|
def interpolation_type(
|
|
219
|
-
override_context: typing.Optional[
|
|
241
|
+
override_context: typing.Optional[
|
|
242
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
243
|
+
] = None,
|
|
220
244
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
221
245
|
undo: typing.Optional[bool] = None,
|
|
222
246
|
type: typing.Optional[typing.Union[str, int]] = "CONSTANT",
|
|
223
247
|
):
|
|
224
248
|
"""Set interpolation mode for the F-Curve segments starting from the selected keyframes
|
|
225
249
|
|
|
226
|
-
:type override_context: typing.Optional[typing.Union[
|
|
250
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
227
251
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
228
252
|
:type undo: typing.Optional[bool]
|
|
229
253
|
:param type: Type
|
|
@@ -233,14 +257,16 @@ def interpolation_type(
|
|
|
233
257
|
...
|
|
234
258
|
|
|
235
259
|
def keyframe_insert(
|
|
236
|
-
override_context: typing.Optional[
|
|
260
|
+
override_context: typing.Optional[
|
|
261
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
262
|
+
] = None,
|
|
237
263
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
238
264
|
undo: typing.Optional[bool] = None,
|
|
239
265
|
type: typing.Optional[typing.Any] = "ALL",
|
|
240
266
|
):
|
|
241
267
|
"""Insert keyframes for the specified channels
|
|
242
268
|
|
|
243
|
-
:type override_context: typing.Optional[typing.Union[
|
|
269
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
244
270
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
245
271
|
:type undo: typing.Optional[bool]
|
|
246
272
|
:param type: Type
|
|
@@ -250,14 +276,16 @@ def keyframe_insert(
|
|
|
250
276
|
...
|
|
251
277
|
|
|
252
278
|
def keyframe_type(
|
|
253
|
-
override_context: typing.Optional[
|
|
279
|
+
override_context: typing.Optional[
|
|
280
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
281
|
+
] = None,
|
|
254
282
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
255
283
|
undo: typing.Optional[bool] = None,
|
|
256
284
|
type: typing.Optional[typing.Union[str, int]] = "KEYFRAME",
|
|
257
285
|
):
|
|
258
286
|
"""Set type of keyframe for the selected keyframes
|
|
259
287
|
|
|
260
|
-
:type override_context: typing.Optional[typing.Union[
|
|
288
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
261
289
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
262
290
|
:type undo: typing.Optional[bool]
|
|
263
291
|
:param type: Type
|
|
@@ -267,13 +295,15 @@ def keyframe_type(
|
|
|
267
295
|
...
|
|
268
296
|
|
|
269
297
|
def layer_next(
|
|
270
|
-
override_context: typing.Optional[
|
|
298
|
+
override_context: typing.Optional[
|
|
299
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
300
|
+
] = None,
|
|
271
301
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
272
302
|
undo: typing.Optional[bool] = None,
|
|
273
303
|
):
|
|
274
304
|
"""Switch to editing action in animation layer above the current action in the NLA Stack
|
|
275
305
|
|
|
276
|
-
:type override_context: typing.Optional[typing.Union[
|
|
306
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
277
307
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
278
308
|
:type undo: typing.Optional[bool]
|
|
279
309
|
"""
|
|
@@ -281,13 +311,15 @@ def layer_next(
|
|
|
281
311
|
...
|
|
282
312
|
|
|
283
313
|
def layer_prev(
|
|
284
|
-
override_context: typing.Optional[
|
|
314
|
+
override_context: typing.Optional[
|
|
315
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
316
|
+
] = None,
|
|
285
317
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
286
318
|
undo: typing.Optional[bool] = None,
|
|
287
319
|
):
|
|
288
320
|
"""Switch to editing action in animation layer below the current action in the NLA Stack
|
|
289
321
|
|
|
290
|
-
:type override_context: typing.Optional[typing.Union[
|
|
322
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
291
323
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
292
324
|
:type undo: typing.Optional[bool]
|
|
293
325
|
"""
|
|
@@ -295,13 +327,15 @@ def layer_prev(
|
|
|
295
327
|
...
|
|
296
328
|
|
|
297
329
|
def markers_make_local(
|
|
298
|
-
override_context: typing.Optional[
|
|
330
|
+
override_context: typing.Optional[
|
|
331
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
332
|
+
] = None,
|
|
299
333
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
300
334
|
undo: typing.Optional[bool] = None,
|
|
301
335
|
):
|
|
302
336
|
"""Move selected scene markers to the active Action as local 'pose' markers
|
|
303
337
|
|
|
304
|
-
:type override_context: typing.Optional[typing.Union[
|
|
338
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
305
339
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
306
340
|
:type undo: typing.Optional[bool]
|
|
307
341
|
"""
|
|
@@ -309,14 +343,16 @@ def markers_make_local(
|
|
|
309
343
|
...
|
|
310
344
|
|
|
311
345
|
def mirror(
|
|
312
|
-
override_context: typing.Optional[
|
|
346
|
+
override_context: typing.Optional[
|
|
347
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
348
|
+
] = None,
|
|
313
349
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
314
350
|
undo: typing.Optional[bool] = None,
|
|
315
351
|
type: typing.Optional[typing.Any] = "CFRA",
|
|
316
352
|
):
|
|
317
353
|
"""Flip selected keyframes over the selected mirror line
|
|
318
354
|
|
|
319
|
-
:type override_context: typing.Optional[typing.Union[
|
|
355
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
320
356
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
321
357
|
:type undo: typing.Optional[bool]
|
|
322
358
|
:param type: Type
|
|
@@ -335,13 +371,15 @@ def mirror(
|
|
|
335
371
|
...
|
|
336
372
|
|
|
337
373
|
def new(
|
|
338
|
-
override_context: typing.Optional[
|
|
374
|
+
override_context: typing.Optional[
|
|
375
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
376
|
+
] = None,
|
|
339
377
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
340
378
|
undo: typing.Optional[bool] = None,
|
|
341
379
|
):
|
|
342
380
|
"""Create new action
|
|
343
381
|
|
|
344
|
-
:type override_context: typing.Optional[typing.Union[
|
|
382
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
345
383
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
346
384
|
:type undo: typing.Optional[bool]
|
|
347
385
|
"""
|
|
@@ -349,7 +387,9 @@ def new(
|
|
|
349
387
|
...
|
|
350
388
|
|
|
351
389
|
def paste(
|
|
352
|
-
override_context: typing.Optional[
|
|
390
|
+
override_context: typing.Optional[
|
|
391
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
392
|
+
] = None,
|
|
353
393
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
354
394
|
undo: typing.Optional[bool] = None,
|
|
355
395
|
offset: typing.Optional[typing.Union[str, int]] = "START",
|
|
@@ -358,7 +398,7 @@ def paste(
|
|
|
358
398
|
):
|
|
359
399
|
"""Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
|
|
360
400
|
|
|
361
|
-
:type override_context: typing.Optional[typing.Union[
|
|
401
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
362
402
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
363
403
|
:type undo: typing.Optional[bool]
|
|
364
404
|
:param offset: Offset, Paste time offset of keys
|
|
@@ -372,13 +412,15 @@ def paste(
|
|
|
372
412
|
...
|
|
373
413
|
|
|
374
414
|
def previewrange_set(
|
|
375
|
-
override_context: typing.Optional[
|
|
415
|
+
override_context: typing.Optional[
|
|
416
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
417
|
+
] = None,
|
|
376
418
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
377
419
|
undo: typing.Optional[bool] = None,
|
|
378
420
|
):
|
|
379
421
|
"""Set Preview Range based on extents of selected Keyframes
|
|
380
422
|
|
|
381
|
-
:type override_context: typing.Optional[typing.Union[
|
|
423
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
382
424
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
383
425
|
:type undo: typing.Optional[bool]
|
|
384
426
|
"""
|
|
@@ -386,13 +428,15 @@ def previewrange_set(
|
|
|
386
428
|
...
|
|
387
429
|
|
|
388
430
|
def push_down(
|
|
389
|
-
override_context: typing.Optional[
|
|
431
|
+
override_context: typing.Optional[
|
|
432
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
433
|
+
] = None,
|
|
390
434
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
391
435
|
undo: typing.Optional[bool] = None,
|
|
392
436
|
):
|
|
393
437
|
"""Push action down on to the NLA stack as a new strip
|
|
394
438
|
|
|
395
|
-
:type override_context: typing.Optional[typing.Union[
|
|
439
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
396
440
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
397
441
|
:type undo: typing.Optional[bool]
|
|
398
442
|
"""
|
|
@@ -400,14 +444,16 @@ def push_down(
|
|
|
400
444
|
...
|
|
401
445
|
|
|
402
446
|
def select_all(
|
|
403
|
-
override_context: typing.Optional[
|
|
447
|
+
override_context: typing.Optional[
|
|
448
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
449
|
+
] = None,
|
|
404
450
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
405
451
|
undo: typing.Optional[bool] = None,
|
|
406
452
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
407
453
|
):
|
|
408
454
|
"""Toggle selection of all keyframes
|
|
409
455
|
|
|
410
|
-
:type override_context: typing.Optional[typing.Union[
|
|
456
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
411
457
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
412
458
|
:type undo: typing.Optional[bool]
|
|
413
459
|
:param action: Action, Selection action to execute
|
|
@@ -429,7 +475,9 @@ def select_all(
|
|
|
429
475
|
...
|
|
430
476
|
|
|
431
477
|
def select_box(
|
|
432
|
-
override_context: typing.Optional[
|
|
478
|
+
override_context: typing.Optional[
|
|
479
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
480
|
+
] = None,
|
|
433
481
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
434
482
|
undo: typing.Optional[bool] = None,
|
|
435
483
|
axis_range: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -443,7 +491,7 @@ def select_box(
|
|
|
443
491
|
):
|
|
444
492
|
"""Select all keyframes within the specified region
|
|
445
493
|
|
|
446
|
-
:type override_context: typing.Optional[typing.Union[
|
|
494
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
447
495
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
448
496
|
:type undo: typing.Optional[bool]
|
|
449
497
|
:param axis_range: Axis Range
|
|
@@ -476,7 +524,9 @@ def select_box(
|
|
|
476
524
|
...
|
|
477
525
|
|
|
478
526
|
def select_circle(
|
|
479
|
-
override_context: typing.Optional[
|
|
527
|
+
override_context: typing.Optional[
|
|
528
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
529
|
+
] = None,
|
|
480
530
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
481
531
|
undo: typing.Optional[bool] = None,
|
|
482
532
|
x: typing.Optional[typing.Any] = 0,
|
|
@@ -487,7 +537,7 @@ def select_circle(
|
|
|
487
537
|
):
|
|
488
538
|
"""Select keyframe points using circle selection
|
|
489
539
|
|
|
490
|
-
:type override_context: typing.Optional[typing.Union[
|
|
540
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
491
541
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
492
542
|
:type undo: typing.Optional[bool]
|
|
493
543
|
:param x: X
|
|
@@ -514,14 +564,16 @@ def select_circle(
|
|
|
514
564
|
...
|
|
515
565
|
|
|
516
566
|
def select_column(
|
|
517
|
-
override_context: typing.Optional[
|
|
567
|
+
override_context: typing.Optional[
|
|
568
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
569
|
+
] = None,
|
|
518
570
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
519
571
|
undo: typing.Optional[bool] = None,
|
|
520
572
|
mode: typing.Optional[typing.Any] = "KEYS",
|
|
521
573
|
):
|
|
522
574
|
"""Select all keyframes on the specified frame(s)
|
|
523
575
|
|
|
524
|
-
:type override_context: typing.Optional[typing.Union[
|
|
576
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
525
577
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
526
578
|
:type undo: typing.Optional[bool]
|
|
527
579
|
:param mode: Mode
|
|
@@ -531,7 +583,9 @@ def select_column(
|
|
|
531
583
|
...
|
|
532
584
|
|
|
533
585
|
def select_lasso(
|
|
534
|
-
override_context: typing.Optional[
|
|
586
|
+
override_context: typing.Optional[
|
|
587
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
588
|
+
] = None,
|
|
535
589
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
536
590
|
undo: typing.Optional[bool] = None,
|
|
537
591
|
path: typing.Optional[
|
|
@@ -541,7 +595,7 @@ def select_lasso(
|
|
|
541
595
|
):
|
|
542
596
|
"""Select keyframe points using lasso selection
|
|
543
597
|
|
|
544
|
-
:type override_context: typing.Optional[typing.Union[
|
|
598
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
545
599
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
546
600
|
:type undo: typing.Optional[bool]
|
|
547
601
|
:param path: Path
|
|
@@ -562,7 +616,9 @@ def select_lasso(
|
|
|
562
616
|
...
|
|
563
617
|
|
|
564
618
|
def select_leftright(
|
|
565
|
-
override_context: typing.Optional[
|
|
619
|
+
override_context: typing.Optional[
|
|
620
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
621
|
+
] = None,
|
|
566
622
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
567
623
|
undo: typing.Optional[bool] = None,
|
|
568
624
|
mode: typing.Optional[typing.Any] = "CHECK",
|
|
@@ -570,7 +626,7 @@ def select_leftright(
|
|
|
570
626
|
):
|
|
571
627
|
"""Select keyframes to the left or the right of the current frame
|
|
572
628
|
|
|
573
|
-
:type override_context: typing.Optional[typing.Union[
|
|
629
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
574
630
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
575
631
|
:type undo: typing.Optional[bool]
|
|
576
632
|
:param mode: Mode
|
|
@@ -582,13 +638,15 @@ def select_leftright(
|
|
|
582
638
|
...
|
|
583
639
|
|
|
584
640
|
def select_less(
|
|
585
|
-
override_context: typing.Optional[
|
|
641
|
+
override_context: typing.Optional[
|
|
642
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
643
|
+
] = None,
|
|
586
644
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
587
645
|
undo: typing.Optional[bool] = None,
|
|
588
646
|
):
|
|
589
647
|
"""Deselect keyframes on ends of selection islands
|
|
590
648
|
|
|
591
|
-
:type override_context: typing.Optional[typing.Union[
|
|
649
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
592
650
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
593
651
|
:type undo: typing.Optional[bool]
|
|
594
652
|
"""
|
|
@@ -596,13 +654,15 @@ def select_less(
|
|
|
596
654
|
...
|
|
597
655
|
|
|
598
656
|
def select_linked(
|
|
599
|
-
override_context: typing.Optional[
|
|
657
|
+
override_context: typing.Optional[
|
|
658
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
659
|
+
] = None,
|
|
600
660
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
601
661
|
undo: typing.Optional[bool] = None,
|
|
602
662
|
):
|
|
603
663
|
"""Select keyframes occurring in the same F-Curves as selected ones
|
|
604
664
|
|
|
605
|
-
:type override_context: typing.Optional[typing.Union[
|
|
665
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
606
666
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
607
667
|
:type undo: typing.Optional[bool]
|
|
608
668
|
"""
|
|
@@ -610,13 +670,15 @@ def select_linked(
|
|
|
610
670
|
...
|
|
611
671
|
|
|
612
672
|
def select_more(
|
|
613
|
-
override_context: typing.Optional[
|
|
673
|
+
override_context: typing.Optional[
|
|
674
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
675
|
+
] = None,
|
|
614
676
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
615
677
|
undo: typing.Optional[bool] = None,
|
|
616
678
|
):
|
|
617
679
|
"""Select keyframes beside already selected ones
|
|
618
680
|
|
|
619
|
-
:type override_context: typing.Optional[typing.Union[
|
|
681
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
620
682
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
621
683
|
:type undo: typing.Optional[bool]
|
|
622
684
|
"""
|
|
@@ -624,14 +686,16 @@ def select_more(
|
|
|
624
686
|
...
|
|
625
687
|
|
|
626
688
|
def snap(
|
|
627
|
-
override_context: typing.Optional[
|
|
689
|
+
override_context: typing.Optional[
|
|
690
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
691
|
+
] = None,
|
|
628
692
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
629
693
|
undo: typing.Optional[bool] = None,
|
|
630
694
|
type: typing.Optional[typing.Any] = "CFRA",
|
|
631
695
|
):
|
|
632
696
|
"""Snap selected keyframes to the times specified
|
|
633
697
|
|
|
634
|
-
:type override_context: typing.Optional[typing.Union[
|
|
698
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
635
699
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
636
700
|
:type undo: typing.Optional[bool]
|
|
637
701
|
:param type: Type
|
|
@@ -653,14 +717,16 @@ def snap(
|
|
|
653
717
|
...
|
|
654
718
|
|
|
655
719
|
def stash(
|
|
656
|
-
override_context: typing.Optional[
|
|
720
|
+
override_context: typing.Optional[
|
|
721
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
722
|
+
] = None,
|
|
657
723
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
658
724
|
undo: typing.Optional[bool] = None,
|
|
659
725
|
create_new: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
660
726
|
):
|
|
661
727
|
"""Store this action in the NLA stack as a non-contributing strip for later use
|
|
662
728
|
|
|
663
|
-
:type override_context: typing.Optional[typing.Union[
|
|
729
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
664
730
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
665
731
|
:type undo: typing.Optional[bool]
|
|
666
732
|
:param create_new: Create New Action, Create a new action once the existing one has been safely stored
|
|
@@ -670,13 +736,15 @@ def stash(
|
|
|
670
736
|
...
|
|
671
737
|
|
|
672
738
|
def stash_and_create(
|
|
673
|
-
override_context: typing.Optional[
|
|
739
|
+
override_context: typing.Optional[
|
|
740
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
741
|
+
] = None,
|
|
674
742
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
675
743
|
undo: typing.Optional[bool] = None,
|
|
676
744
|
):
|
|
677
745
|
"""Store this action in the NLA stack as a non-contributing strip for later use, and create a new action
|
|
678
746
|
|
|
679
|
-
:type override_context: typing.Optional[typing.Union[
|
|
747
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
680
748
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
681
749
|
:type undo: typing.Optional[bool]
|
|
682
750
|
"""
|
|
@@ -684,14 +752,16 @@ def stash_and_create(
|
|
|
684
752
|
...
|
|
685
753
|
|
|
686
754
|
def unlink(
|
|
687
|
-
override_context: typing.Optional[
|
|
755
|
+
override_context: typing.Optional[
|
|
756
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
757
|
+
] = None,
|
|
688
758
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
689
759
|
undo: typing.Optional[bool] = None,
|
|
690
760
|
force_delete: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
691
761
|
):
|
|
692
762
|
"""Unlink this action from the active action slot (and/or exit Tweak Mode)
|
|
693
763
|
|
|
694
|
-
:type override_context: typing.Optional[typing.Union[
|
|
764
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
695
765
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
696
766
|
:type undo: typing.Optional[bool]
|
|
697
767
|
:param force_delete: Force Delete, Clear Fake User and remove copy stashed in this data-block's NLA stack
|
|
@@ -701,13 +771,15 @@ def unlink(
|
|
|
701
771
|
...
|
|
702
772
|
|
|
703
773
|
def view_all(
|
|
704
|
-
override_context: typing.Optional[
|
|
774
|
+
override_context: typing.Optional[
|
|
775
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
776
|
+
] = None,
|
|
705
777
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
706
778
|
undo: typing.Optional[bool] = None,
|
|
707
779
|
):
|
|
708
780
|
"""Reset viewable area to show full keyframe range
|
|
709
781
|
|
|
710
|
-
:type override_context: typing.Optional[typing.Union[
|
|
782
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
711
783
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
712
784
|
:type undo: typing.Optional[bool]
|
|
713
785
|
"""
|
|
@@ -715,13 +787,15 @@ def view_all(
|
|
|
715
787
|
...
|
|
716
788
|
|
|
717
789
|
def view_frame(
|
|
718
|
-
override_context: typing.Optional[
|
|
790
|
+
override_context: typing.Optional[
|
|
791
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
792
|
+
] = None,
|
|
719
793
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
720
794
|
undo: typing.Optional[bool] = None,
|
|
721
795
|
):
|
|
722
796
|
"""Move the view to the current frame
|
|
723
797
|
|
|
724
|
-
:type override_context: typing.Optional[typing.Union[
|
|
798
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
725
799
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
726
800
|
:type undo: typing.Optional[bool]
|
|
727
801
|
"""
|
|
@@ -729,13 +803,15 @@ def view_frame(
|
|
|
729
803
|
...
|
|
730
804
|
|
|
731
805
|
def view_selected(
|
|
732
|
-
override_context: typing.Optional[
|
|
806
|
+
override_context: typing.Optional[
|
|
807
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
808
|
+
] = None,
|
|
733
809
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
734
810
|
undo: typing.Optional[bool] = None,
|
|
735
811
|
):
|
|
736
812
|
"""Reset viewable area to show selected keyframes range
|
|
737
813
|
|
|
738
|
-
:type override_context: typing.Optional[typing.Union[
|
|
814
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
739
815
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
740
816
|
:type undo: typing.Optional[bool]
|
|
741
817
|
"""
|