fake-bpy-module 20241003__py3-none-any.whl → 20241008__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/properties_data_gpencil/__init__.pyi +0 -256
- bl_ui/properties_grease_pencil_common/__init__.pyi +0 -220
- bl_ui/properties_object/__init__.pyi +149 -0
- bl_ui/properties_paint_common/__init__.pyi +43 -0
- bl_ui/space_dopesheet/__init__.pyi +0 -194
- bl_ui/space_toolsystem_toolbar/__init__.pyi +0 -56
- bl_ui/space_topbar/__init__.pyi +0 -43
- bl_ui/space_view3d/__init__.pyi +45 -721
- bl_ui/space_view3d_toolbar/__init__.pyi +0 -28
- bpy/ops/file/__init__.pyi +3 -0
- bpy/ops/gpencil/__init__.pyi +9 -2857
- bpy/ops/grease_pencil/__init__.pyi +16 -0
- bpy/ops/mesh/__init__.pyi +25 -0
- bpy/ops/node/__init__.pyi +24 -24
- bpy/ops/object/__init__.pyi +3 -66
- bpy/ops/wm/__init__.pyi +13 -357
- bpy/types/__init__.pyi +126 -250
- bpy/typing/__init__.pyi +8 -8
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/RECORD +22 -22
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/top_level.txt +0 -0
|
@@ -852,6 +852,22 @@ def material_hide(
|
|
|
852
852
|
:type invert: bool | None
|
|
853
853
|
"""
|
|
854
854
|
|
|
855
|
+
def material_isolate(
|
|
856
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
857
|
+
execution_context: int | str | None = None,
|
|
858
|
+
undo: bool | None = None,
|
|
859
|
+
*,
|
|
860
|
+
affect_visibility: bool | None = False,
|
|
861
|
+
):
|
|
862
|
+
"""Toggle whether the active material is the only one that is editable and/or visible
|
|
863
|
+
|
|
864
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
865
|
+
:type execution_context: int | str | None
|
|
866
|
+
:type undo: bool | None
|
|
867
|
+
:param affect_visibility: Affect Visibility, In addition to toggling the editability, also affect the visibility
|
|
868
|
+
:type affect_visibility: bool | None
|
|
869
|
+
"""
|
|
870
|
+
|
|
855
871
|
def material_lock_all(
|
|
856
872
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
857
873
|
execution_context: int | str | None = None,
|
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -3095,6 +3095,31 @@ def select_by_attribute(
|
|
|
3095
3095
|
:type undo: bool | None
|
|
3096
3096
|
"""
|
|
3097
3097
|
|
|
3098
|
+
def select_by_pole_count(
|
|
3099
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3100
|
+
execution_context: int | str | None = None,
|
|
3101
|
+
undo: bool | None = None,
|
|
3102
|
+
*,
|
|
3103
|
+
pole_count: int | None = 4,
|
|
3104
|
+
type: typing.Literal["LESS", "EQUAL", "GREATER", "NOTEQUAL"] | None = "NOTEQUAL",
|
|
3105
|
+
extend: bool | None = False,
|
|
3106
|
+
exclude_nonmanifold: bool | None = True,
|
|
3107
|
+
):
|
|
3108
|
+
"""Select vertices at poles by the number of connected edges. In edge and face mode the geometry connected to the vertices is selected
|
|
3109
|
+
|
|
3110
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3111
|
+
:type execution_context: int | str | None
|
|
3112
|
+
:type undo: bool | None
|
|
3113
|
+
:param pole_count: Pole Count
|
|
3114
|
+
:type pole_count: int | None
|
|
3115
|
+
:param type: Type, Type of comparison to make
|
|
3116
|
+
:type type: typing.Literal['LESS','EQUAL','GREATER','NOTEQUAL'] | None
|
|
3117
|
+
:param extend: Extend, Extend the selection
|
|
3118
|
+
:type extend: bool | None
|
|
3119
|
+
:param exclude_nonmanifold: Exclude Non Manifold, Exclude non-manifold poles
|
|
3120
|
+
:type exclude_nonmanifold: bool | None
|
|
3121
|
+
"""
|
|
3122
|
+
|
|
3098
3123
|
def select_face_by_sides(
|
|
3099
3124
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3100
3125
|
execution_context: int | str | None = None,
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -447,7 +447,7 @@ def bake_node_item_add(
|
|
|
447
447
|
execution_context: int | str | None = None,
|
|
448
448
|
undo: bool | None = None,
|
|
449
449
|
):
|
|
450
|
-
"""Add
|
|
450
|
+
"""Add item below active item
|
|
451
451
|
|
|
452
452
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
453
453
|
:type execution_context: int | str | None
|
|
@@ -461,7 +461,7 @@ def bake_node_item_move(
|
|
|
461
461
|
*,
|
|
462
462
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
463
463
|
):
|
|
464
|
-
"""Move active
|
|
464
|
+
"""Move active item
|
|
465
465
|
|
|
466
466
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
467
467
|
:type execution_context: int | str | None
|
|
@@ -475,7 +475,7 @@ def bake_node_item_remove(
|
|
|
475
475
|
execution_context: int | str | None = None,
|
|
476
476
|
undo: bool | None = None,
|
|
477
477
|
):
|
|
478
|
-
"""Remove active
|
|
478
|
+
"""Remove active item
|
|
479
479
|
|
|
480
480
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
481
481
|
:type execution_context: int | str | None
|
|
@@ -487,7 +487,7 @@ def capture_attribute_item_add(
|
|
|
487
487
|
execution_context: int | str | None = None,
|
|
488
488
|
undo: bool | None = None,
|
|
489
489
|
):
|
|
490
|
-
"""Add
|
|
490
|
+
"""Add item below active item
|
|
491
491
|
|
|
492
492
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
493
493
|
:type execution_context: int | str | None
|
|
@@ -501,7 +501,7 @@ def capture_attribute_item_move(
|
|
|
501
501
|
*,
|
|
502
502
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
503
503
|
):
|
|
504
|
-
"""Move active
|
|
504
|
+
"""Move active item
|
|
505
505
|
|
|
506
506
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
507
507
|
:type execution_context: int | str | None
|
|
@@ -515,7 +515,7 @@ def capture_attribute_item_remove(
|
|
|
515
515
|
execution_context: int | str | None = None,
|
|
516
516
|
undo: bool | None = None,
|
|
517
517
|
):
|
|
518
|
-
"""Remove active
|
|
518
|
+
"""Remove active item
|
|
519
519
|
|
|
520
520
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
521
521
|
:type execution_context: int | str | None
|
|
@@ -777,7 +777,7 @@ def enum_definition_item_add(
|
|
|
777
777
|
execution_context: int | str | None = None,
|
|
778
778
|
undo: bool | None = None,
|
|
779
779
|
):
|
|
780
|
-
"""Add
|
|
780
|
+
"""Add item below active item
|
|
781
781
|
|
|
782
782
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
783
783
|
:type execution_context: int | str | None
|
|
@@ -791,7 +791,7 @@ def enum_definition_item_move(
|
|
|
791
791
|
*,
|
|
792
792
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
793
793
|
):
|
|
794
|
-
"""Move active
|
|
794
|
+
"""Move active item
|
|
795
795
|
|
|
796
796
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
797
797
|
:type execution_context: int | str | None
|
|
@@ -805,7 +805,7 @@ def enum_definition_item_remove(
|
|
|
805
805
|
execution_context: int | str | None = None,
|
|
806
806
|
undo: bool | None = None,
|
|
807
807
|
):
|
|
808
|
-
"""Remove active
|
|
808
|
+
"""Remove active item
|
|
809
809
|
|
|
810
810
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
811
811
|
:type execution_context: int | str | None
|
|
@@ -829,7 +829,7 @@ def foreach_geometry_element_zone_generation_item_add(
|
|
|
829
829
|
execution_context: int | str | None = None,
|
|
830
830
|
undo: bool | None = None,
|
|
831
831
|
):
|
|
832
|
-
"""Add
|
|
832
|
+
"""Add item below active item
|
|
833
833
|
|
|
834
834
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
835
835
|
:type execution_context: int | str | None
|
|
@@ -843,7 +843,7 @@ def foreach_geometry_element_zone_generation_item_move(
|
|
|
843
843
|
*,
|
|
844
844
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
845
845
|
):
|
|
846
|
-
"""Move active
|
|
846
|
+
"""Move active item
|
|
847
847
|
|
|
848
848
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
849
849
|
:type execution_context: int | str | None
|
|
@@ -857,7 +857,7 @@ def foreach_geometry_element_zone_generation_item_remove(
|
|
|
857
857
|
execution_context: int | str | None = None,
|
|
858
858
|
undo: bool | None = None,
|
|
859
859
|
):
|
|
860
|
-
"""Remove active
|
|
860
|
+
"""Remove active item
|
|
861
861
|
|
|
862
862
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
863
863
|
:type execution_context: int | str | None
|
|
@@ -869,7 +869,7 @@ def foreach_geometry_element_zone_input_item_add(
|
|
|
869
869
|
execution_context: int | str | None = None,
|
|
870
870
|
undo: bool | None = None,
|
|
871
871
|
):
|
|
872
|
-
"""Add
|
|
872
|
+
"""Add item below active item
|
|
873
873
|
|
|
874
874
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
875
875
|
:type execution_context: int | str | None
|
|
@@ -883,7 +883,7 @@ def foreach_geometry_element_zone_input_item_move(
|
|
|
883
883
|
*,
|
|
884
884
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
885
885
|
):
|
|
886
|
-
"""Move active
|
|
886
|
+
"""Move active item
|
|
887
887
|
|
|
888
888
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
889
889
|
:type execution_context: int | str | None
|
|
@@ -897,7 +897,7 @@ def foreach_geometry_element_zone_input_item_remove(
|
|
|
897
897
|
execution_context: int | str | None = None,
|
|
898
898
|
undo: bool | None = None,
|
|
899
899
|
):
|
|
900
|
-
"""Remove active
|
|
900
|
+
"""Remove active item
|
|
901
901
|
|
|
902
902
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
903
903
|
:type execution_context: int | str | None
|
|
@@ -909,7 +909,7 @@ def foreach_geometry_element_zone_main_item_add(
|
|
|
909
909
|
execution_context: int | str | None = None,
|
|
910
910
|
undo: bool | None = None,
|
|
911
911
|
):
|
|
912
|
-
"""Add
|
|
912
|
+
"""Add item below active item
|
|
913
913
|
|
|
914
914
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
915
915
|
:type execution_context: int | str | None
|
|
@@ -923,7 +923,7 @@ def foreach_geometry_element_zone_main_item_move(
|
|
|
923
923
|
*,
|
|
924
924
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
925
925
|
):
|
|
926
|
-
"""Move active
|
|
926
|
+
"""Move active item
|
|
927
927
|
|
|
928
928
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
929
929
|
:type execution_context: int | str | None
|
|
@@ -937,7 +937,7 @@ def foreach_geometry_element_zone_main_item_remove(
|
|
|
937
937
|
execution_context: int | str | None = None,
|
|
938
938
|
undo: bool | None = None,
|
|
939
939
|
):
|
|
940
|
-
"""Remove active
|
|
940
|
+
"""Remove active item
|
|
941
941
|
|
|
942
942
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
943
943
|
:type execution_context: int | str | None
|
|
@@ -1509,7 +1509,7 @@ def repeat_zone_item_add(
|
|
|
1509
1509
|
execution_context: int | str | None = None,
|
|
1510
1510
|
undo: bool | None = None,
|
|
1511
1511
|
):
|
|
1512
|
-
"""Add
|
|
1512
|
+
"""Add item below active item
|
|
1513
1513
|
|
|
1514
1514
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1515
1515
|
:type execution_context: int | str | None
|
|
@@ -1523,7 +1523,7 @@ def repeat_zone_item_move(
|
|
|
1523
1523
|
*,
|
|
1524
1524
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1525
1525
|
):
|
|
1526
|
-
"""Move active
|
|
1526
|
+
"""Move active item
|
|
1527
1527
|
|
|
1528
1528
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1529
1529
|
:type execution_context: int | str | None
|
|
@@ -1537,7 +1537,7 @@ def repeat_zone_item_remove(
|
|
|
1537
1537
|
execution_context: int | str | None = None,
|
|
1538
1538
|
undo: bool | None = None,
|
|
1539
1539
|
):
|
|
1540
|
-
"""Remove active
|
|
1540
|
+
"""Remove active item
|
|
1541
1541
|
|
|
1542
1542
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1543
1543
|
:type execution_context: int | str | None
|
|
@@ -1836,7 +1836,7 @@ def simulation_zone_item_add(
|
|
|
1836
1836
|
execution_context: int | str | None = None,
|
|
1837
1837
|
undo: bool | None = None,
|
|
1838
1838
|
):
|
|
1839
|
-
"""Add
|
|
1839
|
+
"""Add item below active item
|
|
1840
1840
|
|
|
1841
1841
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1842
1842
|
:type execution_context: int | str | None
|
|
@@ -1850,7 +1850,7 @@ def simulation_zone_item_move(
|
|
|
1850
1850
|
*,
|
|
1851
1851
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1852
1852
|
):
|
|
1853
|
-
"""Move active
|
|
1853
|
+
"""Move active item
|
|
1854
1854
|
|
|
1855
1855
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1856
1856
|
:type execution_context: int | str | None
|
|
@@ -1864,7 +1864,7 @@ def simulation_zone_item_remove(
|
|
|
1864
1864
|
execution_context: int | str | None = None,
|
|
1865
1865
|
undo: bool | None = None,
|
|
1866
1866
|
):
|
|
1867
|
-
"""Remove active
|
|
1867
|
+
"""Remove active item
|
|
1868
1868
|
|
|
1869
1869
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1870
1870
|
:type execution_context: int | str | None
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -1610,72 +1610,6 @@ def geometry_nodes_move_to_nodes(
|
|
|
1610
1610
|
:type use_selected_objects: bool | None
|
|
1611
1611
|
"""
|
|
1612
1612
|
|
|
1613
|
-
def gpencil_add(
|
|
1614
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1615
|
-
execution_context: int | str | None = None,
|
|
1616
|
-
undo: bool | None = None,
|
|
1617
|
-
*,
|
|
1618
|
-
radius: float | None = 1.0,
|
|
1619
|
-
align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
|
|
1620
|
-
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
1621
|
-
0.0,
|
|
1622
|
-
0.0,
|
|
1623
|
-
0.0,
|
|
1624
|
-
),
|
|
1625
|
-
rotation: collections.abc.Sequence[float] | mathutils.Euler | None = (
|
|
1626
|
-
0.0,
|
|
1627
|
-
0.0,
|
|
1628
|
-
0.0,
|
|
1629
|
-
),
|
|
1630
|
-
scale: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
1631
|
-
type: bpy.typing.ObjectGpencilTypeItems | None = "EMPTY",
|
|
1632
|
-
use_in_front: bool | None = True,
|
|
1633
|
-
stroke_depth_offset: float | None = 0.05,
|
|
1634
|
-
use_lights: bool | None = False,
|
|
1635
|
-
stroke_depth_order: typing.Literal["2D", "3D"] | None = "3D",
|
|
1636
|
-
):
|
|
1637
|
-
"""Add a Grease Pencil object to the scene
|
|
1638
|
-
|
|
1639
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1640
|
-
:type execution_context: int | str | None
|
|
1641
|
-
:type undo: bool | None
|
|
1642
|
-
:param radius: Radius
|
|
1643
|
-
:type radius: float | None
|
|
1644
|
-
:param align: Align, The alignment of the new object
|
|
1645
|
-
|
|
1646
|
-
WORLD
|
|
1647
|
-
World -- Align the new object to the world.
|
|
1648
|
-
|
|
1649
|
-
VIEW
|
|
1650
|
-
View -- Align the new object to the view.
|
|
1651
|
-
|
|
1652
|
-
CURSOR
|
|
1653
|
-
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
1654
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
1655
|
-
:param location: Location, Location for the newly added object
|
|
1656
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1657
|
-
:param rotation: Rotation, Rotation for the newly added object
|
|
1658
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
1659
|
-
:param scale: Scale, Scale for the newly added object
|
|
1660
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1661
|
-
:param type: Type
|
|
1662
|
-
:type type: bpy.typing.ObjectGpencilTypeItems | None
|
|
1663
|
-
:param use_in_front: Show In Front, Show Line Art grease pencil in front of everything
|
|
1664
|
-
:type use_in_front: bool | None
|
|
1665
|
-
:param stroke_depth_offset: Stroke Offset, Stroke offset for the Line Art modifier
|
|
1666
|
-
:type stroke_depth_offset: float | None
|
|
1667
|
-
:param use_lights: Use Lights, Use lights for this grease pencil object
|
|
1668
|
-
:type use_lights: bool | None
|
|
1669
|
-
:param stroke_depth_order: Stroke Depth Order, Defines how the strokes are ordered in 3D space (for objects not displayed 'In Front')
|
|
1670
|
-
|
|
1671
|
-
2D
|
|
1672
|
-
2D Layers -- Display strokes using grease pencil layers to define order.
|
|
1673
|
-
|
|
1674
|
-
3D
|
|
1675
|
-
3D Location -- Display strokes using real 3D position in 3D space.
|
|
1676
|
-
:type stroke_depth_order: typing.Literal['2D','3D'] | None
|
|
1677
|
-
"""
|
|
1678
|
-
|
|
1679
1613
|
def grease_pencil_add(
|
|
1680
1614
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1681
1615
|
execution_context: int | str | None = None,
|
|
@@ -2864,6 +2798,7 @@ def modifier_apply(
|
|
|
2864
2798
|
report: bool | None = False,
|
|
2865
2799
|
merge_customdata: bool | None = True,
|
|
2866
2800
|
single_user: bool | None = False,
|
|
2801
|
+
all_keyframes: bool | None = False,
|
|
2867
2802
|
use_selected_objects: bool | None = False,
|
|
2868
2803
|
):
|
|
2869
2804
|
"""Apply modifier and remove from the stack
|
|
@@ -2879,6 +2814,8 @@ def modifier_apply(
|
|
|
2879
2814
|
:type merge_customdata: bool | None
|
|
2880
2815
|
:param single_user: Make Data Single User, Make the object's data single user if needed
|
|
2881
2816
|
:type single_user: bool | None
|
|
2817
|
+
:param all_keyframes: Apply to all keyframes, For Grease Pencil objects, apply the modifier to all the keyframes
|
|
2818
|
+
:type all_keyframes: bool | None
|
|
2882
2819
|
:param use_selected_objects: Selected Objects, Affect all selected objects instead of just the active object
|
|
2883
2820
|
:type use_selected_objects: bool | None
|
|
2884
2821
|
"""
|