fake-bpy-module 20240826__py3-none-any.whl → 20240828__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
@@ -24788,6 +24788,96 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
24788
24788
  :columns: 2
24789
24789
 
24790
24790
 
24791
+ --------------------
24792
+
24793
+ * bpy_struct.id_data
24794
+ * Node.type
24795
+ * Node.location
24796
+ * Node.width
24797
+ * Node.height
24798
+ * Node.dimensions
24799
+ * Node.name
24800
+ * Node.label
24801
+ * Node.inputs
24802
+ * Node.outputs
24803
+ * Node.internal_links
24804
+ * Node.parent
24805
+ * Node.use_custom_color
24806
+ * Node.color
24807
+ * Node.select
24808
+ * Node.show_options
24809
+ * Node.show_preview
24810
+ * Node.hide
24811
+ * Node.mute
24812
+ * Node.show_texture
24813
+ * Node.bl_idname
24814
+ * Node.bl_label
24815
+ * Node.bl_description
24816
+ * Node.bl_icon
24817
+ * Node.bl_static_type
24818
+ * Node.bl_width_default
24819
+ * Node.bl_width_min
24820
+ * Node.bl_width_max
24821
+ * Node.bl_height_default
24822
+ * Node.bl_height_min
24823
+ * Node.bl_height_max
24824
+
24825
+ :columns: 2
24826
+
24827
+
24828
+ --------------------
24829
+
24830
+ * bpy_struct.as_pointer
24831
+ * bpy_struct.driver_add
24832
+ * bpy_struct.driver_remove
24833
+ * bpy_struct.get
24834
+ * bpy_struct.id_properties_clear
24835
+ * bpy_struct.id_properties_ensure
24836
+ * bpy_struct.id_properties_ui
24837
+ * bpy_struct.is_property_hidden
24838
+ * bpy_struct.is_property_overridable_library
24839
+ * bpy_struct.is_property_readonly
24840
+ * bpy_struct.is_property_set
24841
+ * bpy_struct.items
24842
+ * bpy_struct.keyframe_delete
24843
+ * bpy_struct.keyframe_insert
24844
+ * bpy_struct.keys
24845
+ * bpy_struct.path_from_id
24846
+ * bpy_struct.path_resolve
24847
+ * bpy_struct.pop
24848
+ * bpy_struct.property_overridable_library_set
24849
+ * bpy_struct.property_unset
24850
+ * bpy_struct.type_recast
24851
+ * bpy_struct.values
24852
+ * Node.socket_value_update
24853
+ * Node.is_registered_node_type
24854
+ * Node.poll
24855
+ * Node.poll_instance
24856
+ * Node.update
24857
+ * Node.insert_link
24858
+ * Node.init
24859
+ * Node.copy
24860
+ * Node.free
24861
+ * Node.draw_buttons
24862
+ * Node.draw_buttons_ext
24863
+ * Node.draw_label
24864
+ * Node.poll
24865
+ * Node.bl_rna_get_subclass
24866
+ * Node.bl_rna_get_subclass_py
24867
+ * NodeInternal.poll
24868
+ * NodeInternal.poll_instance
24869
+ * NodeInternal.update
24870
+ * NodeInternal.draw_buttons
24871
+ * NodeInternal.draw_buttons_ext
24872
+ * NodeInternal.bl_rna_get_subclass
24873
+ * NodeInternal.bl_rna_get_subclass_py
24874
+ * ShaderNode.poll
24875
+ * ShaderNode.bl_rna_get_subclass
24876
+ * ShaderNode.bl_rna_get_subclass_py
24877
+
24878
+ :columns: 2
24879
+
24880
+
24791
24881
  --------------------
24792
24882
 
24793
24883
  * bpy_struct.id_data
@@ -69453,6 +69543,8 @@ print(positions_data)
69453
69543
  * ShaderNodeBsdfHair.output_template
69454
69544
  * ShaderNodeBsdfHairPrincipled.input_template
69455
69545
  * ShaderNodeBsdfHairPrincipled.output_template
69546
+ * ShaderNodeBsdfMetallic.input_template
69547
+ * ShaderNodeBsdfMetallic.output_template
69456
69548
  * ShaderNodeBsdfPrincipled.input_template
69457
69549
  * ShaderNodeBsdfPrincipled.output_template
69458
69550
  * ShaderNodeBsdfRayPortal.input_template
@@ -186594,6 +186686,12 @@ class NodeTreeInterfacePanel(NodeTreeInterfaceItem, bpy_struct):
186594
186686
  :type: str
186595
186687
  """
186596
186688
 
186689
+ persistent_uid: int
186690
+ """ Unique identifier for this panel within this node tree
186691
+
186692
+ :type: int
186693
+ """
186694
+
186597
186695
  @classmethod
186598
186696
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
186599
186697
  """
