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

@@ -207,6 +207,32 @@ class NODE_MT_category_shader_texture(_bpy_types.Menu):
207
207
  :param _context:
208
208
  """
209
209
 
210
+ class NODE_MT_category_shader_utilities(_bpy_types.Menu):
211
+ bl_idname: typing.Any
212
+ bl_label: typing.Any
213
+ bl_rna: typing.Any
214
+ id_data: typing.Any
215
+
216
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
217
+ """
218
+
219
+ :return: The RNA type or default when not found.
220
+ :rtype: bpy.types.Struct
221
+ """
222
+
223
+ def bl_rna_get_subclass_py(self) -> typing.Any:
224
+ """
225
+
226
+ :return: The class or default when not found.
227
+ :rtype: typing.Any
228
+ """
229
+
230
+ def draw(self, context) -> None:
231
+ """
232
+
233
+ :param context:
234
+ """
235
+
210
236
  class NODE_MT_category_shader_vector(_bpy_types.Menu):
211
237
  bl_idname: typing.Any
212
238
  bl_label: typing.Any
@@ -168,32 +168,6 @@ class SEQUENCER_MT_add_empty(_bpy_types.Menu):
168
168
  :param _context:
169
169
  """
170
170
 
171
- class SEQUENCER_MT_add_scene(_bpy_types.Menu):
172
- bl_label: typing.Any
173
- bl_rna: typing.Any
174
- bl_translation_context: typing.Any
175
- id_data: typing.Any
176
-
177
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
178
- """
179
-
180
- :return: The RNA type or default when not found.
181
- :rtype: bpy.types.Struct
182
- """
183
-
184
- def bl_rna_get_subclass_py(self) -> typing.Any:
185
- """
186
-
187
- :return: The class or default when not found.
188
- :rtype: typing.Any
189
- """
190
-
191
- def draw(self, context) -> None:
192
- """
193
-
194
- :param context:
195
- """
196
-
197
171
  class SEQUENCER_MT_add_transitions(_bpy_types.Menu):
198
172
  bl_label: typing.Any
199
173
  bl_rna: typing.Any
@@ -377,6 +377,13 @@ class VIEW3D_AST_brush_texture_paint(View3DAssetShelf, _bpy_types.AssetShelf):
377
377
  :rtype: typing.Any
378
378
  """
379
379
 
380
+ @classmethod
381
+ def poll(cls, context) -> None:
382
+ """
383
+
384
+ :param context:
385
+ """
386
+
380
387
  class VIEW3D_AST_brush_vertex_paint(View3DAssetShelf, _bpy_types.AssetShelf):
381
388
  bl_activate_operator: typing.Any
382
389
  bl_default_preview_size: typing.Any
bpy/ops/node/__init__.pyi CHANGED
@@ -1267,6 +1267,43 @@ def format_string_item_remove(
1267
1267
  :type undo: bool | None
1268
1268
  """
1269
1269
 
