fake-bpy-module 20240619__py3-none-any.whl → 20240621__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/space_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +10 -10
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +901 -798
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1017 -844
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +642 -580
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1814 -1804
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +30115 -30082
- {fake_bpy_module-20240619.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240619.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +78 -78
- {fake_bpy_module-20240619.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240619.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/pose/__init__.pyi
CHANGED
|
@@ -10,7 +10,7 @@ def armature_apply(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
selected: bool |
|
|
13
|
+
selected: bool | None = False,
|
|
14
14
|
):
|
|
15
15
|
"""Apply the current pose as the new rest pose
|
|
16
16
|
|
|
@@ -18,7 +18,7 @@ def armature_apply(
|
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
:param selected: Selected Only, Only apply the selected bones (with propagation to children)
|
|
21
|
-
:type selected: bool |
|
|
21
|
+
:type selected: bool | None
|
|
22
22
|
"""
|
|
23
23
|
|
|
24
24
|
...
|
|
@@ -55,9 +55,9 @@ def blend_to_neighbor(
|
|
|
55
55
|
execution_context: int | str | None = None,
|
|
56
56
|
undo: bool | None = None,
|
|
57
57
|
*,
|
|
58
|
-
factor:
|
|
59
|
-
prev_frame:
|
|
60
|
-
next_frame:
|
|
58
|
+
factor: float | None = 0.5,
|
|
59
|
+
prev_frame: int | None = 0,
|
|
60
|
+
next_frame: int | None = 0,
|
|
61
61
|
channels: str | None = "ALL",
|
|
62
62
|
axis_lock: str | None = "FREE",
|
|
63
63
|
):
|
|
@@ -67,11 +67,11 @@ def blend_to_neighbor(
|
|
|
67
67
|
:type execution_context: int | str | None
|
|
68
68
|
:type undo: bool | None
|
|
69
69
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
70
|
-
:type factor:
|
|
70
|
+
:type factor: float | None
|
|
71
71
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
72
|
-
:type prev_frame:
|
|
72
|
+
:type prev_frame: int | None
|
|
73
73
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
74
|
-
:type next_frame:
|
|
74
|
+
:type next_frame: int | None
|
|
75
75
|
:param channels: Channels, Set of properties that are affected
|
|
76
76
|
|
|
77
77
|
ALL
|
|
@@ -115,9 +115,9 @@ def blend_with_rest(
|
|
|
115
115
|
execution_context: int | str | None = None,
|
|
116
116
|
undo: bool | None = None,
|
|
117
117
|
*,
|
|
118
|
-
factor:
|
|
119
|
-
prev_frame:
|
|
120
|
-
next_frame:
|
|
118
|
+
factor: float | None = 0.5,
|
|
119
|
+
prev_frame: int | None = 0,
|
|
120
|
+
next_frame: int | None = 0,
|
|
121
121
|
channels: str | None = "ALL",
|
|
122
122
|
axis_lock: str | None = "FREE",
|
|
123
123
|
):
|
|
@@ -127,11 +127,11 @@ def blend_with_rest(
|
|
|
127
127
|
:type execution_context: int | str | None
|
|
128
128
|
:type undo: bool | None
|
|
129
129
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
130
|
-
:type factor:
|
|
130
|
+
:type factor: float | None
|
|
131
131
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
132
|
-
:type prev_frame:
|
|
132
|
+
:type prev_frame: int | None
|
|
133
133
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
134
|
-
:type next_frame:
|
|
134
|
+
:type next_frame: int | None
|
|
135
135
|
:param channels: Channels, Set of properties that are affected
|
|
136
136
|
|
|
137
137
|
ALL
|
|
@@ -175,9 +175,9 @@ def breakdown(
|
|
|
175
175
|
execution_context: int | str | None = None,
|
|
176
176
|
undo: bool | None = None,
|
|
177
177
|
*,
|
|
178
|
-
factor:
|
|
179
|
-
prev_frame:
|
|
180
|
-
next_frame:
|
|
178
|
+
factor: float | None = 0.5,
|
|
179
|
+
prev_frame: int | None = 0,
|
|
180
|
+
next_frame: int | None = 0,
|
|
181
181
|
channels: str | None = "ALL",
|
|
182
182
|
axis_lock: str | None = "FREE",
|
|
183
183
|
):
|
|
@@ -187,11 +187,11 @@ def breakdown(
|
|
|
187
187
|
:type execution_context: int | str | None
|
|
188
188
|
:type undo: bool | None
|
|
189
189
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
190
|
-
:type factor:
|
|
190
|
+
:type factor: float | None
|
|
191
191
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
192
|
-
:type prev_frame:
|
|
192
|
+
:type prev_frame: int | None
|
|
193
193
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
194
|
-
:type next_frame:
|
|
194
|
+
:type next_frame: int | None
|
|
195
195
|
:param channels: Channels, Set of properties that are affected
|
|
196
196
|
|
|
197
197
|
ALL
|
|
@@ -313,7 +313,7 @@ def flip_names(
|
|
|
313
313
|
execution_context: int | str | None = None,
|
|
314
314
|
undo: bool | None = None,
|
|
315
315
|
*,
|
|
316
|
-
do_strip_numbers: bool |
|
|
316
|
+
do_strip_numbers: bool | None = False,
|
|
317
317
|
):
|
|
318
318
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
319
319
|
|
|
@@ -321,7 +321,7 @@ def flip_names(
|
|
|
321
321
|
:type execution_context: int | str | None
|
|
322
322
|
:type undo: bool | None
|
|
323
323
|
: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
|
|
324
|
-
:type do_strip_numbers: bool |
|
|
324
|
+
:type do_strip_numbers: bool | None
|
|
325
325
|
"""
|
|
326
326
|
|
|
327
327
|
...
|
|
@@ -331,7 +331,7 @@ def hide(
|
|
|
331
331
|
execution_context: int | str | None = None,
|
|
332
332
|
undo: bool | None = None,
|
|
333
333
|
*,
|
|
334
|
-
unselected: bool |
|
|
334
|
+
unselected: bool | None = False,
|
|
335
335
|
):
|
|
336
336
|
"""Tag selected bones to not be visible in Pose Mode
|
|
337
337
|
|
|
@@ -339,7 +339,7 @@ def hide(
|
|
|
339
339
|
:type execution_context: int | str | None
|
|
340
340
|
:type undo: bool | None
|
|
341
341
|
:param unselected: Unselected
|
|
342
|
-
:type unselected: bool |
|
|
342
|
+
:type unselected: bool | None
|
|
343
343
|
"""
|
|
344
344
|
|
|
345
345
|
...
|
|
@@ -349,7 +349,7 @@ def ik_add(
|
|
|
349
349
|
execution_context: int | str | None = None,
|
|
350
350
|
undo: bool | None = None,
|
|
351
351
|
*,
|
|
352
|
-
with_targets: bool |
|
|
352
|
+
with_targets: bool | None = True,
|
|
353
353
|
):
|
|
354
354
|
"""Add IK Constraint to the active Bone
|
|
355
355
|
|
|
@@ -357,7 +357,7 @@ def ik_add(
|
|
|
357
357
|
:type execution_context: int | str | None
|
|
358
358
|
:type undo: bool | None
|
|
359
359
|
:param with_targets: With Targets, Assign IK Constraint with targets derived from the select bones/objects
|
|
360
|
-
:type with_targets: bool |
|
|
360
|
+
:type with_targets: bool | None
|
|
361
361
|
"""
|
|
362
362
|
|
|
363
363
|
...
|
|
@@ -395,8 +395,8 @@ def paste(
|
|
|
395
395
|
execution_context: int | str | None = None,
|
|
396
396
|
undo: bool | None = None,
|
|
397
397
|
*,
|
|
398
|
-
flipped: bool |
|
|
399
|
-
selected_mask: bool |
|
|
398
|
+
flipped: bool | None = False,
|
|
399
|
+
selected_mask: bool | None = False,
|
|
400
400
|
):
|
|
401
401
|
"""Paste the stored pose on to the current pose
|
|
402
402
|
|
|
@@ -404,9 +404,9 @@ def paste(
|
|
|
404
404
|
:type execution_context: int | str | None
|
|
405
405
|
:type undo: bool | None
|
|
406
406
|
:param flipped: Flipped on X-Axis, Paste the stored pose flipped on to current pose
|
|
407
|
-
:type flipped: bool |
|
|
407
|
+
:type flipped: bool | None
|
|
408
408
|
:param selected_mask: On Selected Only, Only paste the stored pose on to selected bones in the current pose
|
|
409
|
-
:type selected_mask: bool |
|
|
409
|
+
:type selected_mask: bool | None
|
|
410
410
|
"""
|
|
411
411
|
|
|
412
412
|
...
|
|
@@ -440,7 +440,7 @@ def paths_clear(
|
|
|
440
440
|
execution_context: int | str | None = None,
|
|
441
441
|
undo: bool | None = None,
|
|
442
442
|
*,
|
|
443
|
-
only_selected: bool |
|
|
443
|
+
only_selected: bool | None = False,
|
|
444
444
|
):
|
|
445
445
|
"""Undocumented, consider contributing.
|
|
446
446
|
|
|
@@ -448,7 +448,7 @@ def paths_clear(
|
|
|
448
448
|
:type execution_context: int | str | None
|
|
449
449
|
:type undo: bool | None
|
|
450
450
|
:param only_selected: Only Selected, Only clear motion paths of selected bones
|
|
451
|
-
:type only_selected: bool |
|
|
451
|
+
:type only_selected: bool | None
|
|
452
452
|
"""
|
|
453
453
|
|
|
454
454
|
...
|
|
@@ -487,7 +487,7 @@ def propagate(
|
|
|
487
487
|
undo: bool | None = None,
|
|
488
488
|
*,
|
|
489
489
|
mode: str | None = "NEXT_KEY",
|
|
490
|
-
end_frame:
|
|
490
|
+
end_frame: float | None = 250.0,
|
|
491
491
|
):
|
|
492
492
|
"""Copy selected aspects of the current pose to subsequent poses already keyframed
|
|
493
493
|
|
|
@@ -515,7 +515,7 @@ def propagate(
|
|
|
515
515
|
On Selected Markers -- Propagate pose to all keyframes occurring on frames with Scene Markers after the current frame.
|
|
516
516
|
:type mode: str | None
|
|
517
517
|
:param end_frame: End Frame, Frame to stop propagating frames to (for 'Before Frame' mode)
|
|
518
|
-
:type end_frame:
|
|
518
|
+
:type end_frame: float | None
|
|
519
519
|
"""
|
|
520
520
|
|
|
521
521
|
...
|
|
@@ -525,9 +525,9 @@ def push(
|
|
|
525
525
|
execution_context: int | str | None = None,
|
|
526
526
|
undo: bool | None = None,
|
|
527
527
|
*,
|
|
528
|
-
factor:
|
|
529
|
-
prev_frame:
|
|
530
|
-
next_frame:
|
|
528
|
+
factor: float | None = 0.5,
|
|
529
|
+
prev_frame: int | None = 0,
|
|
530
|
+
next_frame: int | None = 0,
|
|
531
531
|
channels: str | None = "ALL",
|
|
532
532
|
axis_lock: str | None = "FREE",
|
|
533
533
|
):
|
|
@@ -537,11 +537,11 @@ def push(
|
|
|
537
537
|
:type execution_context: int | str | None
|
|
538
538
|
:type undo: bool | None
|
|
539
539
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
540
|
-
:type factor:
|
|
540
|
+
:type factor: float | None
|
|
541
541
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
542
|
-
:type prev_frame:
|
|
542
|
+
:type prev_frame: int | None
|
|
543
543
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
544
|
-
:type next_frame:
|
|
544
|
+
:type next_frame: int | None
|
|
545
545
|
:param channels: Channels, Set of properties that are affected
|
|
546
546
|
|
|
547
547
|
ALL
|
|
@@ -599,9 +599,9 @@ def relax(
|
|
|
599
599
|
execution_context: int | str | None = None,
|
|
600
600
|
undo: bool | None = None,
|
|
601
601
|
*,
|
|
602
|
-
factor:
|
|
603
|
-
prev_frame:
|
|
604
|
-
next_frame:
|
|
602
|
+
factor: float | None = 0.5,
|
|
603
|
+
prev_frame: int | None = 0,
|
|
604
|
+
next_frame: int | None = 0,
|
|
605
605
|
channels: str | None = "ALL",
|
|
606
606
|
axis_lock: str | None = "FREE",
|
|
607
607
|
):
|
|
@@ -611,11 +611,11 @@ def relax(
|
|
|
611
611
|
:type execution_context: int | str | None
|
|
612
612
|
:type undo: bool | None
|
|
613
613
|
:param factor: Factor, Weighting factor for which keyframe is favored more
|
|
614
|
-
:type factor:
|
|
614
|
+
:type factor: float | None
|
|
615
615
|
:param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
|
|
616
|
-
:type prev_frame:
|
|
616
|
+
:type prev_frame: int | None
|
|
617
617
|
:param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
|
|
618
|
-
:type next_frame:
|
|
618
|
+
:type next_frame: int | None
|
|
619
619
|
:param channels: Channels, Set of properties that are affected
|
|
620
620
|
|
|
621
621
|
ALL
|
|
@@ -659,7 +659,7 @@ def reveal(
|
|
|
659
659
|
execution_context: int | str | None = None,
|
|
660
660
|
undo: bool | None = None,
|
|
661
661
|
*,
|
|
662
|
-
select: bool |
|
|
662
|
+
select: bool | None = True,
|
|
663
663
|
):
|
|
664
664
|
"""Reveal all bones hidden in Pose Mode
|
|
665
665
|
|
|
@@ -667,7 +667,7 @@ def reveal(
|
|
|
667
667
|
:type execution_context: int | str | None
|
|
668
668
|
:type undo: bool | None
|
|
669
669
|
:param select: Select
|
|
670
|
-
:type select: bool |
|
|
670
|
+
:type select: bool | None
|
|
671
671
|
"""
|
|
672
672
|
|
|
673
673
|
...
|
|
@@ -767,7 +767,7 @@ def select_grouped(
|
|
|
767
767
|
execution_context: int | str | None = None,
|
|
768
768
|
undo: bool | None = None,
|
|
769
769
|
*,
|
|
770
|
-
extend: bool |
|
|
770
|
+
extend: bool | None = False,
|
|
771
771
|
type: str | None = "COLLECTION",
|
|
772
772
|
):
|
|
773
773
|
"""Select all visible bones grouped by similar properties
|
|
@@ -776,7 +776,7 @@ def select_grouped(
|
|
|
776
776
|
:type execution_context: int | str | None
|
|
777
777
|
:type undo: bool | None
|
|
778
778
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
779
|
-
:type extend: bool |
|
|
779
|
+
:type extend: bool | None
|
|
780
780
|
:param type: Type
|
|
781
781
|
|
|
782
782
|
COLLECTION
|
|
@@ -798,7 +798,7 @@ def select_hierarchy(
|
|
|
798
798
|
undo: bool | None = None,
|
|
799
799
|
*,
|
|
800
800
|
direction: str | None = "PARENT",
|
|
801
|
-
extend: bool |
|
|
801
|
+
extend: bool | None = False,
|
|
802
802
|
):
|
|
803
803
|
"""Select immediate parent/children of selected bones
|
|
804
804
|
|
|
@@ -808,7 +808,7 @@ def select_hierarchy(
|
|
|
808
808
|
:param direction: Direction
|
|
809
809
|
:type direction: str | None
|
|
810
810
|
:param extend: Extend, Extend the selection
|
|
811
|
-
:type extend: bool |
|
|
811
|
+
:type extend: bool | None
|
|
812
812
|
"""
|
|
813
813
|
|
|
814
814
|
...
|
|
@@ -832,7 +832,7 @@ def select_linked_pick(
|
|
|
832
832
|
execution_context: int | str | None = None,
|
|
833
833
|
undo: bool | None = None,
|
|
834
834
|
*,
|
|
835
|
-
extend: bool |
|
|
835
|
+
extend: bool | None = False,
|
|
836
836
|
):
|
|
837
837
|
"""Select bones linked by parent/child connections under the mouse cursor
|
|
838
838
|
|
|
@@ -840,7 +840,7 @@ def select_linked_pick(
|
|
|
840
840
|
:type execution_context: int | str | None
|
|
841
841
|
:type undo: bool | None
|
|
842
842
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
843
|
-
:type extend: bool |
|
|
843
|
+
:type extend: bool | None
|
|
844
844
|
"""
|
|
845
845
|
|
|
846
846
|
...
|
|
@@ -850,8 +850,8 @@ def select_mirror(
|
|
|
850
850
|
execution_context: int | str | None = None,
|
|
851
851
|
undo: bool | None = None,
|
|
852
852
|
*,
|
|
853
|
-
only_active: bool |
|
|
854
|
-
extend: bool |
|
|
853
|
+
only_active: bool | None = False,
|
|
854
|
+
extend: bool | None = False,
|
|
855
855
|
):
|
|
856
856
|
"""Mirror the bone selection
|
|
857
857
|
|
|
@@ -859,9 +859,9 @@ def select_mirror(
|
|
|
859
859
|
:type execution_context: int | str | None
|
|
860
860
|
:type undo: bool | None
|
|
861
861
|
:param only_active: Active Only, Only operate on the active bone
|
|
862
|
-
:type only_active: bool |
|
|
862
|
+
:type only_active: bool | None
|
|
863
863
|
:param extend: Extend, Extend the selection
|
|
864
|
-
:type extend: bool |
|
|
864
|
+
:type extend: bool | None
|
|
865
865
|
"""
|
|
866
866
|
|
|
867
867
|
...
|
|
@@ -899,7 +899,7 @@ def user_transforms_clear(
|
|
|
899
899
|
execution_context: int | str | None = None,
|
|
900
900
|
undo: bool | None = None,
|
|
901
901
|
*,
|
|
902
|
-
only_selected: bool |
|
|
902
|
+
only_selected: bool | None = True,
|
|
903
903
|
):
|
|
904
904
|
"""Reset pose bone transforms to keyframed state
|
|
905
905
|
|
|
@@ -907,7 +907,7 @@ def user_transforms_clear(
|
|
|
907
907
|
:type execution_context: int | str | None
|
|
908
908
|
:type undo: bool | None
|
|
909
909
|
:param only_selected: Only Selected, Only visible/selected bones
|
|
910
|
-
:type only_selected: bool |
|
|
910
|
+
:type only_selected: bool | None
|
|
911
911
|
"""
|
|
912
912
|
|
|
913
913
|
...
|
bpy/ops/poselib/__init__.pyi
CHANGED
|
@@ -10,8 +10,8 @@ def apply_pose_asset(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
blend_factor:
|
|
14
|
-
flipped: bool |
|
|
13
|
+
blend_factor: float | None = 1.0,
|
|
14
|
+
flipped: bool | None = False,
|
|
15
15
|
):
|
|
16
16
|
"""Apply the given Pose Action to the rig
|
|
17
17
|
|
|
@@ -19,9 +19,9 @@ def apply_pose_asset(
|
|
|
19
19
|
:type execution_context: int | str | None
|
|
20
20
|
:type undo: bool | None
|
|
21
21
|
:param blend_factor: Blend Factor, Amount that the pose is applied on top of the existing poses. A negative value will subtract the pose instead of adding it
|
|
22
|
-
:type blend_factor:
|
|
22
|
+
:type blend_factor: float | None
|
|
23
23
|
:param flipped: Apply Flipped, When enabled, applies the pose flipped over the X-axis
|
|
24
|
-
:type flipped: bool |
|
|
24
|
+
:type flipped: bool | None
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
...
|
|
@@ -31,9 +31,9 @@ def blend_pose_asset(
|
|
|
31
31
|
execution_context: int | str | None = None,
|
|
32
32
|
undo: bool | None = None,
|
|
33
33
|
*,
|
|
34
|
-
blend_factor:
|
|
35
|
-
flipped: bool |
|
|
36
|
-
release_confirm: bool |
|
|
34
|
+
blend_factor: float | None = 0.0,
|
|
35
|
+
flipped: bool | None = False,
|
|
36
|
+
release_confirm: bool | None = False,
|
|
37
37
|
):
|
|
38
38
|
"""Blend the given Pose Action to the rig
|
|
39
39
|
|
|
@@ -41,11 +41,11 @@ def blend_pose_asset(
|
|
|
41
41
|
:type execution_context: int | str | None
|
|
42
42
|
:type undo: bool | None
|
|
43
43
|
:param blend_factor: Blend Factor, Amount that the pose is applied on top of the existing poses. A negative value will subtract the pose instead of adding it
|
|
44
|
-
:type blend_factor:
|
|
44
|
+
:type blend_factor: float | None
|
|
45
45
|
:param flipped: Apply Flipped, When enabled, applies the pose flipped over the X-axis
|
|
46
|
-
:type flipped: bool |
|
|
46
|
+
:type flipped: bool | None
|
|
47
47
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
48
|
-
:type release_confirm: bool |
|
|
48
|
+
:type release_confirm: bool | None
|
|
49
49
|
"""
|
|
50
50
|
|
|
51
51
|
...
|
|
@@ -97,8 +97,8 @@ def create_pose_asset(
|
|
|
97
97
|
execution_context: int | str | None = None,
|
|
98
98
|
undo: bool | None = None,
|
|
99
99
|
*,
|
|
100
|
-
pose_name: str
|
|
101
|
-
activate_new_action: bool |
|
|
100
|
+
pose_name: str = "",
|
|
101
|
+
activate_new_action: bool | None = True,
|
|
102
102
|
):
|
|
103
103
|
"""Create a new Action that contains the pose of the selected bones, and mark it as Asset. The asset will be stored in the current blend file
|
|
104
104
|
|
|
@@ -106,9 +106,9 @@ def create_pose_asset(
|
|
|
106
106
|
:type execution_context: int | str | None
|
|
107
107
|
:type undo: bool | None
|
|
108
108
|
:param pose_name: Pose Name
|
|
109
|
-
:type pose_name: str
|
|
109
|
+
:type pose_name: str
|
|
110
110
|
:param activate_new_action: Activate New Action
|
|
111
|
-
:type activate_new_action: bool |
|
|
111
|
+
:type activate_new_action: bool | None
|
|
112
112
|
"""
|
|
113
113
|
|
|
114
114
|
...
|
|
@@ -132,8 +132,8 @@ def pose_asset_select_bones(
|
|
|
132
132
|
execution_context: int | str | None = None,
|
|
133
133
|
undo: bool | None = None,
|
|
134
134
|
*,
|
|
135
|
-
select: bool |
|
|
136
|
-
flipped: bool |
|
|
135
|
+
select: bool | None = True,
|
|
136
|
+
flipped: bool | None = False,
|
|
137
137
|
):
|
|
138
138
|
"""Select those bones that are used in this pose
|
|
139
139
|
|
|
@@ -141,9 +141,9 @@ def pose_asset_select_bones(
|
|
|
141
141
|
:type execution_context: int | str | None
|
|
142
142
|
:type undo: bool | None
|
|
143
143
|
:param select: Select
|
|
144
|
-
:type select: bool |
|
|
144
|
+
:type select: bool | None
|
|
145
145
|
:param flipped: Flipped
|
|
146
|
-
:type flipped: bool |
|
|
146
|
+
:type flipped: bool | None
|
|
147
147
|
"""
|
|
148
148
|
|
|
149
149
|
...
|