fake-bpy-module 20250212__py3-none-any.whl → 20250214__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/__init__.pyi +1 -0
- bl_operators/grease_pencil/__init__.pyi +40 -0
- bl_ui/properties_data_mesh/__init__.pyi +1 -1
- bmesh/types/__init__.pyi +24 -0
- bpy/ops/grease_pencil/__init__.pyi +15 -0
- bpy/types/__init__.pyi +30687 -30672
- {fake_bpy_module-20250212.dist-info → fake_bpy_module-20250214.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250212.dist-info → fake_bpy_module-20250214.dist-info}/RECORD +10 -9
- {fake_bpy_module-20250212.dist-info → fake_bpy_module-20250214.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250212.dist-info → fake_bpy_module-20250214.dist-info}/top_level.txt +0 -0
bl_operators/__init__.pyi
CHANGED
|
@@ -13,6 +13,7 @@ from . import constraint as constraint
|
|
|
13
13
|
from . import file as file
|
|
14
14
|
from . import freestyle as freestyle
|
|
15
15
|
from . import geometry_nodes as geometry_nodes
|
|
16
|
+
from . import grease_pencil as grease_pencil
|
|
16
17
|
from . import image as image
|
|
17
18
|
from . import image_as_planes as image_as_planes
|
|
18
19
|
from . import mesh as mesh
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import collections.abc
|
|
3
|
+
import typing_extensions
|
|
4
|
+
import bpy.types
|
|
5
|
+
|
|
6
|
+
class GREASE_PENCIL_OT_relative_layer_mask_add(bpy.types.Operator):
|
|
7
|
+
"""Mask active layer with layer above or below"""
|
|
8
|
+
|
|
9
|
+
bl_idname: typing.Any
|
|
10
|
+
bl_label: typing.Any
|
|
11
|
+
bl_options: typing.Any
|
|
12
|
+
bl_rna: typing.Any
|
|
13
|
+
id_data: typing.Any
|
|
14
|
+
|
|
15
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
:return: The RNA type or default when not found.
|
|
19
|
+
:rtype: bpy.types.Struct
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
:return: The class or default when not found.
|
|
26
|
+
:rtype: typing.Any
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
def execute(self, context):
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
:param context:
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
@classmethod
|
|
36
|
+
def poll(cls, context):
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
:param context:
|
|
40
|
+
"""
|
|
@@ -303,7 +303,7 @@ class DATA_PT_uv_texture(MeshButtonsPanel, bpy.types.Panel):
|
|
|
303
303
|
:param context:
|
|
304
304
|
"""
|
|
305
305
|
|
|
306
|
-
class DATA_PT_vertex_colors(
|
|
306
|
+
class DATA_PT_vertex_colors(MeshButtonsPanel, bpy.types.Panel):
|
|
307
307
|
COMPAT_ENGINES: typing.Any
|
|
308
308
|
bl_context: typing.Any
|
|
309
309
|
bl_label: typing.Any
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -761,6 +761,12 @@ class BMIter[_GenericType1]:
|
|
|
761
761
|
class BMLayerAccessEdge:
|
|
762
762
|
"""Exposes custom-data layer attributes."""
|
|
763
763
|
|
|
764
|
+
bool: BMLayerCollection[boolean]
|
|
765
|
+
""" Generic boolean custom-data layer.
|
|
766
|
+
|
|
767
|
+
:type: BMLayerCollection[boolean]
|
|
768
|
+
"""
|
|
769
|
+
|
|
764
770
|
color: BMLayerCollection[mathutils.Vector]
|
|
765
771
|
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
766
772
|
|
|
@@ -806,6 +812,12 @@ class BMLayerAccessEdge:
|
|
|
806
812
|
class BMLayerAccessFace:
|
|
807
813
|
"""Exposes custom-data layer attributes."""
|
|
808
814
|
|
|
815
|
+
bool: BMLayerCollection[boolean]
|
|
816
|
+
""" Generic boolean custom-data layer.
|
|
817
|
+
|
|
818
|
+
:type: BMLayerCollection[boolean]
|
|
819
|
+
"""
|
|
820
|
+
|
|
809
821
|
color: BMLayerCollection[mathutils.Vector]
|
|
810
822
|
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
811
823
|
|
|
@@ -851,6 +863,12 @@ class BMLayerAccessFace:
|
|
|
851
863
|
class BMLayerAccessLoop:
|
|
852
864
|
"""Exposes custom-data layer attributes."""
|
|
853
865
|
|
|
866
|
+
bool: BMLayerCollection[boolean]
|
|
867
|
+
""" Generic boolean custom-data layer.
|
|
868
|
+
|
|
869
|
+
:type: BMLayerCollection[boolean]
|
|
870
|
+
"""
|
|
871
|
+
|
|
854
872
|
color: BMLayerCollection[mathutils.Vector]
|
|
855
873
|
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
856
874
|
|
|
@@ -896,6 +914,12 @@ class BMLayerAccessLoop:
|
|
|
896
914
|
class BMLayerAccessVert:
|
|
897
915
|
"""Exposes custom-data layer attributes."""
|
|
898
916
|
|
|
917
|
+
bool: BMLayerCollection[boolean]
|
|
918
|
+
""" Generic boolean custom-data layer.
|
|
919
|
+
|
|
920
|
+
:type: BMLayerCollection[boolean]
|
|
921
|
+
"""
|
|
922
|
+
|
|
899
923
|
color: BMLayerCollection[mathutils.Vector]
|
|
900
924
|
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
901
925
|
|
|
@@ -1079,6 +1079,21 @@ def primitive_polyline(
|
|
|
1079
1079
|
:type type: typing.Literal['BOX','LINE','POLYLINE','CIRCLE','ARC','CURVE'] | None
|
|
1080
1080
|
"""
|
|
1081
1081
|
|
|
1082
|
+
def relative_layer_mask_add(
|
|
1083
|
+
execution_context: int | str | None = None,
|
|
1084
|
+
undo: bool | None = None,
|
|
1085
|
+
/,
|
|
1086
|
+
*,
|
|
1087
|
+
mode: typing.Literal["ABOVE", "BELOW"] | None = "ABOVE",
|
|
1088
|
+
):
|
|
1089
|
+
"""Mask active layer with layer above or below
|
|
1090
|
+
|
|
1091
|
+
:type execution_context: int | str | None
|
|
1092
|
+
:type undo: bool | None
|
|
1093
|
+
:param mode: Mode, Which relative layer (above or below) to use as a mask
|
|
1094
|
+
:type mode: typing.Literal['ABOVE','BELOW'] | None
|
|
1095
|
+
"""
|
|
1096
|
+
|
|
1082
1097
|
def reorder(
|
|
1083
1098
|
execution_context: int | str | None = None,
|
|
1084
1099
|
undo: bool | None = None,
|