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

@@ -724,7 +724,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy_types.Operator):
724
724
 
725
725
  def draw_ui_list(
726
726
  layout: bpy.types.UILayout,
727
- context: bpy.types.Context,
727
+ context: bpy_types.Context,
728
728
  class_name: str = "UI_UL_list",
729
729
  unique_id: str = None,
730
730
  list_path: str = None,
@@ -739,7 +739,7 @@ def draw_ui_list(
739
739
  :param layout: UILayout to draw the list in.
740
740
  :type layout: bpy.types.UILayout
741
741
  :param context: Blender context to get the list data from.
742
- :type context: bpy.types.Context
742
+ :type context: bpy_types.Context
743
743
  :param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
744
744
  :type class_name: str
745
745
  :param unique_id: Unique identifier to differentiate this from other UI lists.
bpy/types/__init__.pyi CHANGED
@@ -36689,6 +36689,8 @@ Property types used in class declarations are all in bpy.props
36689
36689
  * GeometryNodeSwitch.output_template
36690
36690
  * GeometryNodeTool3DCursor.input_template
36691
36691
  * GeometryNodeTool3DCursor.output_template
36692
+ * GeometryNodeToolActiveElement.input_template
36693
+ * GeometryNodeToolActiveElement.output_template
36692
36694
  * GeometryNodeToolFaceSet.input_template
36693
36695
  * GeometryNodeToolFaceSet.output_template
36694
36696
  * GeometryNodeToolMousePosition.input_template
@@ -46636,6 +46638,96 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
46636
46638
  :columns: 2
46637
46639
 
46638
46640
 
46641
+ --------------------
46642
+
46643
+ * bpy_struct.id_data
46644
+ * Node.type
46645
+ * Node.location
46646
+ * Node.width
46647
+ * Node.height
46648
+ * Node.dimensions
46649
+ * Node.name
46650
+ * Node.label
46651
+ * Node.inputs
46652
+ * Node.outputs
46653
+ * Node.internal_links
46654
+ * Node.parent
46655
+ * Node.use_custom_color
46656
+ * Node.color
46657
+ * Node.select
46658
+ * Node.show_options
46659
+ * Node.show_preview
46660
+ * Node.hide
46661
+ * Node.mute
46662
+ * Node.show_texture
46663
+ * Node.bl_idname
46664
+ * Node.bl_label
46665
+ * Node.bl_description
46666
+ * Node.bl_icon
46667
+ * Node.bl_static_type
46668
+ * Node.bl_width_default
46669
+ * Node.bl_width_min
46670
+ * Node.bl_width_max
46671
+ * Node.bl_height_default
46672
+ * Node.bl_height_min
46673
+ * Node.bl_height_max
46674
+
46675
+ :columns: 2
46676
+
46677
+
46678
+ --------------------
46679
+
46680
+ * bpy_struct.as_pointer
46681
+ * bpy_struct.driver_add
46682
+ * bpy_struct.driver_remove
46683
+ * bpy_struct.get
46684
+ * bpy_struct.id_properties_clear
46685
+ * bpy_struct.id_properties_ensure
46686
+ * bpy_struct.id_properties_ui
46687
+ * bpy_struct.is_property_hidden
46688
+ * bpy_struct.is_property_overridable_library
46689
+ * bpy_struct.is_property_readonly
46690
+ * bpy_struct.is_property_set
46691
+ * bpy_struct.items
46692
+ * bpy_struct.keyframe_delete
46693
+ * bpy_struct.keyframe_insert
46694
+ * bpy_struct.keys
46695
+ * bpy_struct.path_from_id
46696
+ * bpy_struct.path_resolve
46697
+ * bpy_struct.pop
46698
+ * bpy_struct.property_overridable_library_set
46699
+ * bpy_struct.property_unset
46700
+ * bpy_struct.type_recast
46701
+ * bpy_struct.values
46702
+ * Node.socket_value_update
46703
+ * Node.is_registered_node_type
46704
+ * Node.poll
46705
+ * Node.poll_instance
46706
+ * Node.update
46707
+ * Node.insert_link
46708
+ * Node.init
46709
+ * Node.copy
46710
+ * Node.free
46711
+ * Node.draw_buttons
46712
+ * Node.draw_buttons_ext
46713
+ * Node.draw_label
46714
+ * Node.poll
46715
+ * Node.bl_rna_get_subclass
46716
+ * Node.bl_rna_get_subclass_py
46717
+ * NodeInternal.poll
46718
+ * NodeInternal.poll_instance
46719
+ * NodeInternal.update
46720
+ * NodeInternal.draw_buttons
46721
+ * NodeInternal.draw_buttons_ext
46722
+ * NodeInternal.bl_rna_get_subclass
46723
+ * NodeInternal.bl_rna_get_subclass_py
46724
+ * GeometryNode.poll
46725
+ * GeometryNode.bl_rna_get_subclass
46726
+ * GeometryNode.bl_rna_get_subclass_py
46727
+
46728
+ :columns: 2
46729
+
46730
+
46639
46731
  --------------------
46640
46732
 
46641
46733
  * bpy_struct.id_data
@@ -221378,6 +221470,70 @@ class GeometryNodeTool3DCursor(GeometryNode, NodeInternal, Node, bpy_struct):
221378
221470
  """
221379
221471
  ...
221380
221472
 
221473
+ class GeometryNodeToolActiveElement(GeometryNode, NodeInternal, Node, bpy_struct):
221474
+ """Active element indices of the edited geometry, for tool execution"""
221475
+
221476
+ domain: str
221477
+ """
221478
+
221479
+ :type: str
221480
+ """
221481
+
221482
+ @classmethod
221483
+ def is_registered_node_type(cls) -> bool:
221484
+ """True if a registered node type
221485
+
221486
+ :return: Result
221487
+ :rtype: bool
221488
+ """
221489
+ ...
221490
+
221491
+ @classmethod
221492
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
221493
+ """Input socket template
221494
+
221495
+ :param index: Index
221496
+ :type index: int | None
221497
+ :return: result
221498
+ :rtype: NodeInternalSocketTemplate
221499
+ """
221500
+ ...
221501
+
221502
+ @classmethod
221503
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
221504
+ """Output socket template
221505
+
221506
+ :param index: Index
221507
+ :type index: int | None
221508
+ :return: result
221509
+ :rtype: NodeInternalSocketTemplate
221510
+ """
221511
+ ...
221512
+
221513
+ @classmethod
221514
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
221515
+ """
221516
+
221517
+ :param id: The RNA type identifier.
221518
+ :type id: str | None
221519
+ :param default:
221520
+ :return: The RNA type or default when not found.
221521
+ :rtype: Struct
221522
+ """
221523
+ ...
221524
+
221525
+ @classmethod
221526
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
221527
+ """
221528
+
221529
+ :param id: The RNA type identifier.
221530
+ :type id: str | None
221531
+ :param default:
221532
+ :return: The class or default when not found.
221533
+ :rtype: typing.Any
221534
+ """
221535
+ ...
221536
+
221381
221537
  class GeometryNodeToolFaceSet(GeometryNode, NodeInternal, Node, bpy_struct):
221382
221538
  """Each face's sculpt face set value"""
221383
221539
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240520
3
+ Version: 20240521
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
@@ -85,7 +85,7 @@ bl_ui/__init__.pyi,sha256=N3pzoct8D3cGDvatLnpVixZlbZGI-vSC5tmTQ_NsXBw,20136
85
85
  bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
86
  bl_ui/anim/__init__.pyi,sha256=Q3Bo73WhK6fLXhWspPQ6IrlX3z6vxvBsUUH2ME0I4vo,7590
87
87
  bl_ui/asset_shelf/__init__.pyi,sha256=HztdIjmsqLm_jhZhChKREICK86WnEKPMW0HAd3gfb-A,5887
88
- bl_ui/generic_ui_list/__init__.pyi,sha256=EUU1e9QwH_ucdvgMuKWj6khISfKiRabgZOS_NtiYovw,19691
88
+ bl_ui/generic_ui_list/__init__.pyi,sha256=wiHVG8tUGH08FXberdkon893hE-KQOC-wcQdPhQRIds,19691
89
89
  bl_ui/node_add_menu/__init__.pyi,sha256=_1Dpb7cpJospC3e8yqCW71ZSafv5hLG3CsvzBb5hTGc,8092
90
90
  bl_ui/node_add_menu_compositor/__init__.pyi,sha256=EeOd9zPegDOKOTPFA31q92ZZvdcMBUfDUEpx7YdiHuw,134520
91
91
  bl_ui/node_add_menu_geometry/__init__.pyi,sha256=93G3_29MLoy3VJYOeB1Nx6IWk80LMbRDDuB_2C5KxDA,358371
@@ -261,7 +261,7 @@ bpy/ops/workspace/__init__.pyi,sha256=seuXXtfGeQcdkEuF2ndx8y-Zhs4wJ99Ac0JTlYKTbc
261
261
  bpy/ops/world/__init__.pyi,sha256=gyxTIXas0kIe5J-6S7kl4iPrJkt-NTvhAze_f6a_Q8s,929
262
262
  bpy/path/__init__.pyi,sha256=hDzEsFeXHfkrzJFWxyxpnxiWbm1b64KJWru0jcOgRq8,11497
263
263
  bpy/props/__init__.pyi,sha256=O4aVP7WK6sI-ugD5XeDDLpNfBHulqJh20Kw7jRb2BDc,28779
264
- bpy/types/__init__.pyi,sha256=GJueOVVQzWLWw7EDbbn93Ku_G9mPzGSPwmrBuj-CdLo,5228669
264
+ bpy/types/__init__.pyi,sha256=6pSCN3_qlVquH-Rtq5j7ZlBXFGK5dU69fZ8NOiT-7g8,5232150
265
265
  bpy/utils/__init__.pyi,sha256=u9JvsmBzSJyg4CTJr7_0n9CQO_B3ldwQKh25cW_6pZs,17916
266
266
  bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
267
267
  bpy/utils/units/__init__.pyi,sha256=Mf5e9M8OwkE2zC-rs5CVV7NfobaI7LQkU0v7u-z9xwI,2655
@@ -347,7 +347,7 @@ rna_xml/__init__.pyi,sha256=H-iSwO57zZ_piTZymDIp-ryuojWhwRoX_CT10iAI3rk,602
347
347
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
348
348
  sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
349
349
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
350
- fake_bpy_module-20240520.dist-info/METADATA,sha256=9c0f2TVNzL9YwC9oeitwhwsM92HkkwDKd3ON_E2-dHk,7109
351
- fake_bpy_module-20240520.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
352
- fake_bpy_module-20240520.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
353
- fake_bpy_module-20240520.dist-info/RECORD,,
350
+ fake_bpy_module-20240521.dist-info/METADATA,sha256=dV1WNXoL4-wk10ei159voK-KNLL0aN0J54cDieTPWZI,7109
351
+ fake_bpy_module-20240521.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
352
+ fake_bpy_module-20240521.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
353
+ fake_bpy_module-20240521.dist-info/RECORD,,