fake-bpy-module 20250212__py3-none-any.whl → 20250213__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.
- bl_ui/properties_data_mesh/__init__.pyi +1 -1
- bmesh/types/__init__.pyi +24 -0
- bpy/types/__init__.pyi +30678 -30672
- {fake_bpy_module-20250212.dist-info → fake_bpy_module-20250213.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250212.dist-info → fake_bpy_module-20250213.dist-info}/RECORD +7 -7
- {fake_bpy_module-20250212.dist-info → fake_bpy_module-20250213.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250212.dist-info → fake_bpy_module-20250213.dist-info}/top_level.txt +0 -0
|
@@ -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
|
|