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/outliner/__init__.pyi
CHANGED
|
@@ -331,7 +331,7 @@ def collection_isolate(
|
|
|
331
331
|
execution_context: int | str | None = None,
|
|
332
332
|
undo: bool | None = None,
|
|
333
333
|
*,
|
|
334
|
-
extend: bool |
|
|
334
|
+
extend: bool | None = False,
|
|
335
335
|
):
|
|
336
336
|
"""Hide all but this collection and its parents
|
|
337
337
|
|
|
@@ -339,7 +339,7 @@ def collection_isolate(
|
|
|
339
339
|
:type execution_context: int | str | None
|
|
340
340
|
:type undo: bool | None
|
|
341
341
|
:param extend: Extend, Extend current visible collections
|
|
342
|
-
:type extend: bool |
|
|
342
|
+
:type extend: bool | None
|
|
343
343
|
"""
|
|
344
344
|
|
|
345
345
|
...
|
|
@@ -363,7 +363,7 @@ def collection_new(
|
|
|
363
363
|
execution_context: int | str | None = None,
|
|
364
364
|
undo: bool | None = None,
|
|
365
365
|
*,
|
|
366
|
-
nested: bool |
|
|
366
|
+
nested: bool | None = True,
|
|
367
367
|
):
|
|
368
368
|
"""Add a new collection inside selected collection
|
|
369
369
|
|
|
@@ -371,7 +371,7 @@ def collection_new(
|
|
|
371
371
|
:type execution_context: int | str | None
|
|
372
372
|
:type undo: bool | None
|
|
373
373
|
:param nested: Nested, Add as child of selected collection
|
|
374
|
-
:type nested: bool |
|
|
374
|
+
:type nested: bool | None
|
|
375
375
|
"""
|
|
376
376
|
|
|
377
377
|
...
|
|
@@ -487,7 +487,7 @@ def delete(
|
|
|
487
487
|
execution_context: int | str | None = None,
|
|
488
488
|
undo: bool | None = None,
|
|
489
489
|
*,
|
|
490
|
-
hierarchy: bool |
|
|
490
|
+
hierarchy: bool | None = False,
|
|
491
491
|
):
|
|
492
492
|
"""Delete selected objects and collections
|
|
493
493
|
|
|
@@ -495,7 +495,7 @@ def delete(
|
|
|
495
495
|
:type execution_context: int | str | None
|
|
496
496
|
:type undo: bool | None
|
|
497
497
|
:param hierarchy: Hierarchy, Delete child objects and collections
|
|
498
|
-
:type hierarchy: bool |
|
|
498
|
+
:type hierarchy: bool | None
|
|
499
499
|
"""
|
|
500
500
|
|
|
501
501
|
...
|
|
@@ -692,10 +692,10 @@ def item_activate(
|
|
|
692
692
|
execution_context: int | str | None = None,
|
|
693
693
|
undo: bool | None = None,
|
|
694
694
|
*,
|
|
695
|
-
extend: bool |
|
|
696
|
-
extend_range: bool |
|
|
697
|
-
deselect_all: bool |
|
|
698
|
-
recurse: bool |
|
|
695
|
+
extend: bool | None = False,
|
|
696
|
+
extend_range: bool | None = False,
|
|
697
|
+
deselect_all: bool | None = False,
|
|
698
|
+
recurse: bool | None = False,
|
|
699
699
|
):
|
|
700
700
|
"""Handle mouse clicks to select and activate items
|
|
701
701
|
|
|
@@ -703,13 +703,13 @@ def item_activate(
|
|
|
703
703
|
:type execution_context: int | str | None
|
|
704
704
|
:type undo: bool | None
|
|
705
705
|
:param extend: Extend, Extend selection for activation
|
|
706
|
-
:type extend: bool |
|
|
706
|
+
:type extend: bool | None
|
|
707
707
|
:param extend_range: Extend Range, Select a range from active element
|
|
708
|
-
:type extend_range: bool |
|
|
708
|
+
:type extend_range: bool | None
|
|
709
709
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
710
|
-
:type deselect_all: bool |
|
|
710
|
+
:type deselect_all: bool | None
|
|
711
711
|
:param recurse: Recurse, Select objects recursively from active element
|
|
712
|
-
:type recurse: bool |
|
|
712
|
+
:type recurse: bool | None
|
|
713
713
|
"""
|
|
714
714
|
|
|
715
715
|
...
|
|
@@ -733,7 +733,7 @@ def item_openclose(
|
|
|
733
733
|
execution_context: int | str | None = None,
|
|
734
734
|
undo: bool | None = None,
|
|
735
735
|
*,
|
|
736
|
-
all: bool |
|
|
736
|
+
all: bool | None = False,
|
|
737
737
|
):
|
|
738
738
|
"""Toggle whether item under cursor is enabled or closed
|
|
739
739
|
|
|
@@ -741,7 +741,7 @@ def item_openclose(
|
|
|
741
741
|
:type execution_context: int | str | None
|
|
742
742
|
:type undo: bool | None
|
|
743
743
|
:param all: All, Close or open all items
|
|
744
|
-
:type all: bool |
|
|
744
|
+
:type all: bool | None
|
|
745
745
|
"""
|
|
746
746
|
|
|
747
747
|
...
|
|
@@ -751,7 +751,7 @@ def item_rename(
|
|
|
751
751
|
execution_context: int | str | None = None,
|
|
752
752
|
undo: bool | None = None,
|
|
753
753
|
*,
|
|
754
|
-
use_active: bool |
|
|
754
|
+
use_active: bool | None = False,
|
|
755
755
|
):
|
|
756
756
|
"""Rename the active element
|
|
757
757
|
|
|
@@ -759,7 +759,7 @@ def item_rename(
|
|
|
759
759
|
:type execution_context: int | str | None
|
|
760
760
|
:type undo: bool | None
|
|
761
761
|
:param use_active: Use Active, Rename the active item, rather than the one the mouse is over
|
|
762
|
-
:type use_active: bool |
|
|
762
|
+
:type use_active: bool | None
|
|
763
763
|
"""
|
|
764
764
|
|
|
765
765
|
...
|
|
@@ -1010,9 +1010,9 @@ def orphans_purge(
|
|
|
1010
1010
|
execution_context: int | str | None = None,
|
|
1011
1011
|
undo: bool | None = None,
|
|
1012
1012
|
*,
|
|
1013
|
-
do_local_ids: bool |
|
|
1014
|
-
do_linked_ids: bool |
|
|
1015
|
-
do_recursive: bool |
|
|
1013
|
+
do_local_ids: bool | None = True,
|
|
1014
|
+
do_linked_ids: bool | None = True,
|
|
1015
|
+
do_recursive: bool | None = True,
|
|
1016
1016
|
):
|
|
1017
1017
|
"""Clear all orphaned data-blocks without any users from the file
|
|
1018
1018
|
|
|
@@ -1020,11 +1020,11 @@ def orphans_purge(
|
|
|
1020
1020
|
:type execution_context: int | str | None
|
|
1021
1021
|
:type undo: bool | None
|
|
1022
1022
|
:param do_local_ids: Local Data-blocks, Include unused local data-blocks into deletion
|
|
1023
|
-
:type do_local_ids: bool |
|
|
1023
|
+
:type do_local_ids: bool | None
|
|
1024
1024
|
:param do_linked_ids: Linked Data-blocks, Include unused linked data-blocks into deletion
|
|
1025
|
-
:type do_linked_ids: bool |
|
|
1025
|
+
:type do_linked_ids: bool | None
|
|
1026
1026
|
:param do_recursive: Recursive Delete, Recursively check for indirectly unused data-blocks, ensuring that no orphaned data-blocks remain after execution
|
|
1027
|
-
:type do_recursive: bool |
|
|
1027
|
+
:type do_recursive: bool | None
|
|
1028
1028
|
"""
|
|
1029
1029
|
|
|
1030
1030
|
...
|
|
@@ -1094,7 +1094,7 @@ def scroll_page(
|
|
|
1094
1094
|
execution_context: int | str | None = None,
|
|
1095
1095
|
undo: bool | None = None,
|
|
1096
1096
|
*,
|
|
1097
|
-
up: bool |
|
|
1097
|
+
up: bool | None = False,
|
|
1098
1098
|
):
|
|
1099
1099
|
"""Scroll page up or down
|
|
1100
1100
|
|
|
@@ -1102,7 +1102,7 @@ def scroll_page(
|
|
|
1102
1102
|
:type execution_context: int | str | None
|
|
1103
1103
|
:type undo: bool | None
|
|
1104
1104
|
:param up: Up, Scroll up one page
|
|
1105
|
-
:type up: bool |
|
|
1105
|
+
:type up: bool | None
|
|
1106
1106
|
"""
|
|
1107
1107
|
|
|
1108
1108
|
...
|
|
@@ -1142,12 +1142,12 @@ def select_box(
|
|
|
1142
1142
|
execution_context: int | str | None = None,
|
|
1143
1143
|
undo: bool | None = None,
|
|
1144
1144
|
*,
|
|
1145
|
-
tweak: bool |
|
|
1146
|
-
xmin:
|
|
1147
|
-
xmax:
|
|
1148
|
-
ymin:
|
|
1149
|
-
ymax:
|
|
1150
|
-
wait_for_input: bool |
|
|
1145
|
+
tweak: bool | None = False,
|
|
1146
|
+
xmin: int | None = 0,
|
|
1147
|
+
xmax: int | None = 0,
|
|
1148
|
+
ymin: int | None = 0,
|
|
1149
|
+
ymax: int | None = 0,
|
|
1150
|
+
wait_for_input: bool | None = True,
|
|
1151
1151
|
mode: str | None = "SET",
|
|
1152
1152
|
):
|
|
1153
1153
|
"""Use box selection to select tree elements
|
|
@@ -1156,17 +1156,17 @@ def select_box(
|
|
|
1156
1156
|
:type execution_context: int | str | None
|
|
1157
1157
|
:type undo: bool | None
|
|
1158
1158
|
:param tweak: Tweak, Tweak gesture from empty space for box selection
|
|
1159
|
-
:type tweak: bool |
|
|
1159
|
+
:type tweak: bool | None
|
|
1160
1160
|
:param xmin: X Min
|
|
1161
|
-
:type xmin:
|
|
1161
|
+
:type xmin: int | None
|
|
1162
1162
|
:param xmax: X Max
|
|
1163
|
-
:type xmax:
|
|
1163
|
+
:type xmax: int | None
|
|
1164
1164
|
:param ymin: Y Min
|
|
1165
|
-
:type ymin:
|
|
1165
|
+
:type ymin: int | None
|
|
1166
1166
|
:param ymax: Y Max
|
|
1167
|
-
:type ymax:
|
|
1167
|
+
:type ymax: int | None
|
|
1168
1168
|
:param wait_for_input: Wait for Input
|
|
1169
|
-
:type wait_for_input: bool |
|
|
1169
|
+
:type wait_for_input: bool | None
|
|
1170
1170
|
:param mode: Mode
|
|
1171
1171
|
|
|
1172
1172
|
SET
|
|
@@ -1188,8 +1188,8 @@ def select_walk(
|
|
|
1188
1188
|
undo: bool | None = None,
|
|
1189
1189
|
*,
|
|
1190
1190
|
direction: str | None = "UP",
|
|
1191
|
-
extend: bool |
|
|
1192
|
-
toggle_all: bool |
|
|
1191
|
+
extend: bool | None = False,
|
|
1192
|
+
toggle_all: bool | None = False,
|
|
1193
1193
|
):
|
|
1194
1194
|
"""Use walk navigation to select tree elements
|
|
1195
1195
|
|
|
@@ -1199,9 +1199,9 @@ def select_walk(
|
|
|
1199
1199
|
:param direction: Walk Direction, Select/Deselect element in this direction
|
|
1200
1200
|
:type direction: str | None
|
|
1201
1201
|
:param extend: Extend, Extend selection on walk
|
|
1202
|
-
:type extend: bool |
|
|
1202
|
+
:type extend: bool | None
|
|
1203
1203
|
:param toggle_all: Toggle All, Toggle open/close hierarchy
|
|
1204
|
-
:type toggle_all: bool |
|
|
1204
|
+
:type toggle_all: bool | None
|
|
1205
1205
|
"""
|
|
1206
1206
|
|
|
1207
1207
|
...
|
|
@@ -1239,7 +1239,7 @@ def show_one_level(
|
|
|
1239
1239
|
execution_context: int | str | None = None,
|
|
1240
1240
|
undo: bool | None = None,
|
|
1241
1241
|
*,
|
|
1242
|
-
open: bool |
|
|
1242
|
+
open: bool | None = True,
|
|
1243
1243
|
):
|
|
1244
1244
|
"""Expand/collapse all entries by one level
|
|
1245
1245
|
|
|
@@ -1247,7 +1247,7 @@ def show_one_level(
|
|
|
1247
1247
|
:type execution_context: int | str | None
|
|
1248
1248
|
:type undo: bool | None
|
|
1249
1249
|
:param open: Open, Expand all entries one level deep
|
|
1250
|
-
:type open: bool |
|
|
1250
|
+
:type open: bool | None
|
|
1251
1251
|
"""
|
|
1252
1252
|
|
|
1253
1253
|
...
|