1270
+ def geometry_nodes_viewer_item_add(
1271
+ execution_context: int | str | None = None,
1272
+ undo: bool | None = None,
1273
+ /,
1274
+ ) -> None:
1275
+ """Add item below active item
1276
+
1277
+ :type execution_context: int | str | None
1278
+ :type undo: bool | None
1279
+ """
1280
+
1281
+ def geometry_nodes_viewer_item_move(
1282
+ execution_context: int | str | None = None,
1283
+ undo: bool | None = None,
1284
+ /,
1285
+ *,
1286
+ direction: typing.Literal["UP", "DOWN"] | None = "UP",
1287
+ ) -> None:
1288
+ """Move active item
1289
+
1290
+ :type execution_context: int | str | None
1291
+ :type undo: bool | None
1292
+ :param direction: Direction, Move direction
1293
+ :type direction: typing.Literal['UP','DOWN'] | None
1294
+ """
1295
+
1296
+ def geometry_nodes_viewer_item_remove(
1297
+ execution_context: int | str | None = None,
1298
+ undo: bool | None = None,
1299
+ /,
1300
+ ) -> None:
1301
+ """Remove active item
1302
+
1303
+ :type execution_context: int | str | None
1304
+ :type undo: bool | None
1305
+ """
1306
+
1270
1307
  def gltf_settings_node_operator(
1271
1308
  execution_context: int | str | None = None,
1272
1309
  undo: bool | None = None,
@@ -1962,11 +1962,15 @@ def join_shapes(
1962
1962
  execution_context: int | str | None = None,
1963
1963
  undo: bool | None = None,
1964
1964
  /,
1965
+ *,
1966
+ use_mirror: bool | None = False,
1965
1967
  ) -> None:
1966
1968
  """Add the vertex positions of selected objects as shape keys or update existing shape keys with matching names
1967
1969
 
1968
1970
  :type execution_context: int | str | None
1969
1971
  :type undo: bool | None
1972
+ :param use_mirror: Mirror, Mirror the new shape key values
1973
+ :type use_mirror: bool | None
1970
1974
  """
1971
1975
 
1972
1976
  def join_uvs(
@@ -4718,11 +4722,15 @@ def update_shapes(
4718
4722
  execution_context: int | str | None = None,
4719
4723
  undo: bool | None = None,
4720
4724
  /,
4725
+ *,
4726
+ use_mirror: bool | None = False,
4721
4727
  ) -> None:
4722
4728
  """Update existing shape keys with the vertex positions of selected objects with matching names
4723
4729
 
4724
4730
  :type execution_context: int | str | None
4725
4731
  :type undo: bool | None
4732
+ :param use_mirror: Mirror, Mirror the new shape key values
4733
+ :type use_mirror: bool | None
4726
4734
  """
4727
4735
 
4728
4736
  def vertex_group_add(
bpy/ops/wm/__init__.pyi CHANGED
@@ -44,7 +44,6 @@ def alembic_export(
44
44
  sh_open: float | None = 0.0,
45
45
  sh_close: float | None = 1.0,
46
46
  selected: bool | None = False,
47
- visible_objects_only: bool | None = False,
48
47
  flatten: bool | None = False,
49
48
  collection: str = "",
50
49
  uvs: bool | None = True,
@@ -143,8 +142,6 @@ def alembic_export(
143
142
  :type sh_close: float | None
144
143
  :param selected: Selected Objects Only, Export only selected objects
145
144
  :type selected: bool | None
146
- :param visible_objects_only: Visible Objects Only, Export only objects that are visible
147
- :type visible_objects_only: bool | None
148
145
  :param flatten: Flatten Hierarchy, Do not preserve objects parent/children relationship
149
146
  :type flatten: bool | None
150
147
  :param collection: Collection
@@ -4822,7 +4819,6 @@ def usd_export(
4822
4819
  sort_method: str | None = "",
4823
4820
  filter_glob: str = "*.usd",
4824
4821
  selected_objects_only: bool | None = False,
4825
- visible_objects_only: bool | None = True,
4826
4822
  collection: str = "",
4827
4823
  export_animation: bool | None = False,
4828
4824
  export_hair: bool | None = False,
@@ -4950,8 +4946,6 @@ def usd_export(
4950
4946
  :type filter_glob: str
4951
4947
  :param selected_objects_only: Selection Only, Only export selected objects. Unselected parents of selected objects are exported as empty transform
4952
4948
  :type selected_objects_only: bool | None
4953
- :param visible_objects_only: Visible Only, Only export visible objects. Invisible parents of exported objects are exported as empty transforms
4954
- :type visible_objects_only: bool | None
4955
4949
  :param collection: Collection
4956
4950
  :type collection: str
4957
4951
  :param export_animation: Animation, Export all frames in the render frame range, rather than only the current frame
@@ -1006,7 +1006,6 @@ type IconItems = typing.Literal[
1006
1006
  "PRESET", # PRESET.
1007
1007
  "RENDER_ANIMATION", # RENDER_ANIMATION.
1008
1008
  "RENDER_STILL", # RENDER_STILL.
1009
- "RNA_ADD", # RNA_ADD.
1010
1009
  "RNA", # RNA.
1011
1010
  "STRANDS", # STRANDS.
1012
1011
  "UGLYPACKAGE", # UGLYPACKAGE.
bpy/types/__init__.pyi CHANGED
@@ -18007,6 +18007,103 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
18007
18007
  :columns: 2
18008
18008
 
18009
18009
 
18010
+ --------------------
18011
+
18012
+ * bpy_struct.id_data
18013
+ * Node.type
18014
+ * Node.location
18015
+ * Node.location_absolute
18016
+ * Node.width
18017
+ * Node.height
18018
+ * Node.dimensions
18019
+ * Node.name
18020
+ * Node.label
18021
+ * Node.inputs
18022
+ * Node.outputs
18023
+ * Node.internal_links
18024
+ * Node.parent
18025
+ * Node.warning_propagation
18026
+ * Node.use_custom_color
18027
+ * Node.color
18028
+ * Node.color_tag
18029
+ * Node.select
18030
+ * Node.show_options
18031
+ * Node.show_preview
18032
+ * Node.hide
18033
+ * Node.mute
18034
+ * Node.show_texture
18035
+ * Node.bl_idname
18036
+ * Node.bl_label
18037
+ * Node.bl_description
18038
+ * Node.bl_icon
18039
+ * Node.bl_static_type
18040
+ * Node.bl_width_default
18041
+ * Node.bl_width_min
18042
+ * Node.bl_width_max
18043
+ * Node.bl_height_default
18044
+ * Node.bl_height_min
18045
+ * Node.bl_height_max
18046
+
18047
+ :columns: 2
18048
+
18049
+
18050
+ --------------------
18051
+
18052
+ * bpy_struct.as_pointer
18053
+ * bpy_struct.driver_add
18054
+ * bpy_struct.driver_remove
18055
+ * bpy_struct.get
18056
+ * bpy_struct.id_properties_clear
18057
+ * bpy_struct.id_properties_ensure
18058
+ * bpy_struct.id_properties_ui
18059
+ * bpy_struct.is_property_hidden
18060
+ * bpy_struct.is_property_overridable_library
18061
+ * bpy_struct.is_property_readonly
18062
+ * bpy_struct.is_property_set
18063
+ * bpy_struct.items
18064
+ * bpy_struct.keyframe_delete
18065
+ * bpy_struct.keyframe_insert
18066
+ * bpy_struct.keys
18067
+ * bpy_struct.path_from_id
18068
+ * bpy_struct.path_resolve
18069
+ * bpy_struct.pop
18070
+ * bpy_struct.property_overridable_library_set
18071
+ * bpy_struct.property_unset
18072
+ * bpy_struct.rna_ancestors
18073
+ * bpy_struct.type_recast
18074
+ * bpy_struct.values
18075
+ * Node.bl_system_properties_get
18076
+ * Node.socket_value_update
18077
+ * Node.is_registered_node_type
18078
+ * Node.poll
18079
+ * Node.poll_instance
18080
+ * Node.update
18081
+ * Node.insert_link
18082
+ * Node.init
18083
+ * Node.copy
18084
+ * Node.free
18085
+ * Node.draw_buttons
18086
+ * Node.draw_buttons_ext
18087
+ * Node.draw_label
18088
+ * Node.debug_zone_body_lazy_function_graph
18089
+ * Node.debug_zone_lazy_function_graph
18090
+ * Node.poll
18091
+ * Node.bl_rna_get_subclass
18092
+ * Node.bl_rna_get_subclass_py
18093
+ * NodeInternal.poll
18094
+ * NodeInternal.poll_instance
18095
+ * NodeInternal.update
18096
+ * NodeInternal.draw_buttons
18097
+ * NodeInternal.draw_buttons_ext
18098
+ * NodeInternal.bl_rna_get_subclass
18099
+ * NodeInternal.bl_rna_get_subclass_py
18100
+ * ShaderNode.poll
18101
+ * ShaderNode.bl_rna_get_subclass
18102
+ * ShaderNode.bl_rna_get_subclass_py
18103
+
18104
+ :columns: 2
18105
+
18106
+
18010
18107
  --------------------
18011
18108
 
18012
18109
  * bpy_struct.id_data
@@ -20487,6 +20584,49 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
20487
20584
  :columns: 2
20488
20585
 
20489
20586
 
20587
+ --------------------
20588
+
20589
+ * bpy_struct.id_data
20590
+
20591
+ :columns: 2
20592
+
20593
+
20594
+ --------------------
20595
+
20596
+ * bpy_struct.as_pointer
20597
+ * bpy_struct.driver_add
20598
+ * bpy_struct.driver_remove
20599
+ * bpy_struct.get
20600
+ * bpy_struct.id_properties_clear
20601
+ * bpy_struct.id_properties_ensure
20602
+ * bpy_struct.id_properties_ui
20603
+ * bpy_struct.is_property_hidden
20604
+ * bpy_struct.is_property_overridable_library
20605
+ * bpy_struct.is_property_readonly
20606
+ * bpy_struct.is_property_set
20607
+ * bpy_struct.items
20608
+ * bpy_struct.keyframe_delete
20609
+ * bpy_struct.keyframe_insert
20610
+ * bpy_struct.keys
20611
+ * bpy_struct.path_from_id
20612
+ * bpy_struct.path_resolve
20613
+ * bpy_struct.pop
20614
+ * bpy_struct.property_overridable_library_set
20615
+ * bpy_struct.property_unset
20616
+ * bpy_struct.rna_ancestors
20617
+ * bpy_struct.type_recast
20618
+ * bpy_struct.values
20619
+
20620
+ :columns: 2
20621
+
20622
+
20623
+ --------------------
20624
+
20625
+ * GeometryNodeViewer.viewer_items
20626
+
20627
+ :columns: 2
20628
+
20629
+
20490
20630
  --------------------
20491
20631
 
20492
20632
  * bpy_struct.id_data
@@ -26303,42 +26443,6 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
26303
26443
  :columns: 2
26304
26444
 
26305
26445
 
26306
- --------------------
26307
-
26308
- * bpy_struct.id_data
26309
-
26310
- :columns: 2
26311
-
26312
-
26313
- --------------------
26314
-
26315
- * bpy_struct.as_pointer
26316
- * bpy_struct.driver_add
26317
- * bpy_struct.driver_remove
26318
- * bpy_struct.get
26319
- * bpy_struct.id_properties_clear
26320
- * bpy_struct.id_properties_ensure
26321
- * bpy_struct.id_properties_ui
26322
- * bpy_struct.is_property_hidden
26323
- * bpy_struct.is_property_overridable_library
26324
- * bpy_struct.is_property_readonly
26325
- * bpy_struct.is_property_set
26326
- * bpy_struct.items
26327
- * bpy_struct.keyframe_delete
26328
- * bpy_struct.keyframe_insert
26329
- * bpy_struct.keys
26330
- * bpy_struct.path_from_id
26331
- * bpy_struct.path_resolve
26332
- * bpy_struct.pop
26333
- * bpy_struct.property_overridable_library_set
26334
- * bpy_struct.property_unset
26335
- * bpy_struct.rna_ancestors
26336
- * bpy_struct.type_recast
26337
- * bpy_struct.values
26338
-
26339
- :columns: 2
26340
-
26341
-
26342
26446
  --------------------
26343
26447
 
26344
26448
  * Struct.functions
@@ -59370,6 +59474,8 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
59370
59474
  * ShaderNodeRGBCurve.output_template
59371
59475
  * ShaderNodeRGBToBW.input_template
59372
59476
  * ShaderNodeRGBToBW.output_template
59477
+ * ShaderNodeRadialTiling.input_template
59478
+ * ShaderNodeRadialTiling.output_template
59373
59479
  * ShaderNodeScript.input_template
59374
59480
  * ShaderNodeScript.output_template
59375
59481
  * ShaderNodeSeparateColor.input_template
@@ -67942,6 +68048,52 @@ example of how to create/use filtering/reordering callbacks.
67942
68048
  :columns: 2
67943
68049
 
67944
68050
 
68051
+ --------------------
68052
+
68053
+ * GeometryNodeViewer.active_item
68054
+ * GeometryNodeViewer.viewer_items
68055
+ * NodeGeometryViewerItems.new
68056
+ * NodeGeometryViewerItems.remove
68057
+
68058
+ :columns: 2
68059
+
68060
+
68061
+ --------------------
68062
+
68063
+ * bpy_struct.id_data
68064
+
68065
+ :columns: 2
68066
+
68067
+
68068
+ --------------------
68069
+
68070
+ * bpy_struct.as_pointer
68071
+ * bpy_struct.driver_add
68072
+ * bpy_struct.driver_remove
68073
+ * bpy_struct.get
68074
+ * bpy_struct.id_properties_clear
68075
+ * bpy_struct.id_properties_ensure
68076
+ * bpy_struct.id_properties_ui
68077
+ * bpy_struct.is_property_hidden
68078
+ * bpy_struct.is_property_overridable_library
68079
+ * bpy_struct.is_property_readonly
68080
+ * bpy_struct.is_property_set
68081
+ * bpy_struct.items
68082
+ * bpy_struct.keyframe_delete
68083
+ * bpy_struct.keyframe_insert
68084
+ * bpy_struct.keys
68085
+ * bpy_struct.path_from_id
68086
+ * bpy_struct.path_resolve
68087
+ * bpy_struct.pop
68088
+ * bpy_struct.property_overridable_library_set
68089
+ * bpy_struct.property_unset
68090
+ * bpy_struct.rna_ancestors
68091
+ * bpy_struct.type_recast
68092
+ * bpy_struct.values
68093
+
68094
+ :columns: 2
68095
+
68096
+
67945
68097
  --------------------
67946
68098
 
67947
68099
  * Theme.user_interface
@@ -94356,6 +94508,15 @@ Operator.draw method for layout and display.
94356
94508
  :columns: 2
94357
94509
 
94358
94510
 
94511
+ --------------------
94512
+
94513
+ * MeshUVLoopLayer.edge_selection_ensure
94514
+ * MeshUVLoopLayer.pin_ensure
94515
+ * MeshUVLoopLayer.vertex_selection_ensure
94516
+
94517
+ :columns: 2
94518
+
94519
+
94359
94520
  --------------------
94360
94521
 
94361
94522
  * bpy_struct.id_data
@@ -120654,6 +120815,75 @@ class NodeGeometrySimulationOutputItems(
120654
120815
  :rtype: typing.Any
120655
120816
  """
120656
120817
 
120818
+ class NodeGeometryViewerItems(bpy_prop_collection[NodeGeometryViewerItem], bpy_struct):
120819
+ """Collection of viewer items"""
120820
+
120821
+ def new(
120822
+ self,
120823
+ socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems | None,
120824
+ name: str,
120825
+ ) -> NodeGeometryViewerItem:
120826
+ """Add an item at the end
120827
+
120828
+ :param socket_type: Socket Type, Socket type of the item
120829
+ :type socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems | None
120830
+ :param name: Name
120831
+ :type name: str
120832
+ :return: Item, New item
120833
+ :rtype: NodeGeometryViewerItem
120834
+ """
120835
+
120836
+ def remove(self, item: NodeGeometryViewerItem) -> None:
120837
+ """Remove an item
120838
+
120839
+ :param item: Item, The item to remove
120840
+ :type item: NodeGeometryViewerItem
120841
+ """
120842
+
120843
+ def clear(self) -> None:
120844
+ """Remove all items"""
120845
+
120846
+ def move(self, from_index: int | None, to_index: int | None) -> None:
120847
+ """Move an item to another position
120848
+
120849
+ :param from_index: From Index, Index of the item to move
120850
+ :type from_index: int | None
120851
+ :param to_index: To Index, Target index for the item
120852
+ :type to_index: int | None
120853
+ """
120854
+
120855
+ @classmethod
120856
+ def bl_rna_get_subclass(
120857
+ cls,
120858
+ id: str | None,
120859
+ default=None,
120860
+ /,
120861
+ ) -> Struct:
120862
+ """
120863
+
120864
+ :param id: The RNA type identifier.
120865
+ :type id: str | None
120866
+ :param default:
120867
+ :return: The RNA type or default when not found.
120868
+ :rtype: Struct
120869
+ """
120870
+
120871
+ @classmethod
120872
+ def bl_rna_get_subclass_py(
120873
+ cls,
120874
+ id: str | None,
120875
+ default=None,
120876
+ /,
120877
+ ) -> typing.Any:
120878
+ """
120879
+
120880
+ :param id: The RNA type identifier.
120881
+ :type id: str | None
120882
+ :param default:
120883
+ :return: The class or default when not found.
120884
+ :rtype: typing.Any
120885
+ """
120886
+
120657
120887
  class NodeIndexSwitchItems(bpy_prop_collection[IndexSwitchItem], bpy_struct):
120658
120888
  """Collection of index_switch items"""
120659
120889
 
@@ -126655,39 +126885,6 @@ class ArrayModifier(Modifier, bpy_struct):
126655
126885
  :rtype: typing.Any
126656
126886
  """
126657
126887
 
126658
- class AssetCatalogPath(bpy_struct):
126659
- @classmethod
126660
- def bl_rna_get_subclass(
126661
- cls,
126662
- id: str | None,
126663
- default=None,
126664
- /,
126665
- ) -> Struct:
126666
- """
126667
-
126668
- :param id: The RNA type identifier.
126669
- :type id: str | None
126670
- :param default:
126671
- :return: The RNA type or default when not found.
126672
- :rtype: Struct
126673
- """
126674
-
126675
- @classmethod
126676
- def bl_rna_get_subclass_py(
126677
- cls,
126678
- id: str | None,
126679
- default=None,
126680
- /,
126681
- ) -> typing.Any:
126682
- """
126683
-
126684
- :param id: The RNA type identifier.
126685
- :type id: str | None
126686
- :param default:
126687
- :return: The class or default when not found.
126688
- :rtype: typing.Any
126689
- """
126690
-
126691
126888
  class AssetLibraryReference(bpy_struct):
126692
126889
  """Identifier to refer to the asset library"""
126693
126890
 
@@ -172504,14 +172701,20 @@ class GeometryNodeVertexOfCorner(GeometryNode, NodeInternal, Node, bpy_struct):
172504
172701
  class GeometryNodeViewer(GeometryNode, NodeInternal, Node, bpy_struct):
172505
172702
  """Display the input data in the Spreadsheet Editor"""
172506
172703
 
172507
- data_type: bpy.stub_internal.rna_enums.AttributeTypeItems
172704
+ active_index: int | None
172705
+ """ Index of the active item
172706
+
172707
+ :type: int | None
172708
+ """
172709
+
172710
+ active_item: NodeGeometryViewerItem | None
172508
172711
  """
172509
172712
 
172510
- :type: bpy.stub_internal.rna_enums.AttributeTypeItems
172713
+ :type: NodeGeometryViewerItem | None
172511
172714
  """
172512
172715
 
172513
172716
  domain: bpy.stub_internal.rna_enums.AttributeDomainWithAutoItems
172514
- """ Domain to evaluate the field on
172717
+ """ Domain to evaluate fields on
172515
172718
 
172516
172719
  :type: bpy.stub_internal.rna_enums.AttributeDomainWithAutoItems
172517
172720
  """
@@ -172522,6 +172725,12 @@ class GeometryNodeViewer(GeometryNode, NodeInternal, Node, bpy_struct):
172522
172725
  :type: int
172523
172726
  """
172524
172727
 
172728
+ viewer_items: NodeGeometryViewerItems
172729
+ """
172730
+
172731
+ :type: NodeGeometryViewerItems
172732
+ """
172733
+
172525
172734
  @classmethod
172526
172735
  def is_registered_node_type(cls) -> bool:
172527
172736
  """True if a registered node type
@@ -192963,6 +193172,27 @@ class MeshUVLoopLayer(bpy_struct):
192963
193172
  :type: bpy_prop_collection[BoolAttributeValue]
192964
193173
  """
192965
193174
 
193175
+ def vertex_selection_ensure(self) -> BoolAttribute:
193176
+ """vertex_selection_ensure
193177
+
193178
+ :return: The boolean attribute
193179
+ :rtype: BoolAttribute
193180
+ """
193181
+
193182
+ def edge_selection_ensure(self) -> BoolAttribute:
193183
+ """edge_selection_ensure
193184
+
193185
+ :return: The boolean attribute
193186
+ :rtype: BoolAttribute
193187
+ """
193188
+
193189
+ def pin_ensure(self) -> BoolAttribute:
193190
+ """pin_ensure
193191
+
193192
+ :return: The boolean attribute
193193
+ :rtype: BoolAttribute
193194
+ """
193195
+
192966
193196
  @classmethod
192967
193197
  def bl_rna_get_subclass(
192968
193198
  cls,
@@ -197988,6 +198218,63 @@ class NodeGeometryCaptureAttributeItem(bpy_struct):
197988
198218
  :rtype: typing.Any
197989
198219
  """
197990
198220
 
198221
+ class NodeGeometryViewerItem(bpy_struct):
198222
+ auto_remove: bool
198223
+ """ Remove the item automatically when it is unlinked
198224
+
198225
+ :type: bool
198226
+ """
198227
+
198228
+ color: bpy_prop_array[float]
198229
+ """ Color of the corresponding socket type in the node editor
198230
+
198231
+ :type: bpy_prop_array[float]
198232
+ """
198233
+
198234
+ name: str
198235
+ """
198236
+
198237
+ :type: str
198238
+ """
198239
+
198240
+ socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
198241
+ """
198242
+
198243
+ :type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
198244
+ """
198245
+
198246
+ @classmethod
198247
+ def bl_rna_get_subclass(
198248
+ cls,
198249
+ id: str | None,
198250
+ default=None,
198251
+ /,
198252
+ ) -> Struct:
198253
+ """
198254
+
198255
+ :param id: The RNA type identifier.
198256
+ :type id: str | None
198257
+ :param default:
198258
+ :return: The RNA type or default when not found.
198259
+ :rtype: Struct
198260
+ """
198261
+
198262
+ @classmethod
198263
+ def bl_rna_get_subclass_py(
198264
+ cls,
198265
+ id: str | None,
198266
+ default=None,
198267
+ /,
198268
+ ) -> typing.Any:
198269
+ """
198270
+
198271
+ :param id: The RNA type identifier.
198272
+ :type id: str | None
198273
+ :param default:
198274
+ :return: The class or default when not found.
198275
+ :rtype: typing.Any
198276
+ """
198277
+
197991
198278
  class NodeGroup(NodeInternal, Node, bpy_struct):
197992
198279
  node_tree: NodeTree | None
197993
198280
  """
@@ -221299,85 +221586,6 @@ class Scene(ID, bpy_struct):
221299
221586
  def sequence_editor_clear(self) -> None:
221300
221587
  """Clear sequence editor in this scene"""
221301
221588
 
221302
- def alembic_export(
221303
- self,
221304
- filepath: str,
221305
- *,
221306
- frame_start: int | None = 1,
221307
- frame_end: int | None = 1,
221308
- xform_samples: int | None = 1,
221309
- geom_samples: int | None = 1,
221310
- shutter_open: float | None = 0.0,
221311
- shutter_close: float | None = 1.0,
221312
- selected_only: bool | None = False,
221313
- uvs: bool | None = True,
221314
- normals: bool | None = True,
221315
- vcolors: bool | None = False,
221316
- apply_subdiv: bool | None = True,
221317
- flatten: bool | None = False,
221318
- visible_objects_only: bool | None = False,
221319
- face_sets: bool | None = False,
221320
- subdiv_schema: bool | None = False,
221321
- export_hair: bool | None = True,
221322
- export_particles: bool | None = True,
221323
- packuv: bool | None = False,
221324
- scale: float | None = 1.0,
221325
- triangulate: bool | None = False,
221326
- quad_method: bpy.stub_internal.rna_enums.ModifierTriangulateQuadMethodItems
221327
- | None = "BEAUTY",
221328
- ngon_method: bpy.stub_internal.rna_enums.ModifierTriangulateNgonMethodItems
221329
- | None = "BEAUTY",
221330
- ) -> None:
221331
- """Export to Alembic file (deprecated, use the Alembic export operator)
221332
-
221333
- :param filepath: File Path, File path to write Alembic file
221334
- :type filepath: str
221335
- :param frame_start: Start, Start Frame
221336
- :type frame_start: int | None
221337
- :param frame_end: End, End Frame
221338
- :type frame_end: int | None
221339
- :param xform_samples: Xform samples, Transform samples per frame
221340
- :type xform_samples: int | None
221341
- :param geom_samples: Geom samples, Geometry samples per frame
221342
- :type geom_samples: int | None
221343
- :param shutter_open: Shutter open
221344
- :type shutter_open: float | None
221345
- :param shutter_close: Shutter close
221346
- :type shutter_close: float | None
221347
- :param selected_only: Selected only, Export only selected objects
221348
- :type selected_only: bool | None
221349
- :param uvs: UVs, Export UVs
221350
- :type uvs: bool | None
221351
- :param normals: Normals, Export normals
221352
- :type normals: bool | None
221353
- :param vcolors: Color Attributes, Export color attributes
221354
- :type vcolors: bool | None
221355
- :param apply_subdiv: Subsurfs as meshes, Export subdivision surfaces as meshes
221356
- :type apply_subdiv: bool | None
221357
- :param flatten: Flatten hierarchy, Flatten hierarchy
221358
- :type flatten: bool | None
221359
- :param visible_objects_only: Visible layers only, Export only objects in visible layers
221360
- :type visible_objects_only: bool | None
221361
- :param face_sets: Facesets, Export face sets
221362
- :type face_sets: bool | None
221363
- :param subdiv_schema: Use Alembic subdivision Schema, Use Alembic subdivision Schema
221364
- :type subdiv_schema: bool | None
221365
- :param export_hair: Export Hair, Exports hair particle systems as animated curves
221366
- :type export_hair: bool | None
221367
- :param export_particles: Export Particles, Exports non-hair particle systems
221368
- :type export_particles: bool | None
221369
- :param packuv: Export with packed UV islands, Export with packed UV islands
221370
- :type packuv: bool | None
221371
- :param scale: Scale, Value by which to enlarge or shrink the objects with respect to the worlds origin
221372
- :type scale: float | None
221373
- :param triangulate: Triangulate, Export polygons (quads and n-gons) as triangles
221374
- :type triangulate: bool | None
221375
- :param quad_method: Quad Method, Method for splitting the quads into triangles
221376
- :type quad_method: bpy.stub_internal.rna_enums.ModifierTriangulateQuadMethodItems | None
221377
- :param ngon_method: N-gon Method, Method for splitting the n-gons into triangles
221378
- :type ngon_method: bpy.stub_internal.rna_enums.ModifierTriangulateNgonMethodItems | None
221379
- """
221380
-
221381
221589
  @classmethod
221382
221590
  def bl_rna_get_subclass(
221383
221591
  cls,
@@ -228274,6 +228482,75 @@ class ShaderNodeRGBToBW(ShaderNode, NodeInternal, Node, bpy_struct):
228274
228482
  :rtype: typing.Any
228275
228483
  """
228276
228484
 
228485
+ class ShaderNodeRadialTiling(ShaderNode, NodeInternal, Node, bpy_struct):
228486
+ """Transform Coordinate System for Radial Tiling"""
228487
+
228488
+ normalize: bool
228489
+ """ Normalize the X coordinate of the Segment Coordinates output to a [0, 1] interval and offset the Y coordinate into a [0, infinity) interval. When checked, the textures are stretched to fit into each angular segment. When not checked, the parts of the textures that don't fit into each angular segment are cropped
228490
+
228491
+ :type: bool
228492
+ """
228493
+
228494
+ @classmethod
228495
+ def is_registered_node_type(cls) -> bool:
228496
+ """True if a registered node type
228497
+
228498
+ :return: Result
228499
+ :rtype: bool
228500
+ """
228501
+
228502
+ @classmethod
228503
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
228504
+ """Input socket template
228505
+
228506
+ :param index: Index
228507
+ :type index: int | None
228508
+ :return: result
228509
+ :rtype: NodeInternalSocketTemplate
228510
+ """
228511
+
228512
+ @classmethod
228513
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
228514
+ """Output socket template
228515
+
228516
+ :param index: Index
228517
+ :type index: int | None
228518
+ :return: result
228519
+ :rtype: NodeInternalSocketTemplate
228520
+ """
228521
+
228522
+ @classmethod
228523
+ def bl_rna_get_subclass(
228524
+ cls,
228525
+ id: str | None,
228526
+ default=None,
228527
+ /,
228528
+ ) -> Struct:
228529
+ """
228530
+
228531
+ :param id: The RNA type identifier.
228532
+ :type id: str | None
228533
+ :param default:
228534
+ :return: The RNA type or default when not found.
228535
+ :rtype: Struct
228536
+ """
228537
+
228538
+ @classmethod
228539
+ def bl_rna_get_subclass_py(
228540
+ cls,
228541
+ id: str | None,
228542
+ default=None,
228543
+ /,
228544
+ ) -> typing.Any:
228545
+ """
228546
+
228547
+ :param id: The RNA type identifier.
228548
+ :type id: str | None
228549
+ :param default:
228550
+ :return: The class or default when not found.
228551
+ :rtype: typing.Any
228552
+ """
228553
+
228277
228554
  class ShaderNodeScript(ShaderNode, NodeInternal, Node, bpy_struct):
228278
228555
  """Generate an OSL shader from a file or text data-block.
228279
228556
  Note: OSL shaders are not supported on all GPU backends
@@ -249467,11 +249744,11 @@ class UILayout(bpy_struct):
249467
249744
  """
249468
249745
 
249469
249746
  emboss: typing.Literal[
249470
- "NORMAL", "NONE", "PULLDOWN_MENU", "RADIAL_MENU", "NONE_OR_STATUS"
249747
+ "NORMAL", "NONE", "PULLDOWN_MENU", "PIE_MENU", "NONE_OR_STATUS"
249471
249748
  ]
249472
249749
  """
249473
249750
 
249474
- :type: typing.Literal['NORMAL','NONE','PULLDOWN_MENU','RADIAL_MENU','NONE_OR_STATUS']
249751
+ :type: typing.Literal['NORMAL','NONE','PULLDOWN_MENU','PIE_MENU','NONE_OR_STATUS']
249475
249752
  """
249476
249753
 
249477
249754
  enabled: bool
@@ -260931,6 +261208,8 @@ NODE_MT_category_shader_shader: bl_ui.node_add_menu_shader.NODE_MT_category_shad
260931
261208
 
260932
261209
  NODE_MT_category_shader_texture: bl_ui.node_add_menu_shader.NODE_MT_category_shader_texture
260933
261210
 
261211
+ NODE_MT_category_shader_utilities: bl_ui.node_add_menu_shader.NODE_MT_category_shader_utilities
261212
+
260934
261213
  NODE_MT_category_shader_vector: bl_ui.node_add_menu_shader.NODE_MT_category_shader_vector
260935
261214
 
260936
261215
  NODE_MT_category_simulation: bl_ui.node_add_menu_geometry.NODE_MT_category_simulation
@@ -261903,8 +262182,6 @@ SEQUENCER_MT_add_effect: bl_ui.space_sequencer.SEQUENCER_MT_add_effect
261903
262182
 
261904
262183
  SEQUENCER_MT_add_empty: bl_ui.space_sequencer.SEQUENCER_MT_add_empty
261905
262184
 
261906
- SEQUENCER_MT_add_scene: bl_ui.space_sequencer.SEQUENCER_MT_add_scene
261907
-
261908
262185
  SEQUENCER_MT_add_transitions: bl_ui.space_sequencer.SEQUENCER_MT_add_transitions
261909
262186
 
261910
262187
  SEQUENCER_MT_change: bl_ui.space_sequencer.SEQUENCER_MT_change
@@ -41,8 +41,9 @@ class ImportHelper:
41
41
  """
42
42
 
43
43
  def axis_conversion(from_forward="Y", from_up="Z", to_forward="Y", to_up="Z") -> None:
44
- """Each argument us an axis in [X, Y, Z, -X, -Y, -Z]
44
+ """Each argument is an axis in [X, Y, Z, -X, -Y, -Z]
45
45
  where the first 2 are a source and the second 2 are the target.
46
+ :rtype: `mathutils.Matrix`
46
47
 
47
48
  """
48
49
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250922
3
+ Version: 20250924
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
@@ -112,7 +112,7 @@ bl_ui/generic_ui_list/__init__.pyi,sha256=wKDC1TOAxmPZ4kY86_96aBa-DTcNHrGXNucUNp
112
112
  bl_ui/node_add_menu/__init__.pyi,sha256=lPXeqXuLmc_dFV2GWoxfbqY3DNpetsqkI1f3i7lHY-k,1812
113
113
  bl_ui/node_add_menu_compositor/__init__.pyi,sha256=Hn5-YC2cCeK7hHi5QgR6OKzyxdHl8S3EiDJpqB4mMQo,10559
114
114
  bl_ui/node_add_menu_geometry/__init__.pyi,sha256=fuv_3IdbsrXx4uXgrJLM9lIVEIhNVlDnEXWe5tYbbYg,33084
115
- bl_ui/node_add_menu_shader/__init__.pyi,sha256=U-ntARgBpRtDHefEaZUTTBqPZOlk0MF5njZ6heMBb5A,6168
115
+ bl_ui/node_add_menu_shader/__init__.pyi,sha256=A5k0pp6UPKh1eY-xGu0QeJ6ii0rArs--sJk_pKwUPSw,6742
116
116
  bl_ui/node_add_menu_texture/__init__.pyi,sha256=qjl9QFiYpBhyMclx9laSSMDbs9ivCTGxQLW8jKLhRMs,5366
117
117
  bl_ui/properties_animviz/__init__.pyi,sha256=MVsoAibpBh5BrQ6ReemJJN3zOegs3QRdBFv9rOefocM,705
118
118
  bl_ui/properties_collection/__init__.pyi,sha256=Vc5-O8TKo3-St-3d3c5TDjleZGy8wk3N8Je-c6Y2edk,5131
@@ -169,7 +169,7 @@ bl_ui/space_nla/__init__.pyi,sha256=qogAgjcs_TFfi4eoTjkVsPi8GkXRA7s4cO9xip2N-Ss,
169
169
  bl_ui/space_node/__init__.pyi,sha256=tLdl7p5j7C08r_07WCOfmyx2-yLYPKF-lweXPJm1GVI,21996
170
170
  bl_ui/space_outliner/__init__.pyi,sha256=1N93UIu-iU2UkqM7tQxeaxob3PRnnUjqY6rKdnT_sAE,8938
171
171
  bl_ui/space_properties/__init__.pyi,sha256=KJdc80dXfvxv5XYmO8CRmheQxff_jLYiS_6zzRG_xwg,2802
172
- bl_ui/space_sequencer/__init__.pyi,sha256=RMFIghUfN79m2LoOSL_g2qg_9HWoe0k5n2t-zAl9m8g,60524
172
+ bl_ui/space_sequencer/__init__.pyi,sha256=uYCt0g3AkdS55wUe5kywRn7eNFv56_Hn42jU3shsd4k,59948
173
173
  bl_ui/space_spreadsheet/__init__.pyi,sha256=qoO65GoJn8WObsqXqRzdEq2Zq1AZQEDWVpli-4lXOow,1769
174
174
  bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7xlsbw,667
175
175
  bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
@@ -178,7 +178,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_
178
178
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=1NzcfTRSQBrrTgvP5Ny3GxkCCKay-oKOA-8po5_TYsE,10803
179
179
  bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
180
180
  bl_ui/space_userpref/__init__.pyi,sha256=AL6A0yOmAtQg3VfFQRUEoeUADyg19JDqPmSUpGCsqS8,81644
181
- bl_ui/space_view3d/__init__.pyi,sha256=uUm9PfwvRN51OJbaE6CG6-V7snWo0p7kttfV980yQtI,160656
181
+ bl_ui/space_view3d/__init__.pyi,sha256=JZCPdlgAPosZB_ACs3DqHLULzILrvos0H8IUiaVz1yg,160759
182
182
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=_4A3FtNYgOPG05oIXOSasqu-n5tXNkisyx-6PehSjHI,64540
183
183
  bl_ui/utils/__init__.pyi,sha256=ljnA9UEJuHjOECvmj0JrqHBYqtd8GGy7IaBhwV_pIns,534
184
184
  bl_ui_utils/__init__.pyi,sha256=6yinHCNictVwPqgqerb5zXorsqM0cqPLmz_r8ms1XeE,89
@@ -245,8 +245,8 @@ bpy/ops/material/__init__.pyi,sha256=7yA8XRBaeLm-2IGqQqXcDGNctp3amhdmBMTPoWHw5G8
245
245
  bpy/ops/mball/__init__.pyi,sha256=3avjhyGC4WLxkWeTp16xJjaN3dp05ecbIXJnc2EtXVs,4258
246
246
  bpy/ops/mesh/__init__.pyi,sha256=ORj5lR7JCJdr3ZQrWVfe5p40LGnbAI8cxegrPOfmV8I,132167
247
247
  bpy/ops/nla/__init__.pyi,sha256=xj5WdhNuTLCf0XbePE1XPiPfS78Ea45lA28gOntmOFI,18812
248
- bpy/ops/node/__init__.pyi,sha256=tnM6p2UOOwZPcnlpHuBeYtIYViuQ95jZfojPLcz6xso,67141
249
- bpy/ops/object/__init__.pyi,sha256=Svu9ZvRd5kfQJZb_6dhz2OQ_QIoIn_ka5TtFwHw1LoM,175616
248
+ bpy/ops/node/__init__.pyi,sha256=O16wc-6WKUGM3th03BeiAil8I_EzilVwqf1SSxBQVHk,68047
249
+ bpy/ops/object/__init__.pyi,sha256=eDtqeh9hGz2nauPeWXnqUdsIAyuC7x3pC3td1shbY9Q,175898
250
250
  bpy/ops/outliner/__init__.pyi,sha256=ynP3AYcSIvRaROgjkuUMwL2F5P085Q_VVOZjhVC4VeY,29325
251
251
  bpy/ops/paint/__init__.pyi,sha256=14ik0wFRdTfSOMWb-ZQBc5FLHtq8xFeGiLMqrmtj374,38326
252
252
  bpy/ops/paintcurve/__init__.pyi,sha256=CyJ287wx58BG_V8H0yrKF8f01MUkuQLPMhlbSop8Tlw,3143
@@ -277,14 +277,14 @@ bpy/ops/uilist/__init__.pyi,sha256=CSwrFuqez9Ia24-_yFa5gAudByRrRqmaQVKrfExyRYc,1
277
277
  bpy/ops/uv/__init__.pyi,sha256=AfM3c8aTkjexYVvmRWS5ZZu0uEY8DdO63Gmz_dT-bz4,50521
278
278
  bpy/ops/view2d/__init__.pyi,sha256=bXpaqKJa4WVVOib1-e_jWpSirho63ignV5z0LPxfLCs,7173
279
279
  bpy/ops/view3d/__init__.pyi,sha256=JET9fsqbX7Yqaf1IYsV2tvT4FwhYMklB_rOnEbG2OK8,31946
280
- bpy/ops/wm/__init__.pyi,sha256=1o58PXNIpKFQh_mzlZhgog191pDJB_10KHkBv2DWJtQ,210439
280
+ bpy/ops/wm/__init__.pyi,sha256=LCvr1AupUVbhC9Vz6YDRYqncptUbVzK5pevFpYqnxoc,210003
281
281
  bpy/ops/workspace/__init__.pyi,sha256=Yfe-bzDigcZkkMulfyDa0wbwqzHBrfp5mn0u_sCN7wo,2418
282
282
  bpy/ops/world/__init__.pyi,sha256=VTCqEUTLL6yJroZCNcMYQgEKVmjwkIwIy70vB78rdOM,673
283
283
  bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
284
284
  bpy/props/__init__.pyi,sha256=_gmJ54eKwSmNZHQyDK1CiQn9fSy_L9K3jfSeX9nhCK4,51038
285
285
  bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
286
- bpy/stub_internal/rna_enums/__init__.pyi,sha256=3Rf86PTxdaPkXJm3c0DewwdrYElayqXNfuh4qIzhMZQ,143521
287
- bpy/types/__init__.pyi,sha256=1sGEK7MdqPrgWJGvgWOI1EO4BC-MCyWBHyk98Mwqmdc,5884414
286
+ bpy/stub_internal/rna_enums/__init__.pyi,sha256=lGdiUitB5xHVH31SC7djPlTqudqa2v94cxZD11N52C0,143494
287
+ bpy/types/__init__.pyi,sha256=vCiLiOiEGc5RSgPadizI40Ke43RCZ2tePlD-YdK8oxI,5888673
288
288
  bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
289
289
  bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
290
290
  bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
@@ -295,7 +295,7 @@ bpy_extras/asset_utils/__init__.pyi,sha256=aM9iiUUy5PcxHY5lz-UxfvLzAc9bH5Y-z3kRR
295
295
  bpy_extras/bmesh_utils/__init__.pyi,sha256=KrJhW9Esut9jZKqcogqgPnrC9LbJOOe3szRluEd5j-E,513
296
296
  bpy_extras/id_map_utils/__init__.pyi,sha256=IXrJ93ipXCEEwjJ09T_NNbc0S2RZRvckkjqTNeYk9dY,503
297
297
  bpy_extras/image_utils/__init__.pyi,sha256=ipjyDTKT1rNz_tp4nJ38mALa1_ZnDEURWHw1mWi5lLg,2142
298
- bpy_extras/io_utils/__init__.pyi,sha256=snQWnl6HRl9KsgNQz-bZbjjX08_QKw95Z_6_Ax1v9OU,5534
298
+ bpy_extras/io_utils/__init__.pyi,sha256=v6Kuref58bOGtczuZOsRO4gHO9Mp8u-4lYmjtq3N3tU,5565
299
299
  bpy_extras/keyconfig_utils/__init__.pyi,sha256=30atSCQ_wUkCLsOQJNkK4Ehw7tI4nm4O8bdmJHScI0g,410
300
300
  bpy_extras/mesh_utils/__init__.pyi,sha256=QgIaoOkOsjdJblEhN7CNcjchpge89dcFpHGLVLv0KQE,3019
301
301
  bpy_extras/node_shader_utils/__init__.pyi,sha256=xsE6hL3eHv4iuBrkGhLSyV_tPi7ge537EnIUXKO_NMY,5951
@@ -317,7 +317,7 @@ freestyle/functions/__init__.pyi,sha256=dGcOMrCayIE_OXrHIm36aQUAsCyNwvX63DjLjJw6
317
317
  freestyle/predicates/__init__.pyi,sha256=3Y8x157YP6udskhuFb_UZYvGyZjjEhGIJWQoj0BMLsw,13550
318
318
  freestyle/shaders/__init__.pyi,sha256=SUbnzfs9aX629SUz1vacJUkTQS2F8-E4TS1SetN0yFs,24630
319
319
  freestyle/types/__init__.pyi,sha256=LkVRkopB5Ntk0LeBeq4vnaVE-4CVtDcMVCKy75_sM9Y,101295
320
- freestyle/utils/__init__.pyi,sha256=I5thoI3sH_4ZEpx_7KK1Tl76DjREB7C-8g7A_IdQunQ,5328
320
+ freestyle/utils/__init__.pyi,sha256=vrxmLboZoETh1_GfhS4xYZ7vzW6Oh3vElX7y16Ftw0c,5328
321
321
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=IKNZD__52vYS5eT32F_WZwW1dco_6G2kZC_1IVCAwLs,3486
322
322
  gpu/__init__.pyi,sha256=TLoatdrTMM6vfjnbuQA6cW38ARW5nuLa4Y-eicnJU5Q,8900
323
323
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -364,7 +364,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
364
364
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
365
  rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
366
366
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
- fake_bpy_module-20250922.dist-info/METADATA,sha256=2ZIlaVU_9ZjDJzAHIUggueUZdo6PxmWybLy-EgKW7HU,7429
368
- fake_bpy_module-20250922.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
369
- fake_bpy_module-20250922.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
370
- fake_bpy_module-20250922.dist-info/RECORD,,
367
+ fake_bpy_module-20250924.dist-info/METADATA,sha256=HBPbVmFIiUM1qfeqnidd-7QISDsN19xLgkI2KKY78hw,7429
368
+ fake_bpy_module-20250924.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
369
+ fake_bpy_module-20250924.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
370
+ fake_bpy_module-20250924.dist-info/RECORD,,
@@ -125,7 +125,7 @@ def material_from_fedge(fe) -> None:
125
125
  """get the diffuse RGBA color from an FEdge"""
126
126
 
127
127
  def normal_at_I0D(it) -> None: ...
128
- def pairwise(iterable, types={StrokeVertexIterator, Stroke}) -> None:
128
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}) -> None:
129
129
  """Yields a tuple containing the previous and current object"""
130
130
 
131
131
  def rgb_to_bw(r, g, b) -> None: