fake-bpy-module 20241208__py3-none-any.whl → 20241209__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 +38 -138
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/pose/__init__.pyi
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
import bpy.typing
|
|
6
5
|
|
|
7
6
|
def armature_apply(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
7
|
execution_context: int | str | None = None,
|
|
10
8
|
undo: bool | None = None,
|
|
9
|
+
/,
|
|
11
10
|
*,
|
|
12
11
|
selected: bool | None = False,
|
|
13
12
|
):
|
|
14
13
|
"""Apply the current pose as the new rest pose
|
|
15
14
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
15
|
:type execution_context: int | str | None
|
|
18
16
|
:type undo: bool | None
|
|
19
17
|
:param selected: Selected Only, Only apply the selected bones (with propagation to children)
|
|
@@ -21,15 +19,14 @@ def armature_apply(
|
|
|
21
19
|
"""
|
|
22
20
|
|
|
23
21
|
def autoside_names(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
25
22
|
execution_context: int | str | None = None,
|
|
26
23
|
undo: bool | None = None,
|
|
24
|
+
/,
|
|
27
25
|
*,
|
|
28
26
|
axis: typing.Literal["XAXIS", "YAXIS", "ZAXIS"] | None = "XAXIS",
|
|
29
27
|
):
|
|
30
28
|
"""Automatically renames the selected bones according to which side of the target axis they fall on
|
|
31
29
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
33
30
|
:type execution_context: int | str | None
|
|
34
31
|
:type undo: bool | None
|
|
35
32
|
:param axis: Axis, Axis to tag names with
|
|
@@ -46,9 +43,9 @@ def autoside_names(
|
|
|
46
43
|
"""
|
|
47
44
|
|
|
48
45
|
def blend_to_neighbor(
|
|
49
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
50
46
|
execution_context: int | str | None = None,
|
|
51
47
|
undo: bool | None = None,
|
|
48
|
+
/,
|
|
52
49
|
*,
|
|
53
50
|
factor: float | None = 0.5,
|
|
54
51
|
prev_frame: int | None = 0,
|
|
@@ -59,7 +56,6 @@ def blend_to_neighbor(
|
|
|
59
56
|
):
|
|
60
57
|
"""Blend from current position to previous or next keyframe
|
|
61
58
|
|
|
62
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
63
59
|
:type execution_context: int | str | None
|
|
64
60
|
:type undo: bool | None
|
|
65
61
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -105,9 +101,9 @@ def blend_to_neighbor(
|
|
|
105
101
|
"""
|
|
106
102
|
|
|
107
103
|
def blend_with_rest(
|
|
108
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
109
104
|
execution_context: int | str | None = None,
|
|
110
105
|
undo: bool | None = None,
|
|
106
|
+
/,
|
|
111
107
|
*,
|
|
112
108
|
factor: float | None = 0.5,
|
|
113
109
|
prev_frame: int | None = 0,
|
|
@@ -118,7 +114,6 @@ def blend_with_rest(
|
|
|
118
114
|
):
|
|
119
115
|
"""Make the current pose more similar to, or further away from, the rest pose
|
|
120
116
|
|
|
121
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
122
117
|
:type execution_context: int | str | None
|
|
123
118
|
:type undo: bool | None
|
|
124
119
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -164,9 +159,9 @@ def blend_with_rest(
|
|
|
164
159
|
"""
|
|
165
160
|
|
|
166
161
|
def breakdown(
|
|
167
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
168
162
|
execution_context: int | str | None = None,
|
|
169
163
|
undo: bool | None = None,
|
|
164
|
+
/,
|
|
170
165
|
*,
|
|
171
166
|
factor: float | None = 0.5,
|
|
172
167
|
prev_frame: int | None = 0,
|
|
@@ -177,7 +172,6 @@ def breakdown(
|
|
|
177
172
|
):
|
|
178
173
|
"""Create a suitable breakdown pose on the current frame
|
|
179
174
|
|
|
180
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
181
175
|
:type execution_context: int | str | None
|
|
182
176
|
:type undo: bool | None
|
|
183
177
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -223,15 +217,14 @@ def breakdown(
|
|
|
223
217
|
"""
|
|
224
218
|
|
|
225
219
|
def constraint_add(
|
|
226
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
227
220
|
execution_context: int | str | None = None,
|
|
228
221
|
undo: bool | None = None,
|
|
222
|
+
/,
|
|
229
223
|
*,
|
|
230
224
|
type: bpy.typing.ConstraintTypeItems | None = "",
|
|
231
225
|
):
|
|
232
226
|
"""Add a constraint to the active bone
|
|
233
227
|
|
|
234
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
235
228
|
:type execution_context: int | str | None
|
|
236
229
|
:type undo: bool | None
|
|
237
230
|
:param type: Type
|
|
@@ -239,15 +232,14 @@ def constraint_add(
|
|
|
239
232
|
"""
|
|
240
233
|
|
|
241
234
|
def constraint_add_with_targets(
|
|
242
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
243
235
|
execution_context: int | str | None = None,
|
|
244
236
|
undo: bool | None = None,
|
|
237
|
+
/,
|
|
245
238
|
*,
|
|
246
239
|
type: bpy.typing.ConstraintTypeItems | None = "",
|
|
247
240
|
):
|
|
248
241
|
"""Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones
|
|
249
242
|
|
|
250
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
251
243
|
:type execution_context: int | str | None
|
|
252
244
|
:type undo: bool | None
|
|
253
245
|
:param type: Type
|
|
@@ -255,51 +247,39 @@ def constraint_add_with_targets(
|
|
|
255
247
|
"""
|
|
256
248
|
|
|
257
249
|
def constraints_clear(
|
|
258
|
-
|
|
259
|
-
execution_context: int | str | None = None,
|
|
260
|
-
undo: bool | None = None,
|
|
250
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
261
251
|
):
|
|
262
252
|
"""Clear all constraints from the selected bones
|
|
263
253
|
|
|
264
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
265
254
|
:type execution_context: int | str | None
|
|
266
255
|
:type undo: bool | None
|
|
267
256
|
"""
|
|
268
257
|
|
|
269
258
|
def constraints_copy(
|
|
270
|
-
|
|
271
|
-
execution_context: int | str | None = None,
|
|
272
|
-
undo: bool | None = None,
|
|
259
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
273
260
|
):
|
|
274
261
|
"""Copy constraints to other selected bones
|
|
275
262
|
|
|
276
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
277
263
|
:type execution_context: int | str | None
|
|
278
264
|
:type undo: bool | None
|
|
279
265
|
"""
|
|
280
266
|
|
|
281
|
-
def copy(
|
|
282
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
283
|
-
execution_context: int | str | None = None,
|
|
284
|
-
undo: bool | None = None,
|
|
285
|
-
):
|
|
267
|
+
def copy(execution_context: int | str | None = None, undo: bool | None = None):
|
|
286
268
|
"""Copy the current pose of the selected bones to the internal clipboard
|
|
287
269
|
|
|
288
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
289
270
|
:type execution_context: int | str | None
|
|
290
271
|
:type undo: bool | None
|
|
291
272
|
"""
|
|
292
273
|
|
|
293
274
|
def flip_names(
|
|
294
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
295
275
|
execution_context: int | str | None = None,
|
|
296
276
|
undo: bool | None = None,
|
|
277
|
+
/,
|
|
297
278
|
*,
|
|
298
279
|
do_strip_numbers: bool | None = False,
|
|
299
280
|
):
|
|
300
281
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
301
282
|
|
|
302
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
303
283
|
:type execution_context: int | str | None
|
|
304
284
|
:type undo: bool | None
|
|
305
285
|
:param do_strip_numbers: Strip Numbers, Try to remove right-most dot-number from flipped names.Warning: May result in incoherent naming in some cases
|
|
@@ -307,15 +287,14 @@ def flip_names(
|
|
|
307
287
|
"""
|
|
308
288
|
|
|
309
289
|
def hide(
|
|
310
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
311
290
|
execution_context: int | str | None = None,
|
|
312
291
|
undo: bool | None = None,
|
|
292
|
+
/,
|
|
313
293
|
*,
|
|
314
294
|
unselected: bool | None = False,
|
|
315
295
|
):
|
|
316
296
|
"""Tag selected bones to not be visible in Pose Mode
|
|
317
297
|
|
|
318
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
319
298
|
:type execution_context: int | str | None
|
|
320
299
|
:type undo: bool | None
|
|
321
300
|
:param unselected: Unselected
|
|
@@ -323,56 +302,44 @@ def hide(
|
|
|
323
302
|
"""
|
|
324
303
|
|
|
325
304
|
def ik_add(
|
|
326
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
327
305
|
execution_context: int | str | None = None,
|
|
328
306
|
undo: bool | None = None,
|
|
307
|
+
/,
|
|
329
308
|
*,
|
|
330
309
|
with_targets: bool | None = True,
|
|
331
310
|
):
|
|
332
311
|
"""Add IK Constraint to the active Bone
|
|
333
312
|
|
|
334
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
335
313
|
:type execution_context: int | str | None
|
|
336
314
|
:type undo: bool | None
|
|
337
315
|
:param with_targets: With Targets, Assign IK Constraint with targets derived from the select bones/objects
|
|
338
316
|
:type with_targets: bool | None
|
|
339
317
|
"""
|
|
340
318
|
|
|
341
|
-
def ik_clear(
|
|
342
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
343
|
-
execution_context: int | str | None = None,
|
|
344
|
-
undo: bool | None = None,
|
|
345
|
-
):
|
|
319
|
+
def ik_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
346
320
|
"""Remove all IK Constraints from selected bones
|
|
347
321
|
|
|
348
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
349
322
|
:type execution_context: int | str | None
|
|
350
323
|
:type undo: bool | None
|
|
351
324
|
"""
|
|
352
325
|
|
|
353
|
-
def loc_clear(
|
|
354
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
355
|
-
execution_context: int | str | None = None,
|
|
356
|
-
undo: bool | None = None,
|
|
357
|
-
):
|
|
326
|
+
def loc_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
358
327
|
"""Reset locations of selected bones to their default values
|
|
359
328
|
|
|
360
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
361
329
|
:type execution_context: int | str | None
|
|
362
330
|
:type undo: bool | None
|
|
363
331
|
"""
|
|
364
332
|
|
|
365
333
|
def paste(
|
|
366
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
367
334
|
execution_context: int | str | None = None,
|
|
368
335
|
undo: bool | None = None,
|
|
336
|
+
/,
|
|
369
337
|
*,
|
|
370
338
|
flipped: bool | None = False,
|
|
371
339
|
selected_mask: bool | None = False,
|
|
372
340
|
):
|
|
373
341
|
"""Paste the stored pose on to the current pose
|
|
374
342
|
|
|
375
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
376
343
|
:type execution_context: int | str | None
|
|
377
344
|
:type undo: bool | None
|
|
378
345
|
:param flipped: Flipped on X-Axis, Paste the stored pose flipped on to current pose
|
|
@@ -382,9 +349,9 @@ def paste(
|
|
|
382
349
|
"""
|
|
383
350
|
|
|
384
351
|
def paths_calculate(
|
|
385
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
386
352
|
execution_context: int | str | None = None,
|
|
387
353
|
undo: bool | None = None,
|
|
354
|
+
/,
|
|
388
355
|
*,
|
|
389
356
|
display_type: bpy.typing.MotionpathDisplayTypeItems | None = "RANGE",
|
|
390
357
|
range: bpy.typing.MotionpathRangeItems | None = "SCENE",
|
|
@@ -392,7 +359,6 @@ def paths_calculate(
|
|
|
392
359
|
):
|
|
393
360
|
"""Calculate paths for the selected bones
|
|
394
361
|
|
|
395
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
396
362
|
:type execution_context: int | str | None
|
|
397
363
|
:type undo: bool | None
|
|
398
364
|
:param display_type: Display type
|
|
@@ -404,15 +370,14 @@ def paths_calculate(
|
|
|
404
370
|
"""
|
|
405
371
|
|
|
406
372
|
def paths_clear(
|
|
407
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
408
373
|
execution_context: int | str | None = None,
|
|
409
374
|
undo: bool | None = None,
|
|
375
|
+
/,
|
|
410
376
|
*,
|
|
411
377
|
only_selected: bool | None = False,
|
|
412
378
|
):
|
|
413
379
|
"""Undocumented, consider contributing.
|
|
414
380
|
|
|
415
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
416
381
|
:type execution_context: int | str | None
|
|
417
382
|
:type undo: bool | None
|
|
418
383
|
:param only_selected: Only Selected, Only clear motion paths of selected bones
|
|
@@ -420,33 +385,25 @@ def paths_clear(
|
|
|
420
385
|
"""
|
|
421
386
|
|
|
422
387
|
def paths_range_update(
|
|
423
|
-
|
|
424
|
-
execution_context: int | str | None = None,
|
|
425
|
-
undo: bool | None = None,
|
|
388
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
426
389
|
):
|
|
427
390
|
"""Update frame range for motion paths from the Scene's current frame range
|
|
428
391
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
430
392
|
:type execution_context: int | str | None
|
|
431
393
|
:type undo: bool | None
|
|
432
394
|
"""
|
|
433
395
|
|
|
434
|
-
def paths_update(
|
|
435
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
436
|
-
execution_context: int | str | None = None,
|
|
437
|
-
undo: bool | None = None,
|
|
438
|
-
):
|
|
396
|
+
def paths_update(execution_context: int | str | None = None, undo: bool | None = None):
|
|
439
397
|
"""Recalculate paths for bones that already have them
|
|
440
398
|
|
|
441
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
442
399
|
:type execution_context: int | str | None
|
|
443
400
|
:type undo: bool | None
|
|
444
401
|
"""
|
|
445
402
|
|
|
446
403
|
def propagate(
|
|
447
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
448
404
|
execution_context: int | str | None = None,
|
|
449
405
|
undo: bool | None = None,
|
|
406
|
+
/,
|
|
450
407
|
*,
|
|
451
408
|
mode: typing.Literal[
|
|
452
409
|
"NEXT_KEY",
|
|
@@ -461,7 +418,6 @@ def propagate(
|
|
|
461
418
|
):
|
|
462
419
|
"""Copy selected aspects of the current pose to subsequent poses already keyframed
|
|
463
420
|
|
|
464
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
465
421
|
:type execution_context: int | str | None
|
|
466
422
|
:type undo: bool | None
|
|
467
423
|
:param mode: Terminate Mode, Method used to determine when to stop propagating pose to keyframes
|
|
@@ -489,9 +445,9 @@ def propagate(
|
|
|
489
445
|
"""
|
|
490
446
|
|
|
491
447
|
def push(
|
|
492
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
493
448
|
execution_context: int | str | None = None,
|
|
494
449
|
undo: bool | None = None,
|
|
450
|
+
/,
|
|
495
451
|
*,
|
|
496
452
|
factor: float | None = 0.5,
|
|
497
453
|
prev_frame: int | None = 0,
|
|
@@ -502,7 +458,6 @@ def push(
|
|
|
502
458
|
):
|
|
503
459
|
"""Exaggerate the current pose in regards to the breakdown pose
|
|
504
460
|
|
|
505
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
506
461
|
:type execution_context: int | str | None
|
|
507
462
|
:type undo: bool | None
|
|
508
463
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -548,21 +503,18 @@ def push(
|
|
|
548
503
|
"""
|
|
549
504
|
|
|
550
505
|
def quaternions_flip(
|
|
551
|
-
|
|
552
|
-
execution_context: int | str | None = None,
|
|
553
|
-
undo: bool | None = None,
|
|
506
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
554
507
|
):
|
|
555
508
|
"""Flip quaternion values to achieve desired rotations, while maintaining the same orientations
|
|
556
509
|
|
|
557
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
558
510
|
:type execution_context: int | str | None
|
|
559
511
|
:type undo: bool | None
|
|
560
512
|
"""
|
|
561
513
|
|
|
562
514
|
def relax(
|
|
563
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
564
515
|
execution_context: int | str | None = None,
|
|
565
516
|
undo: bool | None = None,
|
|
517
|
+
/,
|
|
566
518
|
*,
|
|
567
519
|
factor: float | None = 0.5,
|
|
568
520
|
prev_frame: int | None = 0,
|
|
@@ -573,7 +525,6 @@ def relax(
|
|
|
573
525
|
):
|
|
574
526
|
"""Make the current pose more similar to its breakdown pose
|
|
575
527
|
|
|
576
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
577
528
|
:type execution_context: int | str | None
|
|
578
529
|
:type undo: bool | None
|
|
579
530
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -619,71 +570,58 @@ def relax(
|
|
|
619
570
|
"""
|
|
620
571
|
|
|
621
572
|
def reveal(
|
|
622
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
623
573
|
execution_context: int | str | None = None,
|
|
624
574
|
undo: bool | None = None,
|
|
575
|
+
/,
|
|
625
576
|
*,
|
|
626
577
|
select: bool | None = True,
|
|
627
578
|
):
|
|
628
579
|
"""Reveal all bones hidden in Pose Mode
|
|
629
580
|
|
|
630
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
631
581
|
:type execution_context: int | str | None
|
|
632
582
|
:type undo: bool | None
|
|
633
583
|
:param select: Select
|
|
634
584
|
:type select: bool | None
|
|
635
585
|
"""
|
|
636
586
|
|
|
637
|
-
def rot_clear(
|
|
638
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
639
|
-
execution_context: int | str | None = None,
|
|
640
|
-
undo: bool | None = None,
|
|
641
|
-
):
|
|
587
|
+
def rot_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
642
588
|
"""Reset rotations of selected bones to their default values
|
|
643
589
|
|
|
644
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
645
590
|
:type execution_context: int | str | None
|
|
646
591
|
:type undo: bool | None
|
|
647
592
|
"""
|
|
648
593
|
|
|
649
594
|
def rotation_mode_set(
|
|
650
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
651
595
|
execution_context: int | str | None = None,
|
|
652
596
|
undo: bool | None = None,
|
|
597
|
+
/,
|
|
653
598
|
*,
|
|
654
599
|
type: bpy.typing.ObjectRotationModeItems | None = "QUATERNION",
|
|
655
600
|
):
|
|
656
601
|
"""Set the rotation representation used by selected bones
|
|
657
602
|
|
|
658
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
659
603
|
:type execution_context: int | str | None
|
|
660
604
|
:type undo: bool | None
|
|
661
605
|
:param type: Rotation Mode
|
|
662
606
|
:type type: bpy.typing.ObjectRotationModeItems | None
|
|
663
607
|
"""
|
|
664
608
|
|
|
665
|
-
def scale_clear(
|
|
666
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
667
|
-
execution_context: int | str | None = None,
|
|
668
|
-
undo: bool | None = None,
|
|
669
|
-
):
|
|
609
|
+
def scale_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
670
610
|
"""Reset scaling of selected bones to their default values
|
|
671
611
|
|
|
672
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
673
612
|
:type execution_context: int | str | None
|
|
674
613
|
:type undo: bool | None
|
|
675
614
|
"""
|
|
676
615
|
|
|
677
616
|
def select_all(
|
|
678
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
679
617
|
execution_context: int | str | None = None,
|
|
680
618
|
undo: bool | None = None,
|
|
619
|
+
/,
|
|
681
620
|
*,
|
|
682
621
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
683
622
|
):
|
|
684
623
|
"""Toggle selection status of all bones
|
|
685
624
|
|
|
686
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
687
625
|
:type execution_context: int | str | None
|
|
688
626
|
:type undo: bool | None
|
|
689
627
|
:param action: Action, Selection action to execute
|
|
@@ -703,28 +641,24 @@ def select_all(
|
|
|
703
641
|
"""
|
|
704
642
|
|
|
705
643
|
def select_constraint_target(
|
|
706
|
-
|
|
707
|
-
execution_context: int | str | None = None,
|
|
708
|
-
undo: bool | None = None,
|
|
644
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
709
645
|
):
|
|
710
646
|
"""Select bones used as targets for the currently selected bones
|
|
711
647
|
|
|
712
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
713
648
|
:type execution_context: int | str | None
|
|
714
649
|
:type undo: bool | None
|
|
715
650
|
"""
|
|
716
651
|
|
|
717
652
|
def select_grouped(
|
|
718
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
719
653
|
execution_context: int | str | None = None,
|
|
720
654
|
undo: bool | None = None,
|
|
655
|
+
/,
|
|
721
656
|
*,
|
|
722
657
|
extend: bool | None = False,
|
|
723
658
|
type: typing.Literal["COLLECTION", "COLOR", "KEYINGSET"] | None = "COLLECTION",
|
|
724
659
|
):
|
|
725
660
|
"""Select all visible bones grouped by similar properties
|
|
726
661
|
|
|
727
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
728
662
|
:type execution_context: int | str | None
|
|
729
663
|
:type undo: bool | None
|
|
730
664
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -743,16 +677,15 @@ def select_grouped(
|
|
|
743
677
|
"""
|
|
744
678
|
|
|
745
679
|
def select_hierarchy(
|
|
746
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
747
680
|
execution_context: int | str | None = None,
|
|
748
681
|
undo: bool | None = None,
|
|
682
|
+
/,
|
|
749
683
|
*,
|
|
750
684
|
direction: typing.Literal["PARENT", "CHILD"] | None = "PARENT",
|
|
751
685
|
extend: bool | None = False,
|
|
752
686
|
):
|
|
753
687
|
"""Select immediate parent/children of selected bones
|
|
754
688
|
|
|
755
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
756
689
|
:type execution_context: int | str | None
|
|
757
690
|
:type undo: bool | None
|
|
758
691
|
:param direction: Direction
|
|
@@ -761,28 +694,22 @@ def select_hierarchy(
|
|
|
761
694
|
:type extend: bool | None
|
|
762
695
|
"""
|
|
763
696
|
|
|
764
|
-
def select_linked(
|
|
765
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
766
|
-
execution_context: int | str | None = None,
|
|
767
|
-
undo: bool | None = None,
|
|
768
|
-
):
|
|
697
|
+
def select_linked(execution_context: int | str | None = None, undo: bool | None = None):
|
|
769
698
|
"""Select all bones linked by parent/child connections to the current selection
|
|
770
699
|
|
|
771
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
772
700
|
:type execution_context: int | str | None
|
|
773
701
|
:type undo: bool | None
|
|
774
702
|
"""
|
|
775
703
|
|
|
776
704
|
def select_linked_pick(
|
|
777
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
778
705
|
execution_context: int | str | None = None,
|
|
779
706
|
undo: bool | None = None,
|
|
707
|
+
/,
|
|
780
708
|
*,
|
|
781
709
|
extend: bool | None = False,
|
|
782
710
|
):
|
|
783
711
|
"""Select bones linked by parent/child connections under the mouse cursor
|
|
784
712
|
|
|
785
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
786
713
|
:type execution_context: int | str | None
|
|
787
714
|
:type undo: bool | None
|
|
788
715
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -790,16 +717,15 @@ def select_linked_pick(
|
|
|
790
717
|
"""
|
|
791
718
|
|
|
792
719
|
def select_mirror(
|
|
793
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
794
720
|
execution_context: int | str | None = None,
|
|
795
721
|
undo: bool | None = None,
|
|
722
|
+
/,
|
|
796
723
|
*,
|
|
797
724
|
only_active: bool | None = False,
|
|
798
725
|
extend: bool | None = False,
|
|
799
726
|
):
|
|
800
727
|
"""Mirror the bone selection
|
|
801
728
|
|
|
802
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
803
729
|
:type execution_context: int | str | None
|
|
804
730
|
:type undo: bool | None
|
|
805
731
|
:param only_active: Active Only, Only operate on the active bone
|
|
@@ -808,100 +734,76 @@ def select_mirror(
|
|
|
808
734
|
:type extend: bool | None
|
|
809
735
|
"""
|
|
810
736
|
|
|
811
|
-
def select_parent(
|
|
812
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
813
|
-
execution_context: int | str | None = None,
|
|
814
|
-
undo: bool | None = None,
|
|
815
|
-
):
|
|
737
|
+
def select_parent(execution_context: int | str | None = None, undo: bool | None = None):
|
|
816
738
|
"""Select bones that are parents of the currently selected bones
|
|
817
739
|
|
|
818
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
819
740
|
:type execution_context: int | str | None
|
|
820
741
|
:type undo: bool | None
|
|
821
742
|
"""
|
|
822
743
|
|
|
823
744
|
def selection_set_add(
|
|
824
|
-
|
|
825
|
-
execution_context: int | str | None = None,
|
|
826
|
-
undo: bool | None = None,
|
|
745
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
827
746
|
):
|
|
828
747
|
"""Create a new empty Selection Set
|
|
829
748
|
|
|
830
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
831
749
|
:type execution_context: int | str | None
|
|
832
750
|
:type undo: bool | None
|
|
833
751
|
"""
|
|
834
752
|
|
|
835
753
|
def selection_set_add_and_assign(
|
|
836
|
-
|
|
837
|
-
execution_context: int | str | None = None,
|
|
838
|
-
undo: bool | None = None,
|
|
754
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
839
755
|
):
|
|
840
756
|
"""Create a new Selection Set with the currently selected bones
|
|
841
757
|
|
|
842
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
843
758
|
:type execution_context: int | str | None
|
|
844
759
|
:type undo: bool | None
|
|
845
760
|
"""
|
|
846
761
|
|
|
847
762
|
def selection_set_assign(
|
|
848
|
-
|
|
849
|
-
execution_context: int | str | None = None,
|
|
850
|
-
undo: bool | None = None,
|
|
763
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
851
764
|
):
|
|
852
765
|
"""Add selected bones to Selection Set
|
|
853
766
|
|
|
854
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
855
767
|
:type execution_context: int | str | None
|
|
856
768
|
:type undo: bool | None
|
|
857
769
|
"""
|
|
858
770
|
|
|
859
771
|
def selection_set_copy(
|
|
860
|
-
|
|
861
|
-
execution_context: int | str | None = None,
|
|
862
|
-
undo: bool | None = None,
|
|
772
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
863
773
|
):
|
|
864
774
|
"""Copy the selected Selection Set(s) to the clipboard
|
|
865
775
|
|
|
866
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
867
776
|
:type execution_context: int | str | None
|
|
868
777
|
:type undo: bool | None
|
|
869
778
|
"""
|
|
870
779
|
|
|
871
780
|
def selection_set_delete_all(
|
|
872
|
-
|
|
873
|
-
execution_context: int | str | None = None,
|
|
874
|
-
undo: bool | None = None,
|
|
781
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
875
782
|
):
|
|
876
783
|
"""Remove all Selection Sets from this Armature
|
|
877
784
|
|
|
878
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
879
785
|
:type execution_context: int | str | None
|
|
880
786
|
:type undo: bool | None
|
|
881
787
|
"""
|
|
882
788
|
|
|
883
789
|
def selection_set_deselect(
|
|
884
|
-
|
|
885
|
-
execution_context: int | str | None = None,
|
|
886
|
-
undo: bool | None = None,
|
|
790
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
887
791
|
):
|
|
888
792
|
"""Remove Selection Set bones from current selection
|
|
889
793
|
|
|
890
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
891
794
|
:type execution_context: int | str | None
|
|
892
795
|
:type undo: bool | None
|
|
893
796
|
"""
|
|
894
797
|
|
|
895
798
|
def selection_set_move(
|
|
896
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
897
799
|
execution_context: int | str | None = None,
|
|
898
800
|
undo: bool | None = None,
|
|
801
|
+
/,
|
|
899
802
|
*,
|
|
900
803
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
901
804
|
):
|
|
902
805
|
"""Move the active Selection Set up/down the list of sets
|
|
903
806
|
|
|
904
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
905
807
|
:type execution_context: int | str | None
|
|
906
808
|
:type undo: bool | None
|
|
907
809
|
:param direction: Move Direction, Direction to move the active Selection Set: UP (default) or DOWN
|
|
@@ -909,51 +811,41 @@ def selection_set_move(
|
|
|
909
811
|
"""
|
|
910
812
|
|
|
911
813
|
def selection_set_paste(
|
|
912
|
-
|
|
913
|
-
execution_context: int | str | None = None,
|
|
914
|
-
undo: bool | None = None,
|
|
814
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
915
815
|
):
|
|
916
816
|
"""Add new Selection Set(s) from the clipboard
|
|
917
817
|
|
|
918
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
919
818
|
:type execution_context: int | str | None
|
|
920
819
|
:type undo: bool | None
|
|
921
820
|
"""
|
|
922
821
|
|
|
923
822
|
def selection_set_remove(
|
|
924
|
-
|
|
925
|
-
execution_context: int | str | None = None,
|
|
926
|
-
undo: bool | None = None,
|
|
823
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
927
824
|
):
|
|
928
825
|
"""Remove a Selection Set from this Armature
|
|
929
826
|
|
|
930
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
931
827
|
:type execution_context: int | str | None
|
|
932
828
|
:type undo: bool | None
|
|
933
829
|
"""
|
|
934
830
|
|
|
935
831
|
def selection_set_remove_bones(
|
|
936
|
-
|
|
937
|
-
execution_context: int | str | None = None,
|
|
938
|
-
undo: bool | None = None,
|
|
832
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
939
833
|
):
|
|
940
834
|
"""Remove the selected bones from all Selection Sets
|
|
941
835
|
|
|
942
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
943
836
|
:type execution_context: int | str | None
|
|
944
837
|
:type undo: bool | None
|
|
945
838
|
"""
|
|
946
839
|
|
|
947
840
|
def selection_set_select(
|
|
948
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
949
841
|
execution_context: int | str | None = None,
|
|
950
842
|
undo: bool | None = None,
|
|
843
|
+
/,
|
|
951
844
|
*,
|
|
952
845
|
selection_set_index: int | None = -1,
|
|
953
846
|
):
|
|
954
847
|
"""Select the bones from this Selection Set
|
|
955
848
|
|
|
956
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
957
849
|
:type execution_context: int | str | None
|
|
958
850
|
:type undo: bool | None
|
|
959
851
|
:param selection_set_index: Selection Set Index, Which Selection Set to select; -1 uses the active Selection Set
|
|
@@ -961,39 +853,32 @@ def selection_set_select(
|
|
|
961
853
|
"""
|
|
962
854
|
|
|
963
855
|
def selection_set_unassign(
|
|
964
|
-
|
|
965
|
-
execution_context: int | str | None = None,
|
|
966
|
-
undo: bool | None = None,
|
|
856
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
967
857
|
):
|
|
968
858
|
"""Remove selected bones from Selection Set
|
|
969
859
|
|
|
970
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
971
860
|
:type execution_context: int | str | None
|
|
972
861
|
:type undo: bool | None
|
|
973
862
|
"""
|
|
974
863
|
|
|
975
864
|
def transforms_clear(
|
|
976
|
-
|
|
977
|
-
execution_context: int | str | None = None,
|
|
978
|
-
undo: bool | None = None,
|
|
865
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
979
866
|
):
|
|
980
867
|
"""Reset location, rotation, and scaling of selected bones to their default values
|
|
981
868
|
|
|
982
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
983
869
|
:type execution_context: int | str | None
|
|
984
870
|
:type undo: bool | None
|
|
985
871
|
"""
|
|
986
872
|
|
|
987
873
|
def user_transforms_clear(
|
|
988
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
989
874
|
execution_context: int | str | None = None,
|
|
990
875
|
undo: bool | None = None,
|
|
876
|
+
/,
|
|
991
877
|
*,
|
|
992
878
|
only_selected: bool | None = True,
|
|
993
879
|
):
|
|
994
880
|
"""Reset pose bone transforms to keyframed state
|
|
995
881
|
|
|
996
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
997
882
|
:type execution_context: int | str | None
|
|
998
883
|
:type undo: bool | None
|
|
999
884
|
:param only_selected: Only Selected, Only visible/selected bones
|
|
@@ -1001,13 +886,10 @@ def user_transforms_clear(
|
|
|
1001
886
|
"""
|
|
1002
887
|
|
|
1003
888
|
def visual_transform_apply(
|
|
1004
|
-
|
|
1005
|
-
execution_context: int | str | None = None,
|
|
1006
|
-
undo: bool | None = None,
|
|
889
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1007
890
|
):
|
|
1008
891
|
"""Apply final constrained position of pose bones to their transform
|
|
1009
892
|
|
|
1010
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1011
893
|
:type execution_context: int | str | None
|
|
1012
894
|
:type undo: bool | None
|
|
1013
895
|
"""
|