fake-bpy-module 20240410__py3-none-any.whl → 20240417__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_operators/presets/__init__.pyi +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +371 -0
- bpy/app/translations/__init__.pyi +1 -1
- bpy/ops/curves/__init__.pyi +99 -0
- bpy/ops/export_scene/__init__.pyi +6 -3
- bpy/ops/grease_pencil/__init__.pyi +29 -0
- bpy/ops/mesh/__init__.pyi +1 -1
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +1 -1
- bpy/ops/object/__init__.pyi +8 -8
- bpy/ops/outliner/__init__.pyi +1 -1
- bpy/ops/preferences/__init__.pyi +1 -1
- bpy/ops/sculpt/__init__.pyi +8 -2
- bpy/ops/wm/__init__.pyi +4 -1
- bpy/types/__init__.pyi +272 -189
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/RECORD +25 -25
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/top_level.txt +0 -0
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -1514,9 +1514,9 @@ def gpencil_add(
|
|
|
1514
1514
|
:type scale: typing.Any
|
|
1515
1515
|
:param type: Type
|
|
1516
1516
|
:type type: typing.Union[str, int]
|
|
1517
|
-
:param use_in_front: Show In Front, Show
|
|
1517
|
+
:param use_in_front: Show In Front, Show Line Art grease pencil in front of everything
|
|
1518
1518
|
:type use_in_front: typing.Union[bool, typing.Any]
|
|
1519
|
-
:param stroke_depth_offset: Stroke Offset, Stroke offset for the
|
|
1519
|
+
:param stroke_depth_offset: Stroke Offset, Stroke offset for the Line Art modifier
|
|
1520
1520
|
:type stroke_depth_offset: typing.Any
|
|
1521
1521
|
:param use_lights: Use Lights, Use lights for this grease pencil object
|
|
1522
1522
|
:type use_lights: typing.Union[bool, typing.Any]
|
|
@@ -1708,9 +1708,9 @@ def grease_pencil_add(
|
|
|
1708
1708
|
:type undo: bool
|
|
1709
1709
|
:param type: Type
|
|
1710
1710
|
:type type: typing.Union[str, int]
|
|
1711
|
-
:param use_in_front: Show In Front, Show
|
|
1711
|
+
:param use_in_front: Show In Front, Show Line Art grease pencil in front of everything
|
|
1712
1712
|
:type use_in_front: typing.Union[bool, typing.Any]
|
|
1713
|
-
:param stroke_depth_offset: Stroke Offset, Stroke offset for the
|
|
1713
|
+
:param stroke_depth_offset: Stroke Offset, Stroke offset for the Line Art modifier
|
|
1714
1714
|
:type stroke_depth_offset: typing.Any
|
|
1715
1715
|
:param use_lights: Use Lights, Use lights for this grease pencil object
|
|
1716
1716
|
:type use_lights: typing.Union[bool, typing.Any]
|
|
@@ -2443,7 +2443,7 @@ def lineart_bake_strokes(
|
|
|
2443
2443
|
execution_context: str = None,
|
|
2444
2444
|
undo: bool = None,
|
|
2445
2445
|
):
|
|
2446
|
-
"""Bake Line Art for current
|
|
2446
|
+
"""Bake Line Art for current Grease Pencil object
|
|
2447
2447
|
|
|
2448
2448
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
2449
2449
|
:type execution_context: str
|
|
@@ -2457,7 +2457,7 @@ def lineart_bake_strokes_all(
|
|
|
2457
2457
|
execution_context: str = None,
|
|
2458
2458
|
undo: bool = None,
|
|
2459
2459
|
):
|
|
2460
|
-
"""Bake all Grease Pencil objects that have a
|
|
2460
|
+
"""Bake all Grease Pencil objects that have a Line Art modifier
|
|
2461
2461
|
|
|
2462
2462
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
2463
2463
|
:type execution_context: str
|
|
@@ -2471,7 +2471,7 @@ def lineart_clear(
|
|
|
2471
2471
|
execution_context: str = None,
|
|
2472
2472
|
undo: bool = None,
|
|
2473
2473
|
):
|
|
2474
|
-
"""Clear all strokes in current
|
|
2474
|
+
"""Clear all strokes in current Grease Pencil object
|
|
2475
2475
|
|
|
2476
2476
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
2477
2477
|
:type execution_context: str
|
|
@@ -2485,7 +2485,7 @@ def lineart_clear_all(
|
|
|
2485
2485
|
execution_context: str = None,
|
|
2486
2486
|
undo: bool = None,
|
|
2487
2487
|
):
|
|
2488
|
-
"""Clear all strokes in all Grease Pencil objects that have a
|
|
2488
|
+
"""Clear all strokes in all Grease Pencil objects that have a Line Art modifier
|
|
2489
2489
|
|
|
2490
2490
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
2491
2491
|
:type execution_context: str
|
bpy/ops/outliner/__init__.pyi
CHANGED
|
@@ -977,7 +977,7 @@ def orphans_purge(
|
|
|
977
977
|
undo: bool = None,
|
|
978
978
|
do_local_ids: typing.Union[bool, typing.Any] = True,
|
|
979
979
|
do_linked_ids: typing.Union[bool, typing.Any] = True,
|
|
980
|
-
do_recursive: typing.Union[bool, typing.Any] =
|
|
980
|
+
do_recursive: typing.Union[bool, typing.Any] = True,
|
|
981
981
|
):
|
|
982
982
|
"""Clear all orphaned data-blocks without any users from the file
|
|
983
983
|
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -350,7 +350,7 @@ def extension_repo_add(
|
|
|
350
350
|
:type name: typing.Union[str, typing.Any]
|
|
351
351
|
:param remote_path: URL, Remote URL or path for extension repository
|
|
352
352
|
:type remote_path: typing.Union[str, typing.Any]
|
|
353
|
-
:param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a
|
|
353
|
+
:param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
|
|
354
354
|
:type use_custom_directory: typing.Union[bool, typing.Any]
|
|
355
355
|
:param custom_directory: Custom Directory, The local directory containing extensions
|
|
356
356
|
:type custom_directory: typing.Union[str, typing.Any]
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -47,7 +47,7 @@ def cloth_filter(
|
|
|
47
47
|
bpy.types.OperatorStrokeElement
|
|
48
48
|
] = None,
|
|
49
49
|
type: typing.Any = "GRAVITY",
|
|
50
|
-
force_axis: typing.Any = {'"
|
|
50
|
+
force_axis: typing.Any = {'"Z"', '"Y"', '"X"'},
|
|
51
51
|
orientation: typing.Any = "LOCAL",
|
|
52
52
|
cloth_mass: typing.Any = 1.0,
|
|
53
53
|
cloth_damping: typing.Any = 0.0,
|
|
@@ -599,7 +599,7 @@ def mesh_filter(
|
|
|
599
599
|
bpy.types.OperatorStrokeElement
|
|
600
600
|
] = None,
|
|
601
601
|
type: typing.Any = "INFLATE",
|
|
602
|
-
deform_axis: typing.Any = {'"
|
|
602
|
+
deform_axis: typing.Any = {'"Z"', '"Y"', '"X"'},
|
|
603
603
|
orientation: typing.Any = "LOCAL",
|
|
604
604
|
surface_smooth_shape_preservation: typing.Any = 0.5,
|
|
605
605
|
surface_smooth_current_vertex: typing.Any = 0.5,
|
|
@@ -877,6 +877,7 @@ def trim_box_gesture(
|
|
|
877
877
|
ymax: typing.Any = 0,
|
|
878
878
|
wait_for_input: typing.Union[bool, typing.Any] = True,
|
|
879
879
|
use_front_faces_only: typing.Union[bool, typing.Any] = False,
|
|
880
|
+
location: typing.Any = (0, 0),
|
|
880
881
|
trim_mode: typing.Any = "DIFFERENCE",
|
|
881
882
|
use_cursor_depth: typing.Union[bool, typing.Any] = False,
|
|
882
883
|
trim_orientation: typing.Any = "VIEW",
|
|
@@ -900,6 +901,8 @@ def trim_box_gesture(
|
|
|
900
901
|
:type wait_for_input: typing.Union[bool, typing.Any]
|
|
901
902
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
902
903
|
:type use_front_faces_only: typing.Union[bool, typing.Any]
|
|
904
|
+
:param location: Location, Mouse location
|
|
905
|
+
:type location: typing.Any
|
|
903
906
|
:param trim_mode: Trim Mode
|
|
904
907
|
|
|
905
908
|
DIFFERENCE
|
|
@@ -947,6 +950,7 @@ def trim_lasso_gesture(
|
|
|
947
950
|
undo: bool = None,
|
|
948
951
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
|
|
949
952
|
use_front_faces_only: typing.Union[bool, typing.Any] = False,
|
|
953
|
+
location: typing.Any = (0, 0),
|
|
950
954
|
trim_mode: typing.Any = "DIFFERENCE",
|
|
951
955
|
use_cursor_depth: typing.Union[bool, typing.Any] = False,
|
|
952
956
|
trim_orientation: typing.Any = "VIEW",
|
|
@@ -962,6 +966,8 @@ def trim_lasso_gesture(
|
|
|
962
966
|
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
|
|
963
967
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
964
968
|
:type use_front_faces_only: typing.Union[bool, typing.Any]
|
|
969
|
+
:param location: Location, Mouse location
|
|
970
|
+
:type location: typing.Any
|
|
965
971
|
:param trim_mode: Trim Mode
|
|
966
972
|
|
|
967
973
|
DIFFERENCE
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -40,6 +40,7 @@ def alembic_export(
|
|
|
40
40
|
selected: typing.Union[bool, typing.Any] = False,
|
|
41
41
|
visible_objects_only: typing.Union[bool, typing.Any] = False,
|
|
42
42
|
flatten: typing.Union[bool, typing.Any] = False,
|
|
43
|
+
collection: typing.Union[str, typing.Any] = "",
|
|
43
44
|
uvs: typing.Union[bool, typing.Any] = True,
|
|
44
45
|
packuv: typing.Union[bool, typing.Any] = True,
|
|
45
46
|
normals: typing.Union[bool, typing.Any] = True,
|
|
@@ -141,6 +142,8 @@ def alembic_export(
|
|
|
141
142
|
:type visible_objects_only: typing.Union[bool, typing.Any]
|
|
142
143
|
:param flatten: Flatten Hierarchy, Do not preserve objects' parent/children relationship
|
|
143
144
|
:type flatten: typing.Union[bool, typing.Any]
|
|
145
|
+
:param collection: Collection
|
|
146
|
+
:type collection: typing.Union[str, typing.Any]
|
|
144
147
|
:param uvs: UVs, Export UVs
|
|
145
148
|
:type uvs: typing.Union[bool, typing.Any]
|
|
146
149
|
:param packuv: Pack UV Islands, Export UVs with packed island
|
|
@@ -741,7 +744,7 @@ def collada_export(
|
|
|
741
744
|
:type include_shapekeys: typing.Union[bool, typing.Any]
|
|
742
745
|
:param deform_bones_only: Deform Bones Only, Only export deforming bones with armatures
|
|
743
746
|
:type deform_bones_only: typing.Union[bool, typing.Any]
|
|
744
|
-
:param include_animations: Include Animations, Export animations if available (exporting animations will enforce the decomposition of node transforms into
|
|
747
|
+
:param include_animations: Include Animations, Export animations if available (exporting animations will enforce the decomposition of node transforms into <translation> <rotation> and <scale> components)
|
|
745
748
|
:type include_animations: typing.Union[bool, typing.Any]
|
|
746
749
|
:param include_all_actions: Include all Actions, Export also unassigned actions (this allows you to export entire animation libraries for your character(s))
|
|
747
750
|
:type include_all_actions: typing.Union[bool, typing.Any]
|