fake-bpy-module 20240927__py3-none-any.whl → 20240929__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
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- 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 +220 -200
- 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 +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/pose/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ import bpy.types
|
|
|
5
5
|
import bpy.typing
|
|
6
6
|
|
|
7
7
|
def armature_apply(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
8
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
9
|
execution_context: int | str | None = None,
|
|
10
10
|
undo: bool | None = None,
|
|
11
11
|
*,
|
|
@@ -13,7 +13,7 @@ def armature_apply(
|
|
|
13
13
|
):
|
|
14
14
|
"""Apply the current pose as the new rest pose
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
:param selected: Selected Only, Only apply the selected bones (with propagation to children)
|
|
@@ -21,7 +21,7 @@ def armature_apply(
|
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
23
|
def autoside_names(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
*,
|
|
@@ -29,7 +29,7 @@ def autoside_names(
|
|
|
29
29
|
):
|
|
30
30
|
"""Automatically renames the selected bones according to which side of the target axis they fall on
|
|
31
31
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
32
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
:param axis: Axis, Axis to tag names with
|
|
@@ -46,7 +46,7 @@ def autoside_names(
|
|
|
46
46
|
"""
|
|
47
47
|
|
|
48
48
|
def blend_to_neighbor(
|
|
49
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
49
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
50
50
|
execution_context: int | str | None = None,
|
|
51
51
|
undo: bool | None = None,
|
|
52
52
|
*,
|
|
@@ -59,7 +59,7 @@ def blend_to_neighbor(
|
|
|
59
59
|
):
|
|
60
60
|
"""Blend from current position to previous or next keyframe
|
|
61
61
|
|
|
62
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
62
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
63
63
|
:type execution_context: int | str | None
|
|
64
64
|
:type undo: bool | None
|
|
65
65
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -105,7 +105,7 @@ def blend_to_neighbor(
|
|
|
105
105
|
"""
|
|
106
106
|
|
|
107
107
|
def blend_with_rest(
|
|
108
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
108
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
109
109
|
execution_context: int | str | None = None,
|
|
110
110
|
undo: bool | None = None,
|
|
111
111
|
*,
|
|
@@ -118,7 +118,7 @@ def blend_with_rest(
|
|
|
118
118
|
):
|
|
119
119
|
"""Make the current pose more similar to, or further away from, the rest pose
|
|
120
120
|
|
|
121
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
121
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
122
122
|
:type execution_context: int | str | None
|
|
123
123
|
:type undo: bool | None
|
|
124
124
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -164,7 +164,7 @@ def blend_with_rest(
|
|
|
164
164
|
"""
|
|
165
165
|
|
|
166
166
|
def breakdown(
|
|
167
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
167
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
168
168
|
execution_context: int | str | None = None,
|
|
169
169
|
undo: bool | None = None,
|
|
170
170
|
*,
|
|
@@ -177,7 +177,7 @@ def breakdown(
|
|
|
177
177
|
):
|
|
178
178
|
"""Create a suitable breakdown pose on the current frame
|
|
179
179
|
|
|
180
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
180
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
181
181
|
:type execution_context: int | str | None
|
|
182
182
|
:type undo: bool | None
|
|
183
183
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -223,7 +223,7 @@ def breakdown(
|
|
|
223
223
|
"""
|
|
224
224
|
|
|
225
225
|
def constraint_add(
|
|
226
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
226
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
227
227
|
execution_context: int | str | None = None,
|
|
228
228
|
undo: bool | None = None,
|
|
229
229
|
*,
|
|
@@ -231,7 +231,7 @@ def constraint_add(
|
|
|
231
231
|
):
|
|
232
232
|
"""Add a constraint to the active bone
|
|
233
233
|
|
|
234
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
234
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
235
235
|
:type execution_context: int | str | None
|
|
236
236
|
:type undo: bool | None
|
|
237
237
|
:param type: Type
|
|
@@ -239,7 +239,7 @@ def constraint_add(
|
|
|
239
239
|
"""
|
|
240
240
|
|
|
241
241
|
def constraint_add_with_targets(
|
|
242
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
242
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
243
243
|
execution_context: int | str | None = None,
|
|
244
244
|
undo: bool | None = None,
|
|
245
245
|
*,
|
|
@@ -247,7 +247,7 @@ def constraint_add_with_targets(
|
|
|
247
247
|
):
|
|
248
248
|
"""Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones
|
|
249
249
|
|
|
250
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
250
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
251
251
|
:type execution_context: int | str | None
|
|
252
252
|
:type undo: bool | None
|
|
253
253
|
:param type: Type
|
|
@@ -255,43 +255,43 @@ def constraint_add_with_targets(
|
|
|
255
255
|
"""
|
|
256
256
|
|
|
257
257
|
def constraints_clear(
|
|
258
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
258
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
259
259
|
execution_context: int | str | None = None,
|
|
260
260
|
undo: bool | None = None,
|
|
261
261
|
):
|
|
262
262
|
"""Clear all constraints from the selected bones
|
|
263
263
|
|
|
264
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
264
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
265
265
|
:type execution_context: int | str | None
|
|
266
266
|
:type undo: bool | None
|
|
267
267
|
"""
|
|
268
268
|
|
|
269
269
|
def constraints_copy(
|
|
270
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
270
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
271
271
|
execution_context: int | str | None = None,
|
|
272
272
|
undo: bool | None = None,
|
|
273
273
|
):
|
|
274
274
|
"""Copy constraints to other selected bones
|
|
275
275
|
|
|
276
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
276
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
277
277
|
:type execution_context: int | str | None
|
|
278
278
|
:type undo: bool | None
|
|
279
279
|
"""
|
|
280
280
|
|
|
281
281
|
def copy(
|
|
282
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
282
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
283
283
|
execution_context: int | str | None = None,
|
|
284
284
|
undo: bool | None = None,
|
|
285
285
|
):
|
|
286
286
|
"""Copy the current pose of the selected bones to the internal clipboard
|
|
287
287
|
|
|
288
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
288
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
289
289
|
:type execution_context: int | str | None
|
|
290
290
|
:type undo: bool | None
|
|
291
291
|
"""
|
|
292
292
|
|
|
293
293
|
def flip_names(
|
|
294
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
294
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
295
295
|
execution_context: int | str | None = None,
|
|
296
296
|
undo: bool | None = None,
|
|
297
297
|
*,
|
|
@@ -299,7 +299,7 @@ def flip_names(
|
|
|
299
299
|
):
|
|
300
300
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
301
301
|
|
|
302
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
302
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
303
303
|
:type execution_context: int | str | None
|
|
304
304
|
:type undo: bool | None
|
|
305
305
|
: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,7 +307,7 @@ def flip_names(
|
|
|
307
307
|
"""
|
|
308
308
|
|
|
309
309
|
def hide(
|
|
310
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
310
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
311
311
|
execution_context: int | str | None = None,
|
|
312
312
|
undo: bool | None = None,
|
|
313
313
|
*,
|
|
@@ -315,7 +315,7 @@ def hide(
|
|
|
315
315
|
):
|
|
316
316
|
"""Tag selected bones to not be visible in Pose Mode
|
|
317
317
|
|
|
318
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
318
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
319
319
|
:type execution_context: int | str | None
|
|
320
320
|
:type undo: bool | None
|
|
321
321
|
:param unselected: Unselected
|
|
@@ -323,7 +323,7 @@ def hide(
|
|
|
323
323
|
"""
|
|
324
324
|
|
|
325
325
|
def ik_add(
|
|
326
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
326
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
327
327
|
execution_context: int | str | None = None,
|
|
328
328
|
undo: bool | None = None,
|
|
329
329
|
*,
|
|
@@ -331,7 +331,7 @@ def ik_add(
|
|
|
331
331
|
):
|
|
332
332
|
"""Add IK Constraint to the active Bone
|
|
333
333
|
|
|
334
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
334
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
335
335
|
:type execution_context: int | str | None
|
|
336
336
|
:type undo: bool | None
|
|
337
337
|
:param with_targets: With Targets, Assign IK Constraint with targets derived from the select bones/objects
|
|
@@ -339,31 +339,31 @@ def ik_add(
|
|
|
339
339
|
"""
|
|
340
340
|
|
|
341
341
|
def ik_clear(
|
|
342
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
342
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
343
343
|
execution_context: int | str | None = None,
|
|
344
344
|
undo: bool | None = None,
|
|
345
345
|
):
|
|
346
346
|
"""Remove all IK Constraints from selected bones
|
|
347
347
|
|
|
348
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
348
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
349
349
|
:type execution_context: int | str | None
|
|
350
350
|
:type undo: bool | None
|
|
351
351
|
"""
|
|
352
352
|
|
|
353
353
|
def loc_clear(
|
|
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
|
):
|
|
358
358
|
"""Reset locations of selected bones to their default values
|
|
359
359
|
|
|
360
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
360
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
361
361
|
:type execution_context: int | str | None
|
|
362
362
|
:type undo: bool | None
|
|
363
363
|
"""
|
|
364
364
|
|
|
365
365
|
def paste(
|
|
366
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
366
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
367
367
|
execution_context: int | str | None = None,
|
|
368
368
|
undo: bool | None = None,
|
|
369
369
|
*,
|
|
@@ -372,7 +372,7 @@ def paste(
|
|
|
372
372
|
):
|
|
373
373
|
"""Paste the stored pose on to the current pose
|
|
374
374
|
|
|
375
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
375
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
376
376
|
:type execution_context: int | str | None
|
|
377
377
|
:type undo: bool | None
|
|
378
378
|
:param flipped: Flipped on X-Axis, Paste the stored pose flipped on to current pose
|
|
@@ -382,7 +382,7 @@ def paste(
|
|
|
382
382
|
"""
|
|
383
383
|
|
|
384
384
|
def paths_calculate(
|
|
385
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
385
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
386
386
|
execution_context: int | str | None = None,
|
|
387
387
|
undo: bool | None = None,
|
|
388
388
|
*,
|
|
@@ -392,7 +392,7 @@ def paths_calculate(
|
|
|
392
392
|
):
|
|
393
393
|
"""Calculate paths for the selected bones
|
|
394
394
|
|
|
395
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
395
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
396
396
|
:type execution_context: int | str | None
|
|
397
397
|
:type undo: bool | None
|
|
398
398
|
:param display_type: Display type
|
|
@@ -404,7 +404,7 @@ def paths_calculate(
|
|
|
404
404
|
"""
|
|
405
405
|
|
|
406
406
|
def paths_clear(
|
|
407
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
407
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
408
408
|
execution_context: int | str | None = None,
|
|
409
409
|
undo: bool | None = None,
|
|
410
410
|
*,
|
|
@@ -412,7 +412,7 @@ def paths_clear(
|
|
|
412
412
|
):
|
|
413
413
|
"""Undocumented, consider contributing.
|
|
414
414
|
|
|
415
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
415
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
416
416
|
:type execution_context: int | str | None
|
|
417
417
|
:type undo: bool | None
|
|
418
418
|
:param only_selected: Only Selected, Only clear motion paths of selected bones
|
|
@@ -420,31 +420,31 @@ def paths_clear(
|
|
|
420
420
|
"""
|
|
421
421
|
|
|
422
422
|
def paths_range_update(
|
|
423
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
423
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
424
424
|
execution_context: int | str | None = None,
|
|
425
425
|
undo: bool | None = None,
|
|
426
426
|
):
|
|
427
427
|
"""Update frame range for motion paths from the Scene's current frame range
|
|
428
428
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
429
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
430
430
|
:type execution_context: int | str | None
|
|
431
431
|
:type undo: bool | None
|
|
432
432
|
"""
|
|
433
433
|
|
|
434
434
|
def paths_update(
|
|
435
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
435
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
436
436
|
execution_context: int | str | None = None,
|
|
437
437
|
undo: bool | None = None,
|
|
438
438
|
):
|
|
439
439
|
"""Recalculate paths for bones that already have them
|
|
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
|
"""
|
|
445
445
|
|
|
446
446
|
def propagate(
|
|
447
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
447
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
448
448
|
execution_context: int | str | None = None,
|
|
449
449
|
undo: bool | None = None,
|
|
450
450
|
*,
|
|
@@ -461,7 +461,7 @@ def propagate(
|
|
|
461
461
|
):
|
|
462
462
|
"""Copy selected aspects of the current pose to subsequent poses already keyframed
|
|
463
463
|
|
|
464
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
464
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
465
465
|
:type execution_context: int | str | None
|
|
466
466
|
:type undo: bool | None
|
|
467
467
|
:param mode: Terminate Mode, Method used to determine when to stop propagating pose to keyframes
|
|
@@ -489,7 +489,7 @@ def propagate(
|
|
|
489
489
|
"""
|
|
490
490
|
|
|
491
491
|
def push(
|
|
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
|
*,
|
|
@@ -502,7 +502,7 @@ def push(
|
|
|
502
502
|
):
|
|
503
503
|
"""Exaggerate the current pose in regards to the breakdown pose
|
|
504
504
|
|
|
505
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
505
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
506
506
|
:type execution_context: int | str | None
|
|
507
507
|
:type undo: bool | None
|
|
508
508
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -548,19 +548,19 @@ def push(
|
|
|
548
548
|
"""
|
|
549
549
|
|
|
550
550
|
def quaternions_flip(
|
|
551
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
551
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
552
552
|
execution_context: int | str | None = None,
|
|
553
553
|
undo: bool | None = None,
|
|
554
554
|
):
|
|
555
555
|
"""Flip quaternion values to achieve desired rotations, while maintaining the same orientations
|
|
556
556
|
|
|
557
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
557
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
558
558
|
:type execution_context: int | str | None
|
|
559
559
|
:type undo: bool | None
|
|
560
560
|
"""
|
|
561
561
|
|
|
562
562
|
def relax(
|
|
563
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
563
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
564
564
|
execution_context: int | str | None = None,
|
|
565
565
|
undo: bool | None = None,
|
|
566
566
|
*,
|
|
@@ -573,7 +573,7 @@ def relax(
|
|
|
573
573
|
):
|
|
574
574
|
"""Make the current pose more similar to its breakdown pose
|
|
575
575
|
|
|
576
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
576
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
577
577
|
:type execution_context: int | str | None
|
|
578
578
|
:type undo: bool | None
|
|
579
579
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
@@ -619,7 +619,7 @@ def relax(
|
|
|
619
619
|
"""
|
|
620
620
|
|
|
621
621
|
def reveal(
|
|
622
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
622
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
623
623
|
execution_context: int | str | None = None,
|
|
624
624
|
undo: bool | None = None,
|
|
625
625
|
*,
|
|
@@ -627,7 +627,7 @@ def reveal(
|
|
|
627
627
|
):
|
|
628
628
|
"""Reveal all bones hidden in Pose Mode
|
|
629
629
|
|
|
630
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
630
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
631
631
|
:type execution_context: int | str | None
|
|
632
632
|
:type undo: bool | None
|
|
633
633
|
:param select: Select
|
|
@@ -635,19 +635,19 @@ def reveal(
|
|
|
635
635
|
"""
|
|
636
636
|
|
|
637
637
|
def rot_clear(
|
|
638
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
638
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
639
639
|
execution_context: int | str | None = None,
|
|
640
640
|
undo: bool | None = None,
|
|
641
641
|
):
|
|
642
642
|
"""Reset rotations of selected bones to their default values
|
|
643
643
|
|
|
644
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
644
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
645
645
|
:type execution_context: int | str | None
|
|
646
646
|
:type undo: bool | None
|
|
647
647
|
"""
|
|
648
648
|
|
|
649
649
|
def rotation_mode_set(
|
|
650
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
650
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
651
651
|
execution_context: int | str | None = None,
|
|
652
652
|
undo: bool | None = None,
|
|
653
653
|
*,
|
|
@@ -655,7 +655,7 @@ def rotation_mode_set(
|
|
|
655
655
|
):
|
|
656
656
|
"""Set the rotation representation used by selected bones
|
|
657
657
|
|
|
658
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
658
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
659
659
|
:type execution_context: int | str | None
|
|
660
660
|
:type undo: bool | None
|
|
661
661
|
:param type: Rotation Mode
|
|
@@ -663,19 +663,19 @@ def rotation_mode_set(
|
|
|
663
663
|
"""
|
|
664
664
|
|
|
665
665
|
def scale_clear(
|
|
666
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
666
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
667
667
|
execution_context: int | str | None = None,
|
|
668
668
|
undo: bool | None = None,
|
|
669
669
|
):
|
|
670
670
|
"""Reset scaling of selected bones to their default values
|
|
671
671
|
|
|
672
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
672
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
673
673
|
:type execution_context: int | str | None
|
|
674
674
|
:type undo: bool | None
|
|
675
675
|
"""
|
|
676
676
|
|
|
677
677
|
def select_all(
|
|
678
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
678
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
679
679
|
execution_context: int | str | None = None,
|
|
680
680
|
undo: bool | None = None,
|
|
681
681
|
*,
|
|
@@ -683,7 +683,7 @@ def select_all(
|
|
|
683
683
|
):
|
|
684
684
|
"""Toggle selection status of all bones
|
|
685
685
|
|
|
686
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
686
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
687
687
|
:type execution_context: int | str | None
|
|
688
688
|
:type undo: bool | None
|
|
689
689
|
:param action: Action, Selection action to execute
|
|
@@ -703,19 +703,19 @@ def select_all(
|
|
|
703
703
|
"""
|
|
704
704
|
|
|
705
705
|
def select_constraint_target(
|
|
706
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
706
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
707
707
|
execution_context: int | str | None = None,
|
|
708
708
|
undo: bool | None = None,
|
|
709
709
|
):
|
|
710
710
|
"""Select bones used as targets for the currently selected bones
|
|
711
711
|
|
|
712
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
712
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
713
713
|
:type execution_context: int | str | None
|
|
714
714
|
:type undo: bool | None
|
|
715
715
|
"""
|
|
716
716
|
|
|
717
717
|
def select_grouped(
|
|
718
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
718
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
719
719
|
execution_context: int | str | None = None,
|
|
720
720
|
undo: bool | None = None,
|
|
721
721
|
*,
|
|
@@ -724,7 +724,7 @@ def select_grouped(
|
|
|
724
724
|
):
|
|
725
725
|
"""Select all visible bones grouped by similar properties
|
|
726
726
|
|
|
727
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
727
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
728
728
|
:type execution_context: int | str | None
|
|
729
729
|
:type undo: bool | None
|
|
730
730
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -743,7 +743,7 @@ def select_grouped(
|
|
|
743
743
|
"""
|
|
744
744
|
|
|
745
745
|
def select_hierarchy(
|
|
746
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
746
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
747
747
|
execution_context: int | str | None = None,
|
|
748
748
|
undo: bool | None = None,
|
|
749
749
|
*,
|
|
@@ -752,7 +752,7 @@ def select_hierarchy(
|
|
|
752
752
|
):
|
|
753
753
|
"""Select immediate parent/children of selected bones
|
|
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
|
:param direction: Direction
|
|
@@ -762,19 +762,19 @@ def select_hierarchy(
|
|
|
762
762
|
"""
|
|
763
763
|
|
|
764
764
|
def select_linked(
|
|
765
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
765
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
766
766
|
execution_context: int | str | None = None,
|
|
767
767
|
undo: bool | None = None,
|
|
768
768
|
):
|
|
769
769
|
"""Select all bones linked by parent/child connections to the current selection
|
|
770
770
|
|
|
771
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
771
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
772
772
|
:type execution_context: int | str | None
|
|
773
773
|
:type undo: bool | None
|
|
774
774
|
"""
|
|
775
775
|
|
|
776
776
|
def select_linked_pick(
|
|
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 select_linked_pick(
|
|
|
782
782
|
):
|
|
783
783
|
"""Select bones linked by parent/child connections under the mouse cursor
|
|
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 extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -790,7 +790,7 @@ def select_linked_pick(
|
|
|
790
790
|
"""
|
|
791
791
|
|
|
792
792
|
def select_mirror(
|
|
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
|
*,
|
|
@@ -799,7 +799,7 @@ def select_mirror(
|
|
|
799
799
|
):
|
|
800
800
|
"""Mirror the bone selection
|
|
801
801
|
|
|
802
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
802
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
803
803
|
:type execution_context: int | str | None
|
|
804
804
|
:type undo: bool | None
|
|
805
805
|
:param only_active: Active Only, Only operate on the active bone
|
|
@@ -809,91 +809,91 @@ def select_mirror(
|
|
|
809
809
|
"""
|
|
810
810
|
|
|
811
811
|
def select_parent(
|
|
812
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
812
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
813
813
|
execution_context: int | str | None = None,
|
|
814
814
|
undo: bool | None = None,
|
|
815
815
|
):
|
|
816
816
|
"""Select bones that are parents of the currently selected bones
|
|
817
817
|
|
|
818
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
818
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
819
819
|
:type execution_context: int | str | None
|
|
820
820
|
:type undo: bool | None
|
|
821
821
|
"""
|
|
822
822
|
|
|
823
823
|
def selection_set_add(
|
|
824
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
824
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
825
825
|
execution_context: int | str | None = None,
|
|
826
826
|
undo: bool | None = None,
|
|
827
827
|
):
|
|
828
828
|
"""Create a new empty Selection Set
|
|
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
|
"""
|
|
834
834
|
|
|
835
835
|
def selection_set_add_and_assign(
|
|
836
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
836
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
837
837
|
execution_context: int | str | None = None,
|
|
838
838
|
undo: bool | None = None,
|
|
839
839
|
):
|
|
840
840
|
"""Create a new Selection Set with the currently selected bones
|
|
841
841
|
|
|
842
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
842
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
843
843
|
:type execution_context: int | str | None
|
|
844
844
|
:type undo: bool | None
|
|
845
845
|
"""
|
|
846
846
|
|
|
847
847
|
def selection_set_assign(
|
|
848
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
848
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
849
849
|
execution_context: int | str | None = None,
|
|
850
850
|
undo: bool | None = None,
|
|
851
851
|
):
|
|
852
852
|
"""Add selected bones to Selection Set
|
|
853
853
|
|
|
854
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
854
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
855
855
|
:type execution_context: int | str | None
|
|
856
856
|
:type undo: bool | None
|
|
857
857
|
"""
|
|
858
858
|
|
|
859
859
|
def selection_set_copy(
|
|
860
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
860
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
861
861
|
execution_context: int | str | None = None,
|
|
862
862
|
undo: bool | None = None,
|
|
863
863
|
):
|
|
864
864
|
"""Copy the selected Selection Set(s) to the clipboard
|
|
865
865
|
|
|
866
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
866
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
867
867
|
:type execution_context: int | str | None
|
|
868
868
|
:type undo: bool | None
|
|
869
869
|
"""
|
|
870
870
|
|
|
871
871
|
def selection_set_delete_all(
|
|
872
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
872
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
873
873
|
execution_context: int | str | None = None,
|
|
874
874
|
undo: bool | None = None,
|
|
875
875
|
):
|
|
876
876
|
"""Remove all Selection Sets from this Armature
|
|
877
877
|
|
|
878
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
878
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
879
879
|
:type execution_context: int | str | None
|
|
880
880
|
:type undo: bool | None
|
|
881
881
|
"""
|
|
882
882
|
|
|
883
883
|
def selection_set_deselect(
|
|
884
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
884
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
885
885
|
execution_context: int | str | None = None,
|
|
886
886
|
undo: bool | None = None,
|
|
887
887
|
):
|
|
888
888
|
"""Remove Selection Set bones from current selection
|
|
889
889
|
|
|
890
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
890
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
891
891
|
:type execution_context: int | str | None
|
|
892
892
|
:type undo: bool | None
|
|
893
893
|
"""
|
|
894
894
|
|
|
895
895
|
def selection_set_move(
|
|
896
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
896
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
897
897
|
execution_context: int | str | None = None,
|
|
898
898
|
undo: bool | None = None,
|
|
899
899
|
*,
|
|
@@ -901,7 +901,7 @@ def selection_set_move(
|
|
|
901
901
|
):
|
|
902
902
|
"""Move the active Selection Set up/down the list of sets
|
|
903
903
|
|
|
904
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
904
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
905
905
|
:type execution_context: int | str | None
|
|
906
906
|
:type undo: bool | None
|
|
907
907
|
:param direction: Move Direction, Direction to move the active Selection Set: UP (default) or DOWN
|
|
@@ -909,43 +909,43 @@ def selection_set_move(
|
|
|
909
909
|
"""
|
|
910
910
|
|
|
911
911
|
def selection_set_paste(
|
|
912
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
912
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
913
913
|
execution_context: int | str | None = None,
|
|
914
914
|
undo: bool | None = None,
|
|
915
915
|
):
|
|
916
916
|
"""Add new Selection Set(s) from the clipboard
|
|
917
917
|
|
|
918
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
918
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
919
919
|
:type execution_context: int | str | None
|
|
920
920
|
:type undo: bool | None
|
|
921
921
|
"""
|
|
922
922
|
|
|
923
923
|
def selection_set_remove(
|
|
924
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
924
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
925
925
|
execution_context: int | str | None = None,
|
|
926
926
|
undo: bool | None = None,
|
|
927
927
|
):
|
|
928
928
|
"""Remove a Selection Set from this Armature
|
|
929
929
|
|
|
930
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
930
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
931
931
|
:type execution_context: int | str | None
|
|
932
932
|
:type undo: bool | None
|
|
933
933
|
"""
|
|
934
934
|
|
|
935
935
|
def selection_set_remove_bones(
|
|
936
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
936
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
937
937
|
execution_context: int | str | None = None,
|
|
938
938
|
undo: bool | None = None,
|
|
939
939
|
):
|
|
940
940
|
"""Remove the selected bones from all Selection Sets
|
|
941
941
|
|
|
942
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
942
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
943
943
|
:type execution_context: int | str | None
|
|
944
944
|
:type undo: bool | None
|
|
945
945
|
"""
|
|
946
946
|
|
|
947
947
|
def selection_set_select(
|
|
948
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
948
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
949
949
|
execution_context: int | str | None = None,
|
|
950
950
|
undo: bool | None = None,
|
|
951
951
|
*,
|
|
@@ -953,7 +953,7 @@ def selection_set_select(
|
|
|
953
953
|
):
|
|
954
954
|
"""Select the bones from this Selection Set
|
|
955
955
|
|
|
956
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
956
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
957
957
|
:type execution_context: int | str | None
|
|
958
958
|
:type undo: bool | None
|
|
959
959
|
:param selection_set_index: Selection Set Index, Which Selection Set to select; -1 uses the active Selection Set
|
|
@@ -961,31 +961,31 @@ def selection_set_select(
|
|
|
961
961
|
"""
|
|
962
962
|
|
|
963
963
|
def selection_set_unassign(
|
|
964
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
964
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
965
965
|
execution_context: int | str | None = None,
|
|
966
966
|
undo: bool | None = None,
|
|
967
967
|
):
|
|
968
968
|
"""Remove selected bones from Selection Set
|
|
969
969
|
|
|
970
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
970
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
971
971
|
:type execution_context: int | str | None
|
|
972
972
|
:type undo: bool | None
|
|
973
973
|
"""
|
|
974
974
|
|
|
975
975
|
def transforms_clear(
|
|
976
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
976
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
977
977
|
execution_context: int | str | None = None,
|
|
978
978
|
undo: bool | None = None,
|
|
979
979
|
):
|
|
980
980
|
"""Reset location, rotation, and scaling of selected bones to their default values
|
|
981
981
|
|
|
982
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
982
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
983
983
|
:type execution_context: int | str | None
|
|
984
984
|
:type undo: bool | None
|
|
985
985
|
"""
|
|
986
986
|
|
|
987
987
|
def user_transforms_clear(
|
|
988
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
988
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
989
989
|
execution_context: int | str | None = None,
|
|
990
990
|
undo: bool | None = None,
|
|
991
991
|
*,
|
|
@@ -993,7 +993,7 @@ def user_transforms_clear(
|
|
|
993
993
|
):
|
|
994
994
|
"""Reset pose bone transforms to keyframed state
|
|
995
995
|
|
|
996
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
996
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
997
997
|
:type execution_context: int | str | None
|
|
998
998
|
:type undo: bool | None
|
|
999
999
|
:param only_selected: Only Selected, Only visible/selected bones
|
|
@@ -1001,13 +1001,13 @@ def user_transforms_clear(
|
|
|
1001
1001
|
"""
|
|
1002
1002
|
|
|
1003
1003
|
def visual_transform_apply(
|
|
1004
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1004
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1005
1005
|
execution_context: int | str | None = None,
|
|
1006
1006
|
undo: bool | None = None,
|
|
1007
1007
|
):
|
|
1008
1008
|
"""Apply final constrained position of pose bones to their transform
|
|
1009
1009
|
|
|
1010
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1010
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1011
1011
|
:type execution_context: int | str | None
|
|
1012
1012
|
:type undo: bool | None
|
|
1013
1013
|
"""
|