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

bpy/types/__init__.pyi CHANGED
@@ -108222,7 +108222,11 @@ class NodeLinks(bpy_prop_collection[NodeLink], bpy_struct):
108222
108222
  """Collection of Node Links"""
108223
108223
 
108224
108224
  def new(
108225
- self, input: NodeSocket, output: NodeSocket, verify_limits: bool | None = True
108225
+ self,
108226
+ input: NodeSocket,
108227
+ output: NodeSocket,
108228
+ verify_limits: bool | None = True,
108229
+ handle_dynamic_sockets: bool | None = False,
108226
108230
  ) -> NodeLink:
108227
108231
  """Add a node link to this node tree
108228
108232
 
@@ -108232,6 +108236,8 @@ class NodeLinks(bpy_prop_collection[NodeLink], bpy_struct):
108232
108236
  :type output: NodeSocket
108233
108237
  :param verify_limits: Verify Limits, Remove existing links if connection limit is exceeded
108234
108238
  :type verify_limits: bool | None
108239
+ :param handle_dynamic_sockets: Handle Dynamic Sockets, Handle node specific features like virtual sockets
108240
+ :type handle_dynamic_sockets: bool | None
108235
108241
  :return: New node link
108236
108242
  :rtype: NodeLink
108237
108243
  """
@@ -150338,7 +150344,7 @@ class GeometryNodeInputMaterialIndex(GeometryNode, NodeInternal, Node, bpy_struc
150338
150344
  ...
150339
150345
 
150340
150346
  class GeometryNodeInputMeshEdgeAngle(GeometryNode, NodeInternal, Node, bpy_struct):
150341
- """Calculate the surface area of each face in a mesh"""
150347
+ """The angle between the normals of connected manifold faces"""
150342
150348
 
150343
150349
  @classmethod
150344
150350
  def is_registered_node_type(cls) -> bool:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240813
3
+ Version: 20240814
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -272,7 +272,7 @@ bpy/ops/workspace/__init__.pyi,sha256=ouILPZIQntnAJtoyo0MeMfD7p4MX6XX__5nxQuJaVb
272
272
  bpy/ops/world/__init__.pyi,sha256=fNifYrJKsxpJb6jqQHCJTlf7iNR5fzV1saFRILtDZOE,1029
273
273
  bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
274
274
  bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
275
- bpy/types/__init__.pyi,sha256=Ga0tHxMdci6t0qNaIg6VOE7f_S2jP4quQr-nGYrkciE,6309437
275
+ bpy/types/__init__.pyi,sha256=ieDcI2akXLEcAyLRDVQOYs1P1Un0DFoVl-qpdSm4yDY,6309687
276
276
  bpy/utils/__init__.pyi,sha256=fuZc6nInRbbso-qzaeNWGfipuB37ySvxZVrJcEJ-RxM,13280
277
277
  bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
278
278
  bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
@@ -356,7 +356,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
356
356
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
357
357
  sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
358
358
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
- fake_bpy_module-20240813.dist-info/METADATA,sha256=sVlV9GpxRnZnSIcNDsYrCb2A_VMz58A-jkwTha6f5hw,7289
360
- fake_bpy_module-20240813.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
361
- fake_bpy_module-20240813.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
362
- fake_bpy_module-20240813.dist-info/RECORD,,
359
+ fake_bpy_module-20240814.dist-info/METADATA,sha256=l9s5_UaN7qiqRNlUC9RfYViqRE6SpvKVFwPRpV6ivfg,7289
360
+ fake_bpy_module-20240814.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
361
+ fake_bpy_module-20240814.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
362
+ fake_bpy_module-20240814.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: setuptools (72.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5