fake-bpy-module 20240803__py3-none-any.whl → 20240805__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- _bpy_internal/extensions/__init__.pyi +1 -0
- _bpy_internal/extensions/stale_file_manager/__init__.pyi +39 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +3 -1
- addon_utils/__init__.pyi +2 -0
- aud/__init__.pyi +77 -77
- bmesh/ops/__init__.pyi +54 -36
- bmesh/types/__init__.pyi +24 -24
- bpy/ops/action/__init__.pyi +55 -32
- bpy/ops/anim/__init__.pyi +22 -22
- bpy/ops/armature/__init__.pyi +47 -20
- bpy/ops/asset/__init__.pyi +5 -2
- bpy/ops/boid/__init__.pyi +12 -2
- bpy/ops/brush/__init__.pyi +18 -12
- bpy/ops/buttons/__init__.pyi +10 -4
- bpy/ops/cachefile/__init__.pyi +12 -6
- bpy/ops/clip/__init__.pyi +54 -38
- bpy/ops/console/__init__.pyi +17 -6
- bpy/ops/constraint/__init__.pyi +28 -28
- bpy/ops/curve/__init__.pyi +72 -34
- bpy/ops/curves/__init__.pyi +16 -16
- bpy/ops/dpaint/__init__.pyi +4 -4
- bpy/ops/ed/__init__.pyi +5 -2
- bpy/ops/export_anim/__init__.pyi +3 -2
- bpy/ops/export_scene/__init__.pyi +55 -45
- bpy/ops/file/__init__.pyi +40 -16
- bpy/ops/font/__init__.pyi +59 -16
- bpy/ops/geometry/__init__.pyi +55 -20
- bpy/ops/gpencil/__init__.pyi +155 -122
- bpy/ops/graph/__init__.pyi +131 -52
- bpy/ops/grease_pencil/__init__.pyi +78 -58
- bpy/ops/image/__init__.pyi +77 -54
- bpy/ops/import_anim/__init__.pyi +11 -8
- bpy/ops/import_scene/__init__.pyi +20 -18
- bpy/ops/info/__init__.pyi +4 -4
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +6 -6
- bpy/ops/mask/__init__.pyi +13 -12
- bpy/ops/mball/__init__.pyi +6 -6
- bpy/ops/mesh/__init__.pyi +290 -150
- bpy/ops/nla/__init__.pyi +28 -20
- bpy/ops/node/__init__.pyi +43 -32
- bpy/ops/object/__init__.pyi +651 -210
- bpy/ops/outliner/__init__.pyi +113 -32
- bpy/ops/paint/__init__.pyi +65 -56
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +14 -14
- bpy/ops/pose/__init__.pyi +121 -44
- bpy/ops/preferences/__init__.pyi +9 -6
- bpy/ops/render/__init__.pyi +3 -2
- bpy/ops/rigidbody/__init__.pyi +45 -14
- bpy/ops/scene/__init__.pyi +69 -22
- bpy/ops/screen/__init__.pyi +78 -16
- bpy/ops/sculpt/__init__.pyi +131 -74
- bpy/ops/sculpt_curves/__init__.pyi +2 -2
- bpy/ops/sequencer/__init__.pyi +156 -60
- bpy/ops/sound/__init__.pyi +40 -16
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +65 -20
- bpy/ops/texture/__init__.pyi +2 -2
- bpy/ops/transform/__init__.pyi +344 -72
- bpy/ops/ui/__init__.pyi +9 -6
- bpy/ops/uilist/__init__.pyi +2 -2
- bpy/ops/uv/__init__.pyi +90 -66
- bpy/ops/view3d/__init__.pyi +36 -30
- bpy/ops/wm/__init__.pyi +443 -156
- bpy/types/__init__.pyi +28584 -2857
- {fake_bpy_module-20240803.dist-info → fake_bpy_module-20240805.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240803.dist-info → fake_bpy_module-20240805.dist-info}/RECORD +76 -75
- freestyle/chainingiterators/__init__.pyi +4 -4
- freestyle/types/__init__.pyi +76 -63
- idprop/types/__init__.pyi +2 -2
- imbuf/types/__init__.pyi +2 -2
- mathutils/__init__.pyi +1004 -970
- mathutils/bvhtree/__init__.pyi +2 -2
- {fake_bpy_module-20240803.dist-info → fake_bpy_module-20240805.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240803.dist-info → fake_bpy_module-20240805.dist-info}/top_level.txt +0 -0
bpy/ops/view3d/__init__.pyi
CHANGED
|
@@ -170,7 +170,7 @@ def cursor3d(
|
|
|
170
170
|
undo: bool | None = None,
|
|
171
171
|
*,
|
|
172
172
|
use_depth: bool | None = True,
|
|
173
|
-
orientation:
|
|
173
|
+
orientation: typing.Literal["NONE", "VIEW", "XFORM", "GEOM"] | None = "VIEW",
|
|
174
174
|
):
|
|
175
175
|
"""Set the location of the 3D cursor
|
|
176
176
|
|
|
@@ -192,7 +192,7 @@ def cursor3d(
|
|
|
192
192
|
|
|
193
193
|
GEOM
|
|
194
194
|
Geometry -- Match the surface normal.
|
|
195
|
-
:type orientation:
|
|
195
|
+
:type orientation: typing.Literal['NONE','VIEW','XFORM','GEOM'] | None
|
|
196
196
|
"""
|
|
197
197
|
|
|
198
198
|
...
|
|
@@ -324,11 +324,14 @@ def interactive_add(
|
|
|
324
324
|
execution_context: int | str | None = None,
|
|
325
325
|
undo: bool | None = None,
|
|
326
326
|
*,
|
|
327
|
-
primitive_type:
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
327
|
+
primitive_type: typing.Literal[
|
|
328
|
+
"CUBE", "CYLINDER", "CONE", "SPHERE_UV", "SPHERE_ICO"
|
|
329
|
+
]
|
|
330
|
+
| None = "CUBE",
|
|
331
|
+
plane_origin_base: typing.Literal["EDGE", "CENTER"] | None = "EDGE",
|
|
332
|
+
plane_origin_depth: typing.Literal["EDGE", "CENTER"] | None = "EDGE",
|
|
333
|
+
plane_aspect_base: typing.Literal["FREE", "FIXED"] | None = "FREE",
|
|
334
|
+
plane_aspect_depth: typing.Literal["FREE", "FIXED"] | None = "FREE",
|
|
332
335
|
wait_for_input: bool | None = True,
|
|
333
336
|
):
|
|
334
337
|
"""Interactively add an object
|
|
@@ -337,7 +340,7 @@ def interactive_add(
|
|
|
337
340
|
:type execution_context: int | str | None
|
|
338
341
|
:type undo: bool | None
|
|
339
342
|
:param primitive_type: Primitive
|
|
340
|
-
:type primitive_type:
|
|
343
|
+
:type primitive_type: typing.Literal['CUBE','CYLINDER','CONE','SPHERE_UV','SPHERE_ICO'] | None
|
|
341
344
|
:param plane_origin_base: Origin, The initial position for placement
|
|
342
345
|
|
|
343
346
|
EDGE
|
|
@@ -345,7 +348,7 @@ def interactive_add(
|
|
|
345
348
|
|
|
346
349
|
CENTER
|
|
347
350
|
Center -- Start placing the center position.
|
|
348
|
-
:type plane_origin_base:
|
|
351
|
+
:type plane_origin_base: typing.Literal['EDGE','CENTER'] | None
|
|
349
352
|
:param plane_origin_depth: Origin, The initial position for placement
|
|
350
353
|
|
|
351
354
|
EDGE
|
|
@@ -353,7 +356,7 @@ def interactive_add(
|
|
|
353
356
|
|
|
354
357
|
CENTER
|
|
355
358
|
Center -- Start placing the center position.
|
|
356
|
-
:type plane_origin_depth:
|
|
359
|
+
:type plane_origin_depth: typing.Literal['EDGE','CENTER'] | None
|
|
357
360
|
:param plane_aspect_base: Aspect, The initial aspect setting
|
|
358
361
|
|
|
359
362
|
FREE
|
|
@@ -361,7 +364,7 @@ def interactive_add(
|
|
|
361
364
|
|
|
362
365
|
FIXED
|
|
363
366
|
Fixed -- Use a fixed 1:1 aspect.
|
|
364
|
-
:type plane_aspect_base:
|
|
367
|
+
:type plane_aspect_base: typing.Literal['FREE','FIXED'] | None
|
|
365
368
|
:param plane_aspect_depth: Aspect, The initial aspect setting
|
|
366
369
|
|
|
367
370
|
FREE
|
|
@@ -369,7 +372,7 @@ def interactive_add(
|
|
|
369
372
|
|
|
370
373
|
FIXED
|
|
371
374
|
Fixed -- Use a fixed 1:1 aspect.
|
|
372
|
-
:type plane_aspect_depth:
|
|
375
|
+
:type plane_aspect_depth: typing.Literal['FREE','FIXED'] | None
|
|
373
376
|
:param wait_for_input: Wait for Input
|
|
374
377
|
:type wait_for_input: bool | None
|
|
375
378
|
"""
|
|
@@ -673,7 +676,7 @@ def select_box(
|
|
|
673
676
|
ymin: int | None = 0,
|
|
674
677
|
ymax: int | None = 0,
|
|
675
678
|
wait_for_input: bool | None = True,
|
|
676
|
-
mode:
|
|
679
|
+
mode: typing.Literal["SET", "ADD", "SUB", "XOR", "AND"] | None = "SET",
|
|
677
680
|
):
|
|
678
681
|
"""Select items using box selection
|
|
679
682
|
|
|
@@ -706,7 +709,7 @@ def select_box(
|
|
|
706
709
|
|
|
707
710
|
AND
|
|
708
711
|
Intersect -- Intersect existing selection.
|
|
709
|
-
:type mode:
|
|
712
|
+
:type mode: typing.Literal['SET','ADD','SUB','XOR','AND'] | None
|
|
710
713
|
"""
|
|
711
714
|
|
|
712
715
|
...
|
|
@@ -720,7 +723,7 @@ def select_circle(
|
|
|
720
723
|
y: int | None = 0,
|
|
721
724
|
radius: int | None = 25,
|
|
722
725
|
wait_for_input: bool | None = True,
|
|
723
|
-
mode:
|
|
726
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
724
727
|
):
|
|
725
728
|
"""Select items using circle selection
|
|
726
729
|
|
|
@@ -745,7 +748,7 @@ def select_circle(
|
|
|
745
748
|
|
|
746
749
|
SUB
|
|
747
750
|
Subtract -- Subtract existing selection.
|
|
748
|
-
:type mode:
|
|
751
|
+
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
749
752
|
"""
|
|
750
753
|
|
|
751
754
|
...
|
|
@@ -759,7 +762,7 @@ def select_lasso(
|
|
|
759
762
|
use_smooth_stroke: bool | None = False,
|
|
760
763
|
smooth_stroke_factor: float | None = 0.75,
|
|
761
764
|
smooth_stroke_radius: int | None = 35,
|
|
762
|
-
mode:
|
|
765
|
+
mode: typing.Literal["SET", "ADD", "SUB", "XOR", "AND"] | None = "SET",
|
|
763
766
|
):
|
|
764
767
|
"""Select items using lasso selection
|
|
765
768
|
|
|
@@ -790,7 +793,7 @@ def select_lasso(
|
|
|
790
793
|
|
|
791
794
|
AND
|
|
792
795
|
Intersect -- Intersect existing selection.
|
|
793
|
-
:type mode:
|
|
796
|
+
:type mode: typing.Literal['SET','ADD','SUB','XOR','AND'] | None
|
|
794
797
|
"""
|
|
795
798
|
|
|
796
799
|
...
|
|
@@ -957,7 +960,8 @@ def toggle_shading(
|
|
|
957
960
|
execution_context: int | str | None = None,
|
|
958
961
|
undo: bool | None = None,
|
|
959
962
|
*,
|
|
960
|
-
type:
|
|
963
|
+
type: typing.Literal["WIREFRAME", "SOLID", "MATERIAL", "RENDERED"]
|
|
964
|
+
| None = "WIREFRAME",
|
|
961
965
|
):
|
|
962
966
|
"""Toggle shading type in 3D viewport
|
|
963
967
|
|
|
@@ -977,7 +981,7 @@ def toggle_shading(
|
|
|
977
981
|
|
|
978
982
|
RENDERED
|
|
979
983
|
Rendered -- Toggle rendered shading.
|
|
980
|
-
:type type:
|
|
984
|
+
:type type: typing.Literal['WIREFRAME','SOLID','MATERIAL','RENDERED'] | None
|
|
981
985
|
"""
|
|
982
986
|
|
|
983
987
|
...
|
|
@@ -1002,7 +1006,7 @@ def transform_gizmo_set(
|
|
|
1002
1006
|
undo: bool | None = None,
|
|
1003
1007
|
*,
|
|
1004
1008
|
extend: bool | None = False,
|
|
1005
|
-
type: set[
|
|
1009
|
+
type: set[typing.Literal["TRANSLATE", "ROTATE", "SCALE"]] | None = {},
|
|
1006
1010
|
):
|
|
1007
1011
|
"""Set the current transform gizmo
|
|
1008
1012
|
|
|
@@ -1012,7 +1016,7 @@ def transform_gizmo_set(
|
|
|
1012
1016
|
:param extend: Extend
|
|
1013
1017
|
:type extend: bool | None
|
|
1014
1018
|
:param type: Type
|
|
1015
|
-
:type type: set[
|
|
1019
|
+
:type type: set[typing.Literal['TRANSLATE','ROTATE','SCALE']] | None
|
|
1016
1020
|
"""
|
|
1017
1021
|
|
|
1018
1022
|
...
|
|
@@ -1043,7 +1047,8 @@ def view_axis(
|
|
|
1043
1047
|
execution_context: int | str | None = None,
|
|
1044
1048
|
undo: bool | None = None,
|
|
1045
1049
|
*,
|
|
1046
|
-
type:
|
|
1050
|
+
type: typing.Literal["LEFT", "RIGHT", "BOTTOM", "TOP", "FRONT", "BACK"]
|
|
1051
|
+
| None = "LEFT",
|
|
1047
1052
|
align_active: bool | None = False,
|
|
1048
1053
|
relative: bool | None = False,
|
|
1049
1054
|
):
|
|
@@ -1071,7 +1076,7 @@ def view_axis(
|
|
|
1071
1076
|
|
|
1072
1077
|
BACK
|
|
1073
1078
|
Back -- View from the back.
|
|
1074
|
-
:type type:
|
|
1079
|
+
:type type: typing.Literal['LEFT','RIGHT','BOTTOM','TOP','FRONT','BACK'] | None
|
|
1075
1080
|
:param align_active: Align Active, Align to the active object's axis
|
|
1076
1081
|
:type align_active: bool | None
|
|
1077
1082
|
:param relative: Relative, Rotate relative to the current orientation
|
|
@@ -1184,7 +1189,8 @@ def view_orbit(
|
|
|
1184
1189
|
undo: bool | None = None,
|
|
1185
1190
|
*,
|
|
1186
1191
|
angle: float | None = 0.0,
|
|
1187
|
-
type:
|
|
1192
|
+
type: typing.Literal["ORBITLEFT", "ORBITRIGHT", "ORBITUP", "ORBITDOWN"]
|
|
1193
|
+
| None = "ORBITLEFT",
|
|
1188
1194
|
):
|
|
1189
1195
|
"""Orbit the view
|
|
1190
1196
|
|
|
@@ -1206,7 +1212,7 @@ def view_orbit(
|
|
|
1206
1212
|
|
|
1207
1213
|
ORBITDOWN
|
|
1208
1214
|
Orbit Down -- Orbit the view down.
|
|
1209
|
-
:type type:
|
|
1215
|
+
:type type: typing.Literal['ORBITLEFT','ORBITRIGHT','ORBITUP','ORBITDOWN'] | None
|
|
1210
1216
|
"""
|
|
1211
1217
|
|
|
1212
1218
|
...
|
|
@@ -1216,7 +1222,7 @@ def view_pan(
|
|
|
1216
1222
|
execution_context: int | str | None = None,
|
|
1217
1223
|
undo: bool | None = None,
|
|
1218
1224
|
*,
|
|
1219
|
-
type:
|
|
1225
|
+
type: typing.Literal["PANLEFT", "PANRIGHT", "PANUP", "PANDOWN"] | None = "PANLEFT",
|
|
1220
1226
|
):
|
|
1221
1227
|
"""Pan the view in a given direction
|
|
1222
1228
|
|
|
@@ -1236,7 +1242,7 @@ def view_pan(
|
|
|
1236
1242
|
|
|
1237
1243
|
PANDOWN
|
|
1238
1244
|
Pan Down -- Pan the view down.
|
|
1239
|
-
:type type:
|
|
1245
|
+
:type type: typing.Literal['PANLEFT','PANRIGHT','PANUP','PANDOWN'] | None
|
|
1240
1246
|
"""
|
|
1241
1247
|
|
|
1242
1248
|
...
|
|
@@ -1261,7 +1267,7 @@ def view_roll(
|
|
|
1261
1267
|
undo: bool | None = None,
|
|
1262
1268
|
*,
|
|
1263
1269
|
angle: float | None = 0.0,
|
|
1264
|
-
type:
|
|
1270
|
+
type: typing.Literal["ANGLE", "LEFT", "RIGHT"] | None = "ANGLE",
|
|
1265
1271
|
):
|
|
1266
1272
|
"""Roll the view
|
|
1267
1273
|
|
|
@@ -1280,7 +1286,7 @@ def view_roll(
|
|
|
1280
1286
|
|
|
1281
1287
|
RIGHT
|
|
1282
1288
|
Roll Right -- Roll the view around to the right.
|
|
1283
|
-
:type type:
|
|
1289
|
+
:type type: typing.Literal['ANGLE','LEFT','RIGHT'] | None
|
|
1284
1290
|
"""
|
|
1285
1291
|
|
|
1286
1292
|
...
|