fake-bpy-module 20240620__py3-none-any.whl → 20240622__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 +8 -8
- 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 +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- 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 +628 -566
- 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 +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1614 -1805
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/METADATA +3 -5
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/top_level.txt +0 -0
bpy/ops/armature/__init__.pyi
CHANGED
|
@@ -25,8 +25,8 @@ def assign_to_collection(
|
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
*,
|
|
28
|
-
collection_index:
|
|
29
|
-
new_collection_name: str
|
|
28
|
+
collection_index: int | None = -1,
|
|
29
|
+
new_collection_name: str = "",
|
|
30
30
|
):
|
|
31
31
|
"""Assign all selected bones to a collection, or unassign them, depending on whether the active bone is already assigned or not
|
|
32
32
|
|
|
@@ -34,9 +34,9 @@ def assign_to_collection(
|
|
|
34
34
|
:type execution_context: int | str | None
|
|
35
35
|
:type undo: bool | None
|
|
36
36
|
:param collection_index: Collection Index, Index of the collection to assign selected bones to. When the operator should create a new bone collection, use new_collection_name to define the collection name, and set this parameter to the parent index of the new bone collection
|
|
37
|
-
:type collection_index:
|
|
37
|
+
:type collection_index: int | None
|
|
38
38
|
:param new_collection_name: Name, Name of a to-be-added bone collection. Only pass this if you want to create a new bone collection and assign the selected bones to it. To assign to an existing collection, do not include this parameter and use collection_index
|
|
39
|
-
:type new_collection_name: str
|
|
39
|
+
:type new_collection_name: str
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
42
|
...
|
|
@@ -73,7 +73,7 @@ def bone_primitive_add(
|
|
|
73
73
|
execution_context: int | str | None = None,
|
|
74
74
|
undo: bool | None = None,
|
|
75
75
|
*,
|
|
76
|
-
name: str
|
|
76
|
+
name: str = "",
|
|
77
77
|
):
|
|
78
78
|
"""Add a new bone located at the 3D cursor
|
|
79
79
|
|
|
@@ -81,7 +81,7 @@ def bone_primitive_add(
|
|
|
81
81
|
:type execution_context: int | str | None
|
|
82
82
|
:type undo: bool | None
|
|
83
83
|
:param name: Name, Name of the newly created bone
|
|
84
|
-
:type name: str
|
|
84
|
+
:type name: str
|
|
85
85
|
"""
|
|
86
86
|
|
|
87
87
|
...
|
|
@@ -92,8 +92,8 @@ def calculate_roll(
|
|
|
92
92
|
undo: bool | None = None,
|
|
93
93
|
*,
|
|
94
94
|
type: str | None = "POS_X",
|
|
95
|
-
axis_flip: bool |
|
|
96
|
-
axis_only: bool |
|
|
95
|
+
axis_flip: bool | None = False,
|
|
96
|
+
axis_only: bool | None = False,
|
|
97
97
|
):
|
|
98
98
|
"""Automatically fix alignment of select bones' axes
|
|
99
99
|
|
|
@@ -103,9 +103,9 @@ def calculate_roll(
|
|
|
103
103
|
:param type: Type
|
|
104
104
|
:type type: str | None
|
|
105
105
|
:param axis_flip: Flip Axis, Negate the alignment axis
|
|
106
|
-
:type axis_flip: bool |
|
|
106
|
+
:type axis_flip: bool | None
|
|
107
107
|
:param axis_only: Shortest Rotation, Ignore the axis direction, use the shortest rotation to align
|
|
108
|
-
:type axis_only: bool |
|
|
108
|
+
:type axis_only: bool | None
|
|
109
109
|
"""
|
|
110
110
|
|
|
111
111
|
...
|
|
@@ -143,7 +143,7 @@ def collection_assign(
|
|
|
143
143
|
execution_context: int | str | None = None,
|
|
144
144
|
undo: bool | None = None,
|
|
145
145
|
*,
|
|
146
|
-
name: str
|
|
146
|
+
name: str = "",
|
|
147
147
|
):
|
|
148
148
|
"""Add selected bones to the chosen bone collection
|
|
149
149
|
|
|
@@ -151,7 +151,7 @@ def collection_assign(
|
|
|
151
151
|
:type execution_context: int | str | None
|
|
152
152
|
:type undo: bool | None
|
|
153
153
|
:param name: Bone Collection, Name of the bone collection to assign this bone to; empty to assign to the active bone collection
|
|
154
|
-
:type name: str
|
|
154
|
+
:type name: str
|
|
155
155
|
"""
|
|
156
156
|
|
|
157
157
|
...
|
|
@@ -161,7 +161,7 @@ def collection_create_and_assign(
|
|
|
161
161
|
execution_context: int | str | None = None,
|
|
162
162
|
undo: bool | None = None,
|
|
163
163
|
*,
|
|
164
|
-
name: str
|
|
164
|
+
name: str = "",
|
|
165
165
|
):
|
|
166
166
|
"""Create a new bone collection and assign all selected bones
|
|
167
167
|
|
|
@@ -169,7 +169,7 @@ def collection_create_and_assign(
|
|
|
169
169
|
:type execution_context: int | str | None
|
|
170
170
|
:type undo: bool | None
|
|
171
171
|
:param name: Bone Collection, Name of the bone collection to create
|
|
172
|
-
:type name: str
|
|
172
|
+
:type name: str
|
|
173
173
|
"""
|
|
174
174
|
|
|
175
175
|
...
|
|
@@ -267,7 +267,7 @@ def collection_unassign(
|
|
|
267
267
|
execution_context: int | str | None = None,
|
|
268
268
|
undo: bool | None = None,
|
|
269
269
|
*,
|
|
270
|
-
name: str
|
|
270
|
+
name: str = "",
|
|
271
271
|
):
|
|
272
272
|
"""Remove selected bones from the active bone collection
|
|
273
273
|
|
|
@@ -275,7 +275,7 @@ def collection_unassign(
|
|
|
275
275
|
:type execution_context: int | str | None
|
|
276
276
|
:type undo: bool | None
|
|
277
277
|
:param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
|
|
278
|
-
:type name: str
|
|
278
|
+
:type name: str
|
|
279
279
|
"""
|
|
280
280
|
|
|
281
281
|
...
|
|
@@ -285,8 +285,8 @@ def collection_unassign_named(
|
|
|
285
285
|
execution_context: int | str | None = None,
|
|
286
286
|
undo: bool | None = None,
|
|
287
287
|
*,
|
|
288
|
-
name: str
|
|
289
|
-
bone_name: str
|
|
288
|
+
name: str = "",
|
|
289
|
+
bone_name: str = "",
|
|
290
290
|
):
|
|
291
291
|
"""Unassign the named bone from this bone collection
|
|
292
292
|
|
|
@@ -294,9 +294,9 @@ def collection_unassign_named(
|
|
|
294
294
|
:type execution_context: int | str | None
|
|
295
295
|
:type undo: bool | None
|
|
296
296
|
:param name: Bone Collection, Name of the bone collection to unassign this bone from; empty to unassign from the active bone collection
|
|
297
|
-
:type name: str
|
|
297
|
+
:type name: str
|
|
298
298
|
:param bone_name: Bone Name, Name of the bone to unassign from the collection; empty to use the active bone
|
|
299
|
-
:type bone_name: str
|
|
299
|
+
:type bone_name: str
|
|
300
300
|
"""
|
|
301
301
|
|
|
302
302
|
...
|
|
@@ -344,7 +344,7 @@ def delete(
|
|
|
344
344
|
execution_context: int | str | None = None,
|
|
345
345
|
undo: bool | None = None,
|
|
346
346
|
*,
|
|
347
|
-
confirm: bool |
|
|
347
|
+
confirm: bool | None = True,
|
|
348
348
|
):
|
|
349
349
|
"""Remove selected bones from the armature
|
|
350
350
|
|
|
@@ -352,7 +352,7 @@ def delete(
|
|
|
352
352
|
:type execution_context: int | str | None
|
|
353
353
|
:type undo: bool | None
|
|
354
354
|
:param confirm: Confirm, Prompt for confirmation
|
|
355
|
-
:type confirm: bool |
|
|
355
|
+
:type confirm: bool | None
|
|
356
356
|
"""
|
|
357
357
|
|
|
358
358
|
...
|
|
@@ -376,7 +376,7 @@ def duplicate(
|
|
|
376
376
|
execution_context: int | str | None = None,
|
|
377
377
|
undo: bool | None = None,
|
|
378
378
|
*,
|
|
379
|
-
do_flip_names: bool |
|
|
379
|
+
do_flip_names: bool | None = False,
|
|
380
380
|
):
|
|
381
381
|
"""Make copies of the selected bones within the same armature
|
|
382
382
|
|
|
@@ -384,7 +384,7 @@ def duplicate(
|
|
|
384
384
|
:type execution_context: int | str | None
|
|
385
385
|
:type undo: bool | None
|
|
386
386
|
:param do_flip_names: Flip Names, Try to flip names of the bones, if possible, instead of adding a number extension
|
|
387
|
-
:type do_flip_names: bool |
|
|
387
|
+
:type do_flip_names: bool | None
|
|
388
388
|
"""
|
|
389
389
|
|
|
390
390
|
...
|
|
@@ -415,7 +415,7 @@ def extrude(
|
|
|
415
415
|
execution_context: int | str | None = None,
|
|
416
416
|
undo: bool | None = None,
|
|
417
417
|
*,
|
|
418
|
-
forked: bool |
|
|
418
|
+
forked: bool | None = False,
|
|
419
419
|
):
|
|
420
420
|
"""Create new bones from the selected joints
|
|
421
421
|
|
|
@@ -423,7 +423,7 @@ def extrude(
|
|
|
423
423
|
:type execution_context: int | str | None
|
|
424
424
|
:type undo: bool | None
|
|
425
425
|
:param forked: Forked
|
|
426
|
-
:type forked: bool |
|
|
426
|
+
:type forked: bool | None
|
|
427
427
|
"""
|
|
428
428
|
|
|
429
429
|
...
|
|
@@ -489,7 +489,7 @@ def flip_names(
|
|
|
489
489
|
execution_context: int | str | None = None,
|
|
490
490
|
undo: bool | None = None,
|
|
491
491
|
*,
|
|
492
|
-
do_strip_numbers: bool |
|
|
492
|
+
do_strip_numbers: bool | None = False,
|
|
493
493
|
):
|
|
494
494
|
"""Flips (and corrects) the axis suffixes of the names of selected bones
|
|
495
495
|
|
|
@@ -497,7 +497,7 @@ def flip_names(
|
|
|
497
497
|
:type execution_context: int | str | None
|
|
498
498
|
:type undo: bool | None
|
|
499
499
|
: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
|
|
500
|
-
:type do_strip_numbers: bool |
|
|
500
|
+
:type do_strip_numbers: bool | None
|
|
501
501
|
"""
|
|
502
502
|
|
|
503
503
|
...
|
|
@@ -507,7 +507,7 @@ def hide(
|
|
|
507
507
|
execution_context: int | str | None = None,
|
|
508
508
|
undo: bool | None = None,
|
|
509
509
|
*,
|
|
510
|
-
unselected: bool |
|
|
510
|
+
unselected: bool | None = False,
|
|
511
511
|
):
|
|
512
512
|
"""Tag selected bones to not be visible in Edit Mode
|
|
513
513
|
|
|
@@ -515,7 +515,7 @@ def hide(
|
|
|
515
515
|
:type execution_context: int | str | None
|
|
516
516
|
:type undo: bool | None
|
|
517
517
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
518
|
-
:type unselected: bool |
|
|
518
|
+
:type unselected: bool | None
|
|
519
519
|
"""
|
|
520
520
|
|
|
521
521
|
...
|
|
@@ -525,8 +525,8 @@ def move_to_collection(
|
|
|
525
525
|
execution_context: int | str | None = None,
|
|
526
526
|
undo: bool | None = None,
|
|
527
527
|
*,
|
|
528
|
-
collection_index:
|
|
529
|
-
new_collection_name: str
|
|
528
|
+
collection_index: int | None = -1,
|
|
529
|
+
new_collection_name: str = "",
|
|
530
530
|
):
|
|
531
531
|
"""Move bones to a collection
|
|
532
532
|
|
|
@@ -534,9 +534,9 @@ def move_to_collection(
|
|
|
534
534
|
:type execution_context: int | str | None
|
|
535
535
|
:type undo: bool | None
|
|
536
536
|
:param collection_index: Collection Index, Index of the collection to move selected bones to. When the operator should create a new bone collection, do not include this parameter and pass new_collection_name
|
|
537
|
-
:type collection_index:
|
|
537
|
+
:type collection_index: int | None
|
|
538
538
|
:param new_collection_name: Name, Name of a to-be-added bone collection. Only pass this if you want to create a new bone collection and move the selected bones to it. To move to an existing collection, do not include this parameter and use collection_index
|
|
539
|
-
:type new_collection_name: str
|
|
539
|
+
:type new_collection_name: str
|
|
540
540
|
"""
|
|
541
541
|
|
|
542
542
|
...
|
|
@@ -582,7 +582,7 @@ def reveal(
|
|
|
582
582
|
execution_context: int | str | None = None,
|
|
583
583
|
undo: bool | None = None,
|
|
584
584
|
*,
|
|
585
|
-
select: bool |
|
|
585
|
+
select: bool | None = True,
|
|
586
586
|
):
|
|
587
587
|
"""Reveal all bones hidden in Edit Mode
|
|
588
588
|
|
|
@@ -590,7 +590,7 @@ def reveal(
|
|
|
590
590
|
:type execution_context: int | str | None
|
|
591
591
|
:type undo: bool | None
|
|
592
592
|
:param select: Select
|
|
593
|
-
:type select: bool |
|
|
593
|
+
:type select: bool | None
|
|
594
594
|
"""
|
|
595
595
|
|
|
596
596
|
...
|
|
@@ -600,7 +600,7 @@ def roll_clear(
|
|
|
600
600
|
execution_context: int | str | None = None,
|
|
601
601
|
undo: bool | None = None,
|
|
602
602
|
*,
|
|
603
|
-
roll:
|
|
603
|
+
roll: float | None = 0.0,
|
|
604
604
|
):
|
|
605
605
|
"""Clear roll for selected bones
|
|
606
606
|
|
|
@@ -608,7 +608,7 @@ def roll_clear(
|
|
|
608
608
|
:type execution_context: int | str | None
|
|
609
609
|
:type undo: bool | None
|
|
610
610
|
:param roll: Roll
|
|
611
|
-
:type roll:
|
|
611
|
+
:type roll: float | None
|
|
612
612
|
"""
|
|
613
613
|
|
|
614
614
|
...
|
|
@@ -649,7 +649,7 @@ def select_hierarchy(
|
|
|
649
649
|
undo: bool | None = None,
|
|
650
650
|
*,
|
|
651
651
|
direction: str | None = "PARENT",
|
|
652
|
-
extend: bool |
|
|
652
|
+
extend: bool | None = False,
|
|
653
653
|
):
|
|
654
654
|
"""Select immediate parent/children of selected bones
|
|
655
655
|
|
|
@@ -659,7 +659,7 @@ def select_hierarchy(
|
|
|
659
659
|
:param direction: Direction
|
|
660
660
|
:type direction: str | None
|
|
661
661
|
:param extend: Extend, Extend the selection
|
|
662
|
-
:type extend: bool |
|
|
662
|
+
:type extend: bool | None
|
|
663
663
|
"""
|
|
664
664
|
|
|
665
665
|
...
|
|
@@ -683,7 +683,7 @@ def select_linked(
|
|
|
683
683
|
execution_context: int | str | None = None,
|
|
684
684
|
undo: bool | None = None,
|
|
685
685
|
*,
|
|
686
|
-
all_forks: bool |
|
|
686
|
+
all_forks: bool | None = False,
|
|
687
687
|
):
|
|
688
688
|
"""Select all bones linked by parent/child connections to the current selection
|
|
689
689
|
|
|
@@ -691,7 +691,7 @@ def select_linked(
|
|
|
691
691
|
:type execution_context: int | str | None
|
|
692
692
|
:type undo: bool | None
|
|
693
693
|
:param all_forks: All Forks, Follow forks in the parents chain
|
|
694
|
-
:type all_forks: bool |
|
|
694
|
+
:type all_forks: bool | None
|
|
695
695
|
"""
|
|
696
696
|
|
|
697
697
|
...
|
|
@@ -701,8 +701,8 @@ def select_linked_pick(
|
|
|
701
701
|
execution_context: int | str | None = None,
|
|
702
702
|
undo: bool | None = None,
|
|
703
703
|
*,
|
|
704
|
-
deselect: bool |
|
|
705
|
-
all_forks: bool |
|
|
704
|
+
deselect: bool | None = False,
|
|
705
|
+
all_forks: bool | None = False,
|
|
706
706
|
):
|
|
707
707
|
"""(De)select bones linked by parent/child connections under the mouse cursor
|
|
708
708
|
|
|
@@ -710,9 +710,9 @@ def select_linked_pick(
|
|
|
710
710
|
:type execution_context: int | str | None
|
|
711
711
|
:type undo: bool | None
|
|
712
712
|
:param deselect: Deselect
|
|
713
|
-
:type deselect: bool |
|
|
713
|
+
:type deselect: bool | None
|
|
714
714
|
:param all_forks: All Forks, Follow forks in the parents chain
|
|
715
|
-
:type all_forks: bool |
|
|
715
|
+
:type all_forks: bool | None
|
|
716
716
|
"""
|
|
717
717
|
|
|
718
718
|
...
|
|
@@ -722,8 +722,8 @@ def select_mirror(
|
|
|
722
722
|
execution_context: int | str | None = None,
|
|
723
723
|
undo: bool | None = None,
|
|
724
724
|
*,
|
|
725
|
-
only_active: bool |
|
|
726
|
-
extend: bool |
|
|
725
|
+
only_active: bool | None = False,
|
|
726
|
+
extend: bool | None = False,
|
|
727
727
|
):
|
|
728
728
|
"""Mirror the bone selection
|
|
729
729
|
|
|
@@ -731,9 +731,9 @@ def select_mirror(
|
|
|
731
731
|
:type execution_context: int | str | None
|
|
732
732
|
:type undo: bool | None
|
|
733
733
|
:param only_active: Active Only, Only operate on the active bone
|
|
734
|
-
:type only_active: bool |
|
|
734
|
+
:type only_active: bool | None
|
|
735
735
|
:param extend: Extend, Extend the selection
|
|
736
|
-
:type extend: bool |
|
|
736
|
+
:type extend: bool | None
|
|
737
737
|
"""
|
|
738
738
|
|
|
739
739
|
...
|
|
@@ -758,7 +758,7 @@ def select_similar(
|
|
|
758
758
|
undo: bool | None = None,
|
|
759
759
|
*,
|
|
760
760
|
type: str | None = "LENGTH",
|
|
761
|
-
threshold:
|
|
761
|
+
threshold: float | None = 0.1,
|
|
762
762
|
):
|
|
763
763
|
"""Select similar bones by property types
|
|
764
764
|
|
|
@@ -768,7 +768,7 @@ def select_similar(
|
|
|
768
768
|
:param type: Type
|
|
769
769
|
:type type: str | None
|
|
770
770
|
:param threshold: Threshold
|
|
771
|
-
:type threshold:
|
|
771
|
+
:type threshold: float | None
|
|
772
772
|
"""
|
|
773
773
|
|
|
774
774
|
...
|
|
@@ -820,7 +820,7 @@ def subdivide(
|
|
|
820
820
|
execution_context: int | str | None = None,
|
|
821
821
|
undo: bool | None = None,
|
|
822
822
|
*,
|
|
823
|
-
number_cuts:
|
|
823
|
+
number_cuts: int | None = 1,
|
|
824
824
|
):
|
|
825
825
|
"""Break selected bones into chains of smaller bones
|
|
826
826
|
|
|
@@ -828,7 +828,7 @@ def subdivide(
|
|
|
828
828
|
:type execution_context: int | str | None
|
|
829
829
|
:type undo: bool | None
|
|
830
830
|
:param number_cuts: Number of Cuts
|
|
831
|
-
:type number_cuts:
|
|
831
|
+
:type number_cuts: int | None
|
|
832
832
|
"""
|
|
833
833
|
|
|
834
834
|
...
|
bpy/ops/asset/__init__.pyi
CHANGED
|
@@ -25,27 +25,27 @@ def bundle_install(
|
|
|
25
25
|
undo: bool | None = None,
|
|
26
26
|
*,
|
|
27
27
|
asset_library_reference: str | None = "",
|
|
28
|
-
filepath: str
|
|
29
|
-
hide_props_region: bool |
|
|
30
|
-
check_existing: bool |
|
|
31
|
-
filter_blender: bool |
|
|
32
|
-
filter_backup: bool |
|
|
33
|
-
filter_image: bool |
|
|
34
|
-
filter_movie: bool |
|
|
35
|
-
filter_python: bool |
|
|
36
|
-
filter_font: bool |
|
|
37
|
-
filter_sound: bool |
|
|
38
|
-
filter_text: bool |
|
|
39
|
-
filter_archive: bool |
|
|
40
|
-
filter_btx: bool |
|
|
41
|
-
filter_collada: bool |
|
|
42
|
-
filter_alembic: bool |
|
|
43
|
-
filter_usd: bool |
|
|
44
|
-
filter_obj: bool |
|
|
45
|
-
filter_volume: bool |
|
|
46
|
-
filter_folder: bool |
|
|
47
|
-
filter_blenlib: bool |
|
|
48
|
-
filemode:
|
|
28
|
+
filepath: str = "",
|
|
29
|
+
hide_props_region: bool | None = True,
|
|
30
|
+
check_existing: bool | None = True,
|
|
31
|
+
filter_blender: bool | None = True,
|
|
32
|
+
filter_backup: bool | None = False,
|
|
33
|
+
filter_image: bool | None = False,
|
|
34
|
+
filter_movie: bool | None = False,
|
|
35
|
+
filter_python: bool | None = False,
|
|
36
|
+
filter_font: bool | None = False,
|
|
37
|
+
filter_sound: bool | None = False,
|
|
38
|
+
filter_text: bool | None = False,
|
|
39
|
+
filter_archive: bool | None = False,
|
|
40
|
+
filter_btx: bool | None = False,
|
|
41
|
+
filter_collada: bool | None = False,
|
|
42
|
+
filter_alembic: bool | None = False,
|
|
43
|
+
filter_usd: bool | None = False,
|
|
44
|
+
filter_obj: bool | None = False,
|
|
45
|
+
filter_volume: bool | None = False,
|
|
46
|
+
filter_folder: bool | None = True,
|
|
47
|
+
filter_blenlib: bool | None = False,
|
|
48
|
+
filemode: int | None = 8,
|
|
49
49
|
display_type: str | None = "DEFAULT",
|
|
50
50
|
sort_method: str | None = "",
|
|
51
51
|
):
|
|
@@ -57,47 +57,47 @@ def bundle_install(
|
|
|
57
57
|
:param asset_library_reference: asset_library_reference
|
|
58
58
|
:type asset_library_reference: str | None
|
|
59
59
|
:param filepath: File Path, Path to file
|
|
60
|
-
:type filepath: str
|
|
60
|
+
:type filepath: str
|
|
61
61
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
62
|
-
:type hide_props_region: bool |
|
|
62
|
+
:type hide_props_region: bool | None
|
|
63
63
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
64
|
-
:type check_existing: bool |
|
|
64
|
+
:type check_existing: bool | None
|
|
65
65
|
:param filter_blender: Filter .blend files
|
|
66
|
-
:type filter_blender: bool |
|
|
66
|
+
:type filter_blender: bool | None
|
|
67
67
|
:param filter_backup: Filter .blend files
|
|
68
|
-
:type filter_backup: bool |
|
|
68
|
+
:type filter_backup: bool | None
|
|
69
69
|
:param filter_image: Filter image files
|
|
70
|
-
:type filter_image: bool |
|
|
70
|
+
:type filter_image: bool | None
|
|
71
71
|
:param filter_movie: Filter movie files
|
|
72
|
-
:type filter_movie: bool |
|
|
72
|
+
:type filter_movie: bool | None
|
|
73
73
|
:param filter_python: Filter Python files
|
|
74
|
-
:type filter_python: bool |
|
|
74
|
+
:type filter_python: bool | None
|
|
75
75
|
:param filter_font: Filter font files
|
|
76
|
-
:type filter_font: bool |
|
|
76
|
+
:type filter_font: bool | None
|
|
77
77
|
:param filter_sound: Filter sound files
|
|
78
|
-
:type filter_sound: bool |
|
|
78
|
+
:type filter_sound: bool | None
|
|
79
79
|
:param filter_text: Filter text files
|
|
80
|
-
:type filter_text: bool |
|
|
80
|
+
:type filter_text: bool | None
|
|
81
81
|
:param filter_archive: Filter archive files
|
|
82
|
-
:type filter_archive: bool |
|
|
82
|
+
:type filter_archive: bool | None
|
|
83
83
|
:param filter_btx: Filter btx files
|
|
84
|
-
:type filter_btx: bool |
|
|
84
|
+
:type filter_btx: bool | None
|
|
85
85
|
:param filter_collada: Filter COLLADA files
|
|
86
|
-
:type filter_collada: bool |
|
|
86
|
+
:type filter_collada: bool | None
|
|
87
87
|
:param filter_alembic: Filter Alembic files
|
|
88
|
-
:type filter_alembic: bool |
|
|
88
|
+
:type filter_alembic: bool | None
|
|
89
89
|
:param filter_usd: Filter USD files
|
|
90
|
-
:type filter_usd: bool |
|
|
90
|
+
:type filter_usd: bool | None
|
|
91
91
|
:param filter_obj: Filter OBJ files
|
|
92
|
-
:type filter_obj: bool |
|
|
92
|
+
:type filter_obj: bool | None
|
|
93
93
|
:param filter_volume: Filter OpenVDB volume files
|
|
94
|
-
:type filter_volume: bool |
|
|
94
|
+
:type filter_volume: bool | None
|
|
95
95
|
:param filter_folder: Filter folders
|
|
96
|
-
:type filter_folder: bool |
|
|
96
|
+
:type filter_folder: bool | None
|
|
97
97
|
:param filter_blenlib: Filter Blender IDs
|
|
98
|
-
:type filter_blenlib: bool |
|
|
98
|
+
:type filter_blenlib: bool | None
|
|
99
99
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
100
|
-
:type filemode:
|
|
100
|
+
:type filemode: int | None
|
|
101
101
|
:param display_type: Display Type
|
|
102
102
|
|
|
103
103
|
DEFAULT
|
|
@@ -123,7 +123,7 @@ def catalog_delete(
|
|
|
123
123
|
execution_context: int | str | None = None,
|
|
124
124
|
undo: bool | None = None,
|
|
125
125
|
*,
|
|
126
|
-
catalog_id: str
|
|
126
|
+
catalog_id: str = "",
|
|
127
127
|
):
|
|
128
128
|
"""Remove an asset catalog from the asset library (contained assets will not be affected and show up as unassigned)
|
|
129
129
|
|
|
@@ -131,7 +131,7 @@ def catalog_delete(
|
|
|
131
131
|
:type execution_context: int | str | None
|
|
132
132
|
:type undo: bool | None
|
|
133
133
|
:param catalog_id: Catalog ID, ID of the catalog to delete
|
|
134
|
-
:type catalog_id: str
|
|
134
|
+
:type catalog_id: str
|
|
135
135
|
"""
|
|
136
136
|
|
|
137
137
|
...
|
|
@@ -141,7 +141,7 @@ def catalog_new(
|
|
|
141
141
|
execution_context: int | str | None = None,
|
|
142
142
|
undo: bool | None = None,
|
|
143
143
|
*,
|
|
144
|
-
parent_path: str
|
|
144
|
+
parent_path: str = "",
|
|
145
145
|
):
|
|
146
146
|
"""Create a new catalog to put assets in
|
|
147
147
|
|
|
@@ -149,7 +149,7 @@ def catalog_new(
|
|
|
149
149
|
:type execution_context: int | str | None
|
|
150
150
|
:type undo: bool | None
|
|
151
151
|
:param parent_path: Parent Path, Optional path defining the location to put the new catalog under
|
|
152
|
-
:type parent_path: str
|
|
152
|
+
:type parent_path: str
|
|
153
153
|
"""
|
|
154
154
|
|
|
155
155
|
...
|
|
@@ -215,7 +215,7 @@ def clear(
|
|
|
215
215
|
execution_context: int | str | None = None,
|
|
216
216
|
undo: bool | None = None,
|
|
217
217
|
*,
|
|
218
|
-
set_fake_user: bool |
|
|
218
|
+
set_fake_user: bool | None = False,
|
|
219
219
|
):
|
|
220
220
|
"""Delete all asset metadata and turn the selected asset data-blocks back into normal data-blocks
|
|
221
221
|
|
|
@@ -223,7 +223,7 @@ def clear(
|
|
|
223
223
|
:type execution_context: int | str | None
|
|
224
224
|
:type undo: bool | None
|
|
225
225
|
:param set_fake_user: Set Fake User, Ensure the data-block is saved, even when it is no longer marked as asset
|
|
226
|
-
:type set_fake_user: bool |
|
|
226
|
+
:type set_fake_user: bool | None
|
|
227
227
|
"""
|
|
228
228
|
|
|
229
229
|
...
|
|
@@ -233,7 +233,7 @@ def clear_single(
|
|
|
233
233
|
execution_context: int | str | None = None,
|
|
234
234
|
undo: bool | None = None,
|
|
235
235
|
*,
|
|
236
|
-
set_fake_user: bool |
|
|
236
|
+
set_fake_user: bool | None = False,
|
|
237
237
|
):
|
|
238
238
|
"""Delete all asset metadata and turn the asset data-block back into a normal data-block
|
|
239
239
|
|
|
@@ -241,7 +241,7 @@ def clear_single(
|
|
|
241
241
|
:type execution_context: int | str | None
|
|
242
242
|
:type undo: bool | None
|
|
243
243
|
:param set_fake_user: Set Fake User, Ensure the data-block is saved, even when it is no longer marked as asset
|
|
244
|
-
:type set_fake_user: bool |
|
|
244
|
+
:type set_fake_user: bool | None
|
|
245
245
|
"""
|
|
246
246
|
|
|
247
247
|
...
|
bpy/ops/brush/__init__.pyi
CHANGED
|
@@ -70,7 +70,7 @@ def scale_size(
|
|
|
70
70
|
execution_context: int | str | None = None,
|
|
71
71
|
undo: bool | None = None,
|
|
72
72
|
*,
|
|
73
|
-
scalar:
|
|
73
|
+
scalar: float | None = 1.0,
|
|
74
74
|
):
|
|
75
75
|
"""Change brush size by a scalar
|
|
76
76
|
|
|
@@ -78,7 +78,7 @@ def scale_size(
|
|
|
78
78
|
:type execution_context: int | str | None
|
|
79
79
|
:type undo: bool | None
|
|
80
80
|
:param scalar: Scalar, Factor to scale brush size by
|
|
81
|
-
:type scalar:
|
|
81
|
+
:type scalar: float | None
|
|
82
82
|
"""
|
|
83
83
|
|
|
84
84
|
...
|
|
@@ -127,9 +127,9 @@ def stencil_fit_image_aspect(
|
|
|
127
127
|
execution_context: int | str | None = None,
|
|
128
128
|
undo: bool | None = None,
|
|
129
129
|
*,
|
|
130
|
-
use_repeat: bool |
|
|
131
|
-
use_scale: bool |
|
|
132
|
-
mask: bool |
|
|
130
|
+
use_repeat: bool | None = True,
|
|
131
|
+
use_scale: bool | None = True,
|
|
132
|
+
mask: bool | None = False,
|
|
133
133
|
):
|
|
134
134
|
"""When using an image texture, adjust the stencil size to fit the image aspect ratio
|
|
135
135
|
|
|
@@ -137,11 +137,11 @@ def stencil_fit_image_aspect(
|
|
|
137
137
|
:type execution_context: int | str | None
|
|
138
138
|
:type undo: bool | None
|
|
139
139
|
:param use_repeat: Use Repeat, Use repeat mapping values
|
|
140
|
-
:type use_repeat: bool |
|
|
140
|
+
:type use_repeat: bool | None
|
|
141
141
|
:param use_scale: Use Scale, Use texture scale values
|
|
142
|
-
:type use_scale: bool |
|
|
142
|
+
:type use_scale: bool | None
|
|
143
143
|
:param mask: Modify Mask Stencil, Modify either the primary or mask stencil
|
|
144
|
-
:type mask: bool |
|
|
144
|
+
:type mask: bool | None
|
|
145
145
|
"""
|
|
146
146
|
|
|
147
147
|
...
|
|
@@ -151,7 +151,7 @@ def stencil_reset_transform(
|
|
|
151
151
|
execution_context: int | str | None = None,
|
|
152
152
|
undo: bool | None = None,
|
|
153
153
|
*,
|
|
154
|
-
mask: bool |
|
|
154
|
+
mask: bool | None = False,
|
|
155
155
|
):
|
|
156
156
|
"""Reset the stencil transformation to the default
|
|
157
157
|
|
|
@@ -159,7 +159,7 @@ def stencil_reset_transform(
|
|
|
159
159
|
:type execution_context: int | str | None
|
|
160
160
|
:type undo: bool | None
|
|
161
161
|
:param mask: Modify Mask Stencil, Modify either the primary or mask stencil
|
|
162
|
-
:type mask: bool |
|
|
162
|
+
:type mask: bool | None
|
|
163
163
|
"""
|
|
164
164
|
|
|
165
165
|
...
|