fake-bpy-module 20250927__py3-none-any.whl → 20250929__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.

@@ -120,7 +120,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, _bpy_types.Operator):
120
120
 
121
121
  def draw_ui_list(
122
122
  layout: bpy.types.UILayout,
123
- context: bpy.types.Context,
123
+ context: _bpy_types.Context,
124
124
  class_name: str = "UI_UL_list",
125
125
  *,
126
126
  unique_id: str,
@@ -136,7 +136,7 @@ def draw_ui_list(
136
136
  :param layout: UILayout to draw the list in.
137
137
  :type layout: bpy.types.UILayout
138
138
  :param context: Blender context to get the list data from.
139
- :type context: bpy.types.Context
139
+ :type context: _bpy_types.Context
140
140
  :param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
141
141
  :type class_name: str
142
142
  :param unique_id: Unique identifier to differentiate this from other UI lists.
bmesh/types/__init__.pyi CHANGED
@@ -23,6 +23,7 @@ import typing
23
23
  import collections.abc
24
24
  import typing_extensions
25
25
  import numpy.typing as npt
26
+ import _bpy_types
26
27
  import bpy.types
27
28
  import mathutils
28
29
 
@@ -1615,7 +1616,7 @@ class BMesh:
1615
1616
 
1616
1617
  def from_mesh(
1617
1618
  self,
1618
- mesh: bpy.types.Mesh,
1619
+ mesh: _bpy_types.Mesh,
1619
1620
  *,
1620
1621
  face_normals: bool = True,
1621
1622
  vertex_normals: bool = True,
@@ -1625,7 +1626,7 @@ class BMesh:
1625
1626
  """Initialize this bmesh from existing mesh data-block.
1626
1627
 
1627
1628
  :param mesh: The mesh data to load.
1628
- :type mesh: bpy.types.Mesh
1629
+ :type mesh: _bpy_types.Mesh
1629
1630
  :param face_normals:
1630
1631
  :type face_normals: bool
1631
1632
  :param vertex_normals:
@@ -1638,7 +1639,7 @@ class BMesh:
1638
1639
 
1639
1640
  def from_object(
1640
1641
  self,
1641
- object: bpy.types.Object,
1642
+ object: _bpy_types.Object,
1642
1643
  depsgraph: bpy.types.Depsgraph,
1643
1644
  *,
1644
1645
  cage: bool = False,
@@ -1648,7 +1649,7 @@ class BMesh:
1648
1649
  """Initialize this bmesh from existing object data-block (only meshes are currently supported).
1649
1650
 
1650
1651
  :param object: The object data to load.
1651
- :type object: bpy.types.Object
1652
+ :type object: _bpy_types.Object
1652
1653
  :param depsgraph:
1653
1654
  :type depsgraph: bpy.types.Depsgraph
1654
1655
  :param cage: Get the mesh as a deformed cage.
@@ -1672,11 +1673,11 @@ class BMesh:
1672
1673
  def select_flush_mode(self) -> None:
1673
1674
  """flush selection based on the current mode current `BMesh.select_mode`."""
1674
1675
 
1675
- def to_mesh(self, mesh: bpy.types.Mesh) -> None:
1676
+ def to_mesh(self, mesh: _bpy_types.Mesh) -> None:
1676
1677
  """Writes this BMesh data into an existing Mesh data-block.
1677
1678
 
1678
1679
  :param mesh: The mesh data to write into.
1679
- :type mesh: bpy.types.Mesh
1680
+ :type mesh: _bpy_types.Mesh
1680
1681
  """
1681
1682
 
1682
1683
  def transform(