@@ -208480,6 +208578,76 @@ class ShaderNodeBsdfHairPrincipled(ShaderNode, NodeInternal, Node, bpy_struct):
208480
208578
  """
208481
208579
  ...
208482
208580
 
208581
+ class ShaderNodeBsdfMetallic(ShaderNode, NodeInternal, Node, bpy_struct):
208582
+ """Metallic reflection with microfacet distribution, and metallic fresnel"""
208583
+
208584
+ distribution: typing.Literal["BECKMANN", "GGX", "MULTI_GGX"]
208585
+ """ Light scattering distribution on rough surface
208586
+
208587
+ :type: typing.Literal['BECKMANN','GGX','MULTI_GGX']
208588
+ """
208589
+
208590
+ fresnel_type: typing.Literal["PHYSICAL_CONDUCTOR", "F82"]
208591
+ """ Fresnel method used to tint the metal
208592
+
208593
+ :type: typing.Literal['PHYSICAL_CONDUCTOR','F82']
208594
+ """
208595
+
208596
+ @classmethod
208597
+ def is_registered_node_type(cls) -> bool:
208598
+ """True if a registered node type
208599
+
208600
+ :return: Result
208601
+ :rtype: bool
208602
+ """
208603
+ ...
208604
+
208605
+ @classmethod
208606
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
208607
+ """Input socket template
208608
+
208609
+ :param index: Index
208610
+ :type index: int | None
208611
+ :return: result
208612
+ :rtype: NodeInternalSocketTemplate
208613
+ """
208614
+ ...
208615
+
208616
+ @classmethod
208617
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
208618
+ """Output socket template
208619
+
208620
+ :param index: Index
208621
+ :type index: int | None
208622
+ :return: result
208623
+ :rtype: NodeInternalSocketTemplate
208624
+ """
208625
+ ...
208626
+
208627
+ @classmethod
208628
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
208629
+ """
208630
+
208631
+ :param id: The RNA type identifier.
208632
+ :type id: str | None
208633
+ :param default:
208634
+ :return: The RNA type or default when not found.
208635
+ :rtype: Struct
208636
+ """
208637
+ ...
208638
+
208639
+ @classmethod
208640
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
208641
+ """
208642
+
208643
+ :param id: The RNA type identifier.
208644
+ :type id: str | None
208645
+ :param default:
208646
+ :return: The class or default when not found.
208647
+ :rtype: typing.Any
208648
+ """
208649
+ ...
208650
+
208483
208651
  class ShaderNodeBsdfPrincipled(ShaderNode, NodeInternal, Node, bpy_struct):
208484
208652
  """Physically-based, easy-to-use shader for rendering surface materials, based on the OpenPBR model"""
208485
208653
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240826
3
+ Version: 20240828
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
@@ -274,7 +274,7 @@ bpy/ops/workspace/__init__.pyi,sha256=ouILPZIQntnAJtoyo0MeMfD7p4MX6XX__5nxQuJaVb
274
274
  bpy/ops/world/__init__.pyi,sha256=fNifYrJKsxpJb6jqQHCJTlf7iNR5fzV1saFRILtDZOE,1029
275
275
  bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
276
276
  bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
277
- bpy/types/__init__.pyi,sha256=KUFMIiBDk4BSnruB9iczVukdEjVkAxhCL-mlEB6YRCo,6328514
277
+ bpy/types/__init__.pyi,sha256=5Yv0Zb_xqbvrSmme9t5txfeCeateCfSw0sDm5ZtNEVY,6332391
278
278
  bpy/utils/__init__.pyi,sha256=--TTIvXJlO1WRjJS4Jv_EM-XWCp_952xAm3M_O4L5O4,13537
279
279
  bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
280
280
  bpy/utils/units/__init__.pyi,sha256=Rdhm-yBFBRp5tGXLRkMjGaQ_LB9GQA3PbvcgGFieCl4,2742
@@ -358,7 +358,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
358
358
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
359
  sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
360
360
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- fake_bpy_module-20240826.dist-info/METADATA,sha256=u8rH0N8im1pQmHWbg1J2dG7E_FkI87jGStX75XZ_Qlg,7289
362
- fake_bpy_module-20240826.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
363
- fake_bpy_module-20240826.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
364
- fake_bpy_module-20240826.dist-info/RECORD,,
361
+ fake_bpy_module-20240828.dist-info/METADATA,sha256=-krm1gYJiVavrN13wY-brBad6iTneLLcK1rkkFmO67k,7289
362
+ fake_bpy_module-20240828.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
363
+ fake_bpy_module-20240828.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
364
+ fake_bpy_module-20240828.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (73.0.1)
2
+ Generator: setuptools (74.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5