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

@@ -433,6 +433,33 @@ class GRAPH_MT_view_pie(bpy.types.Menu):
433
433
  :param context:
434
434
  """
435
435
 
436
+ class GRAPH_PT_driver_snapping(bpy.types.Panel):
437
+ bl_label: typing.Any
438
+ bl_region_type: typing.Any
439
+ bl_rna: typing.Any
440
+ bl_space_type: typing.Any
441
+ id_data: typing.Any
442
+
443
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
444
+ """
445
+
446
+ :return: The RNA type or default when not found.
447
+ :rtype: bpy.types.Struct
448
+ """
449
+
450
+ def bl_rna_get_subclass_py(self) -> typing.Any:
451
+ """
452
+
453
+ :return: The class or default when not found.
454
+ :rtype: typing.Any
455
+ """
456
+
457
+ def draw(self, context):
458
+ """
459
+
460
+ :param context:
461
+ """
462
+
436
463
  class GRAPH_PT_filters(
437
464
  bl_ui.space_dopesheet.DopesheetFilterPopoverBase, bpy.types.Panel
438
465
  ):
@@ -277,6 +277,38 @@ class OUTLINER_MT_editor_menus(bpy.types.Menu):
277
277
  :param context:
278
278
  """
279
279
 
280
+ class OUTLINER_MT_id_data(bpy.types.Menu):
281
+ bl_label: typing.Any
282
+ bl_rna: typing.Any
283
+ id_data: typing.Any
284
+
285
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
286
+ """
287
+
288
+ :return: The RNA type or default when not found.
289
+ :rtype: bpy.types.Struct
290
+ """
291
+
292
+ def bl_rna_get_subclass_py(self) -> typing.Any:
293
+ """
294
+
295
+ :return: The class or default when not found.
296
+ :rtype: typing.Any
297
+ """
298
+
299
+ def draw(self, context):
300
+ """
301
+
302
+ :param context:
303
+ """
304
+
305
+ @classmethod
306
+ def poll(cls, context):
307
+ """
308
+
309
+ :param context:
310
+ """
311
+
280
312
  class OUTLINER_MT_liboverride(bpy.types.Menu):
281
313
  bl_label: typing.Any
282
314
  bl_rna: typing.Any
@@ -3237,7 +3237,7 @@ class USERPREF_UL_asset_libraries(bpy.types.UIList):
3237
3237
  layout,
3238
3238
  _data,
3239
3239
  item,
3240
- icon,
3240
+ _icon,
3241
3241
  _active_data,
3242
3242
  _active_propname,
3243
3243
  _index,
@@ -3248,7 +3248,7 @@ class USERPREF_UL_asset_libraries(bpy.types.UIList):
3248
3248
  :param layout:
3249
3249
  :param _data:
3250
3250
  :param item:
3251
- :param icon:
3251
+ :param _icon:
3252
3252
  :param _active_data:
3253
3253
  :param _active_propname:
3254
3254
  :param _index:
@@ -413,6 +413,15 @@ def id_delete(execution_context: int | str | None = None, undo: bool | None = No
413
413
  :type undo: bool | None
414
414
  """
415
415
 
416
+ def id_linked_relocate(
417
+ execution_context: int | str | None = None, undo: bool | None = None
418
+ ):
419
+ """Replace the active linked ID (and its dependencies if any) by another one, from the same or a different library
420
+
421
+ :type execution_context: int | str | None
422
+ :type undo: bool | None
423
+ """
424
+
416
425
  def id_operation(
417
426
  execution_context: int | str | None = None,
418
427
  undo: bool | None = None,
bpy/ops/wm/__init__.pyi CHANGED
@@ -1779,6 +1779,132 @@ def grease_pencil_import_svg(
1779
1779
  :type use_scene_unit: bool | None
1780
1780
  """
1781
1781
 
1782
+ def id_linked_relocate(
1783
+ execution_context: int | str | None = None,
1784
+ undo: bool | None = None,
1785
+ /,
1786
+ *,
1787
+ id_session_uid: int | None = 0,
1788
+ filepath: str = "",
1789
+ directory: str = "",
1790
+ filename: str = "",
1791
+ check_existing: bool | None = False,
1792
+ filter_blender: bool | None = True,
1793
+ filter_backup: bool | None = False,
1794
+ filter_image: bool | None = False,
1795
+ filter_movie: bool | None = False,
1796
+ filter_python: bool | None = False,
1797
+ filter_font: bool | None = False,
1798
+ filter_sound: bool | None = False,
1799
+ filter_text: bool | None = False,
1800
+ filter_archive: bool | None = False,
1801
+ filter_btx: bool | None = False,
1802
+ filter_collada: bool | None = False,
1803
+ filter_alembic: bool | None = False,
1804
+ filter_usd: bool | None = False,
1805
+ filter_obj: bool | None = False,
1806
+ filter_volume: bool | None = False,
1807
+ filter_folder: bool | None = True,
1808
+ filter_blenlib: bool | None = True,
1809
+ filemode: int | None = 1,
1810
+ relative_path: bool | None = True,
1811
+ display_type: typing.Literal[
1812
+ "DEFAULT", "LIST_VERTICAL", "LIST_HORIZONTAL", "THUMBNAIL"
1813
+ ]
1814
+ | None = "DEFAULT",
1815
+ sort_method: str | None = "",
1816
+ link: bool | None = True,
1817
+ do_reuse_local_id: bool | None = False,
1818
+ clear_asset_data: bool | None = False,
1819
+ autoselect: bool | None = True,
1820
+ active_collection: bool | None = False,
1821
+ instance_collections: bool | None = False,
1822
+ instance_object_data: bool | None = False,
1823
+ ):
1824
+ """Relocate a linked ID, i.e. select another ID to link, and remap its local usages to that newly linked data-block). Currently only designed as an internal operator, not directly exposed to the user
1825
+
1826
+ :type execution_context: int | str | None
1827
+ :type undo: bool | None
1828
+ :param id_session_uid: Linked ID Session UID, Unique runtime identifier for the linked ID to relocate
1829
+ :type id_session_uid: int | None
1830
+ :param filepath: File Path, Path to file
1831
+ :type filepath: str
1832
+ :param directory: Directory, Directory of the file
1833
+ :type directory: str
1834
+ :param filename: File Name, Name of the file
1835
+ :type filename: str
1836
+ :param check_existing: Check Existing, Check and warn on overwriting existing files
1837
+ :type check_existing: bool | None
1838
+ :param filter_blender: Filter .blend files
1839
+ :type filter_blender: bool | None
1840
+ :param filter_backup: Filter .blend files
1841
+ :type filter_backup: bool | None
1842
+ :param filter_image: Filter image files
1843
+ :type filter_image: bool | None
1844
+ :param filter_movie: Filter movie files
1845
+ :type filter_movie: bool | None
1846
+ :param filter_python: Filter Python files
1847
+ :type filter_python: bool | None
1848
+ :param filter_font: Filter font files
1849
+ :type filter_font: bool | None
1850
+ :param filter_sound: Filter sound files
1851
+ :type filter_sound: bool | None
1852
+ :param filter_text: Filter text files
1853
+ :type filter_text: bool | None
1854
+ :param filter_archive: Filter archive files
1855
+ :type filter_archive: bool | None
1856
+ :param filter_btx: Filter btx files
1857
+ :type filter_btx: bool | None
1858
+ :param filter_collada: Filter COLLADA files
1859
+ :type filter_collada: bool | None
1860
+ :param filter_alembic: Filter Alembic files
1861
+ :type filter_alembic: bool | None
1862
+ :param filter_usd: Filter USD files
1863
+ :type filter_usd: bool | None
1864
+ :param filter_obj: Filter OBJ files
1865
+ :type filter_obj: bool | None
1866
+ :param filter_volume: Filter OpenVDB volume files
1867
+ :type filter_volume: bool | None
1868
+ :param filter_folder: Filter folders
1869
+ :type filter_folder: bool | None
1870
+ :param filter_blenlib: Filter Blender IDs
1871
+ :type filter_blenlib: bool | None
1872
+ :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
1873
+ :type filemode: int | None
1874
+ :param relative_path: Relative Path, Select the file relative to the blend file
1875
+ :type relative_path: bool | None
1876
+ :param display_type: Display Type
1877
+
1878
+ DEFAULT
1879
+ Default -- Automatically determine display type for files.
1880
+
1881
+ LIST_VERTICAL
1882
+ Short List -- Display files as short list.
1883
+
1884
+ LIST_HORIZONTAL
1885
+ Long List -- Display files as a detailed list.
1886
+
1887
+ THUMBNAIL
1888
+ Thumbnails -- Display files as thumbnails.
1889
+ :type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
1890
+ :param sort_method: File sorting mode
1891
+ :type sort_method: str | None
1892
+ :param link: Link, Link the objects or data-blocks rather than appending
1893
+ :type link: bool | None
1894
+ :param do_reuse_local_id: Re-Use Local Data, Try to re-use previously matching appended data-blocks instead of appending a new copy
1895
+ :type do_reuse_local_id: bool | None
1896
+ :param clear_asset_data: Clear Asset Data, Don't add asset meta-data or tags from the original data-block
1897
+ :type clear_asset_data: bool | None
1898
+ :param autoselect: Select, Select new objects
1899
+ :type autoselect: bool | None
1900
+ :param active_collection: Active Collection, Put new objects on the active collection
1901
+ :type active_collection: bool | None
1902
+ :param instance_collections: Instance Collections, Create instances for collections, rather than adding them directly to the scene
1903
+ :type instance_collections: bool | None
1904
+ :param instance_object_data: Instance Object Data, Create instances for object data which are not referenced by any objects
1905
+ :type instance_object_data: bool | None
1906
+ """
1907
+
1782
1908
  def interface_theme_preset_add(
1783
1909
  execution_context: int | str | None = None,
1784
1910
  undo: bool | None = None,
bpy/types/__init__.pyi CHANGED
@@ -129328,31 +129328,31 @@ class CompositorNodeBokehImage(CompositorNode, NodeInternal, Node, bpy_struct):
129328
129328
  """Generate image with bokeh shape for use with the Bokeh Blur filter node"""
129329
129329
 
129330
129330
  angle: float
129331
- """ Angle of the bokeh
129331
+ """ Angle of the bokeh. (Deprecated: Use Angle input instead)
129332
129332
 
129333
129333
  :type: float
129334
129334
  """
129335
129335
 
129336
129336
  catadioptric: float
129337
- """ Level of catadioptric of the bokeh
129337
+ """ Level of catadioptric of the bokeh. (Deprecated: Use Catadioptric Size input instead)
129338
129338
 
129339
129339
  :type: float
129340
129340
  """
129341
129341
 
129342
129342
  flaps: int
129343
- """ Number of flaps
129343
+ """ Number of flaps. (Deprecated: Use Flaps input instead)
129344
129344
 
129345
129345
  :type: int
129346
129346
  """
129347
129347
 
129348
129348
  rounding: float
129349
- """ Level of rounding of the bokeh
129349
+ """ Level of rounding of the bokeh. (Deprecated: Use Roundness input instead)
129350
129350
 
129351
129351
  :type: float
129352
129352
  """
129353
129353
 
129354
129354
  shift: float
129355
- """ Shift of the lens components
129355
+ """ Shift of the lens components. (Deprecated: Use Color Shift input instead)
129356
129356
 
129357
129357
  :type: float
129358
129358
  """
@@ -132872,13 +132872,13 @@ class CompositorNodeInvert(CompositorNode, NodeInternal, Node, bpy_struct):
132872
132872
  """Invert colors, producing a negative"""
132873
132873
 
132874
132874
  invert_alpha: bool
132875
- """
132875
+ """ (Deprecated: Use Invert Alpha node instead.)
132876
132876
 
132877
132877
  :type: bool
132878
132878
  """
132879
132879
 
132880
132880
  invert_rgb: bool
132881
- """
132881
+ """ (Deprecated: Use Invert Color node instead.)
132882
132882
 
132883
132883
  :type: bool
132884
132884
  """
@@ -133640,13 +133640,13 @@ class CompositorNodeMask(CompositorNode, NodeInternal, Node, bpy_struct):
133640
133640
  """
133641
133641
 
133642
133642
  motion_blur_samples: int
133643
- """ Number of motion blur samples
133643
+ """ Number of motion blur samples. (Deprecated: Use Motion Blur Samples input instead.)
133644
133644
 
133645
133645
  :type: int
133646
133646
  """
133647
133647
 
133648
133648
  motion_blur_shutter: float
133649
- """ Exposure for motion blur as a factor of FPS
133649
+ """ Exposure for motion blur as a factor of FPS. (Deprecated: Use Motion Blur Shutter input instead.)
133650
133650
 
133651
133651
  :type: float
133652
133652
  """
@@ -133658,25 +133658,25 @@ class CompositorNodeMask(CompositorNode, NodeInternal, Node, bpy_struct):
133658
133658
  """
133659
133659
 
133660
133660
  size_x: int
133661
- """
133661
+ """ (Deprecated: Use Size X input instead.)
133662
133662
 
133663
133663
  :type: int
133664
133664
  """
133665
133665
 
133666
133666
  size_y: int
133667
- """
133667
+ """ (Deprecated: Use Size Y input instead.)
133668
133668
 
133669
133669
  :type: int
133670
133670
  """
133671
133671
 
133672
133672
  use_feather: bool
133673
- """ Use feather information from the mask
133673
+ """ Use feather information from the mask. (Deprecated: Use Feather input instead.)
133674
133674
 
133675
133675
  :type: bool
133676
133676
  """
133677
133677
 
133678
133678
  use_motion_blur: bool
133679
- """ Use multi-sampled motion blur of the mask
133679
+ """ Use multi-sampled motion blur of the mask. (Deprecated: Use Motion Blur input instead.)
133680
133680
 
133681
133681
  :type: bool
133682
133682
  """
@@ -135440,7 +135440,7 @@ class CompositorNodeSwitch(CompositorNode, NodeInternal, Node, bpy_struct):
135440
135440
  """Switch between two images using a checkbox"""
135441
135441
 
135442
135442
  check: bool
135443
- """ Off: first socket, On: second socket
135443
+ """ Off: first socket, On: second socket. (Deprecated: Use Switch input instead.)
135444
135444
 
135445
135445
  :type: bool
135446
135446
  """
@@ -136307,13 +136307,13 @@ class CompositorNodeZcombine(CompositorNode, NodeInternal, Node, bpy_struct):
136307
136307
  """Combine two images using depth maps"""
136308
136308
 
136309
136309
  use_alpha: bool
136310
- """ Take alpha channel into account when doing the Z operation
136310
+ """ Take alpha channel into account when doing the Z operation. (Deprecated: Use Use Alpha input instead.)
136311
136311
 
136312
136312
  :type: bool
136313
136313
  """
136314
136314
 
136315
136315
  use_antialias_z: bool
136316
- """ Anti-alias the z-buffer to try to avoid artifacts, mostly useful for Blender renders
136316
+ """ Anti-alias the z-buffer to try to avoid artifacts, mostly useful for Blender renders. (Deprecated: Use Anti-Alias input instead.)
136317
136317
 
136318
136318
  :type: bool
136319
136319
  """
@@ -193366,13 +193366,13 @@ class OperatorStrokeElement(PropertyGroup, bpy_struct):
193366
193366
  """
193367
193367
 
193368
193368
  x_tilt: float
193369
- """
193369
+ """ Pen tilt from left (-1.0) to right (+1.0)
193370
193370
 
193371
193371
  :type: float
193372
193372
  """
193373
193373
 
193374
193374
  y_tilt: float
193375
- """
193375
+ """ Pen tilt from forward (-1.0) to back (+1.0)
193376
193376
 
193377
193377
  :type: float
193378
193378
  """
@@ -198312,12 +198312,6 @@ class PreferencesExperimental(bpy_struct):
198312
198312
  :type: bool
198313
198313
  """
198314
198314
 
198315
- use_new_pointcloud_type: bool
198316
- """ Enable the new point cloud type in the ui
198317
-
198318
- :type: bool
198319
- """
198320
-
198321
198315
  use_new_volume_nodes: bool
198322
198316
  """ Enables visibility of the new Volume nodes in the UI
198323
198317
 
@@ -228459,6 +228453,18 @@ class ToolSettings(bpy_struct):
228459
228453
  :type: bool
228460
228454
  """
228461
228455
 
228456
+ use_snap_driver: bool
228457
+ """ Enable snapping when transforming keys in the Driver Editor
228458
+
228459
+ :type: bool
228460
+ """
228461
+
228462
+ use_snap_driver_absolute: bool
228463
+ """ Snap to full values
228464
+
228465
+ :type: bool
228466
+ """
228467
+
228462
228468
  use_snap_edit: bool
228463
228469
  """ Snap onto non-active objects in edit mode (edit mode only)
228464
228470
 
@@ -231622,7 +231628,7 @@ class USERPREF_UL_asset_libraries(UIList, bpy_struct):
231622
231628
  layout,
231623
231629
  _data,
231624
231630
  item,
231625
- icon,
231631
+ _icon,
231626
231632
  _active_data,
231627
231633
  _active_propname,
231628
231634
  _index,
@@ -231633,7 +231639,7 @@ class USERPREF_UL_asset_libraries(UIList, bpy_struct):
231633
231639
  :param layout:
231634
231640
  :param _data:
231635
231641
  :param item:
231636
- :param icon:
231642
+ :param _icon:
231637
231643
  :param _active_data:
231638
231644
  :param _active_propname:
231639
231645
  :param _index:
@@ -239690,6 +239696,8 @@ GRAPH_MT_view: bl_ui.space_graph.GRAPH_MT_view
239690
239696
 
239691
239697
  GRAPH_MT_view_pie: bl_ui.space_graph.GRAPH_MT_view_pie
239692
239698
 
239699
+ GRAPH_PT_driver_snapping: bl_ui.space_graph.GRAPH_PT_driver_snapping
239700
+
239693
239701
  GRAPH_PT_filters: bl_ui.space_graph.GRAPH_PT_filters
239694
239702
 
239695
239703
  GRAPH_PT_proportional_edit: bl_ui.space_graph.GRAPH_PT_proportional_edit
@@ -240412,6 +240420,8 @@ OUTLINER_MT_edit_datablocks: bl_ui.space_outliner.OUTLINER_MT_edit_datablocks
240412
240420
 
240413
240421
  OUTLINER_MT_editor_menus: bl_ui.space_outliner.OUTLINER_MT_editor_menus
240414
240422
 
240423
+ OUTLINER_MT_id_data: bl_ui.space_outliner.OUTLINER_MT_id_data
240424
+
240415
240425
  OUTLINER_MT_liboverride: bl_ui.space_outliner.OUTLINER_MT_liboverride
240416
240426
 
240417
240427
  OUTLINER_MT_object: bl_ui.space_outliner.OUTLINER_MT_object
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250414
3
+ Version: 20250416
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
@@ -157,12 +157,12 @@ bl_ui/space_clip/__init__.pyi,sha256=m-hA2BCfHkiX3mLo0EHswP6WJ0C-nGtWpYki4OklnXA
157
157
  bl_ui/space_console/__init__.pyi,sha256=X_JBBHl7cwwDVYQlTAE4H5T6HkqSzQVNYGtnyBtv-WA,3300
158
158
  bl_ui/space_dopesheet/__init__.pyi,sha256=p5RHcM6ISy5-iEKeNEZ1cf0EMEbVBpK6MhcZHkHvuX8,18097
159
159
  bl_ui/space_filebrowser/__init__.pyi,sha256=ErbWCbLKrVSMnf8J2Ae-_H-0vAao-5Wz3J3FYVptAb8,20223
160
- bl_ui/space_graph/__init__.pyi,sha256=1oqUbvSNboHycXYH0DBPz4Lib6JsgkCTXfDcamabzFM,11014
160
+ bl_ui/space_graph/__init__.pyi,sha256=sadLptKxyzDtIT5Pmd1pDYWCL3AFCT2b3yzCtaikWYc,11606
161
161
  bl_ui/space_image/__init__.pyi,sha256=dt24hDX6d62SH7MDYEt4JBrS_Q4M_KTqvv9rAvug1hs,45232
162
162
  bl_ui/space_info/__init__.pyi,sha256=ukwr4M_jVQH2U1wo4jTie5RK8kf3wfEBHnTIV8dvKxM,3312
163
163
  bl_ui/space_nla/__init__.pyi,sha256=rHI5YccrddEIyXIv7ojfdoS5H5-8W3t9CD86W0DZWTw,9562
164
164
  bl_ui/space_node/__init__.pyi,sha256=ifKNLaAQtFwsoOvJGSfXu1jdjM78PQjKZWGpIBuFzN8,18764
165
- bl_ui/space_outliner/__init__.pyi,sha256=1MicqfpCaTGAgzzbrtzGhknJwP5S5QjjqXpI9fUv16I,8117
165
+ bl_ui/space_outliner/__init__.pyi,sha256=aWQ1K-cserymanCQMirg5Bu0lXcp499ueG5IdtXLi_8,8737
166
166
  bl_ui/space_properties/__init__.pyi,sha256=8XL7_69ni6CTbZUmAUnda74qZk3aV_rmJvhqNjr0j0k,2735
167
167
  bl_ui/space_sequencer/__init__.pyi,sha256=mqzwfhlyp2tV2nlLIpEyNmN6MIXy9qd7FWO0hGsyJHg,55310
168
168
  bl_ui/space_spreadsheet/__init__.pyi,sha256=1ZNN9pDfL8DVAjfm1JPNzZHJ0u5PNuaWsD4hiYSoH7g,1477
@@ -172,7 +172,7 @@ bl_ui/space_time/__init__.pyi,sha256=2cMsdu3bk7NU5W2beqhyWJCL1-d4aa26R1KNTq0v07M
172
172
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=u9fq0qxsCYtwB6CEJHjkfbrkj4uDxd9Y5RZ_4Q76Iss,3212
173
173
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=nw4_dyzrE9gxIsDHRKDqQG6V6tQYZWcD-2wQzALvKp4,9973
174
174
  bl_ui/space_topbar/__init__.pyi,sha256=8JXrYqbiPLGQTsbcniOLTaAhvhtkLSaTFmikzMMH5Zo,15343
175
- bl_ui/space_userpref/__init__.pyi,sha256=SwWBb-YWDose1At4BoXvs9YUtkz3YwyjazkkmkGVAYY,79607
175
+ bl_ui/space_userpref/__init__.pyi,sha256=u6fweJMvs86854KldySIbAPoigu9f14mUF0TeLaQqjM,79609
176
176
  bl_ui/space_view3d/__init__.pyi,sha256=ti9fWwn2LavDNpDzziuZP0Iq_YhZocwm9TZpc_QRW9I,157186
177
177
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=Ustue-nkysid6xip9XciEHWqCROHnUVF_FTFaXryQjw,76322
178
178
  bl_ui/utils/__init__.pyi,sha256=wzUQN8iooBJnE-iFedHD1cTNBwFUmwZN6d2jwfRIK5Y,510
@@ -244,7 +244,7 @@ bpy/ops/mesh/__init__.pyi,sha256=JxF40_1aTup030iKyTdKOMajm67wsEOKcmKc4XcQCdQ,132
244
244
  bpy/ops/nla/__init__.pyi,sha256=6C8Gm7ZOBATflqUymRCXljSEKN_oE1MvqVMpR05eVIM,18172
245
245
  bpy/ops/node/__init__.pyi,sha256=SA7zC30uMpDZGZWjoUv0lIN5XymthWMnHJJyY_UnzTc,60877
246
246
  bpy/ops/object/__init__.pyi,sha256=VAiI6_RRph_OHcWtrjpbhEvMMc2qPB8waE5eB2XwV_o,168533
247
- bpy/ops/outliner/__init__.pyi,sha256=MnOyASVckw3cVMUICszbNrPEfchfFB1Ny2drSnrScvI,27770
247
+ bpy/ops/outliner/__init__.pyi,sha256=5ksIXcWA2dfw0ogr_yEF5KrQlolqR-8sn3Al3Wx6-Ec,28073
248
248
  bpy/ops/paint/__init__.pyi,sha256=U-uMYTkGLmcnkI9RsWRnsbqDLJuLaWPk-5ue5rnoQwg,37692
249
249
  bpy/ops/paintcurve/__init__.pyi,sha256=3V3HI5tmtyehUcJyiNj8NO4uj-Q7B9xIvBgnAn3BlmU,3007
250
250
  bpy/ops/palette/__init__.pyi,sha256=pknbUb-AUd1IJ5sehVq2_VRvvfgwAe39OYpgG6QnaHw,2120
@@ -274,12 +274,12 @@ bpy/ops/uilist/__init__.pyi,sha256=CvereEDgN2sNfwlFl55E3sGeLTcaUcTCowuL1XVlclE,1
274
274
  bpy/ops/uv/__init__.pyi,sha256=nVZbRNLymiV8kXoRxWWNRSq72QkPBHTtwifjBxyVINY,45463
275
275
  bpy/ops/view2d/__init__.pyi,sha256=-ofLmKQJ0PqTP5b_mT2JHGo-Jf7aa3qeEf1nsmJQf50,7013
276
276
  bpy/ops/view3d/__init__.pyi,sha256=zjN4R4gMYbiteFoT7Hq2jy6JC9o5VmtOvRcq4og13s8,30895
277
- bpy/ops/wm/__init__.pyi,sha256=rTB8FuFxpeEtjauUJTlXiv540U0ke8Ahq37jS7kaa2M,216201
277
+ bpy/ops/wm/__init__.pyi,sha256=SUFra28kG7VC4M6Npd3pEk9pf2IZlIHReP1PhGHSL1M,221862
278
278
  bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuNo,2024
279
279
  bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
280
280
  bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
281
281
  bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
282
- bpy/types/__init__.pyi,sha256=jvKr_jRWrQEXD5jPOu5bWXsLhBbLOWGBQroShN5kfNU,5585643
282
+ bpy/types/__init__.pyi,sha256=Upi0xLx5yw2oWgFR1yTa0GC_qxvo7iEqCp-S3ZbrITo,5586670
283
283
  bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
284
284
  bpy/utils/previews/__init__.pyi,sha256=Pji8UKqvI3AJTk5v3nCK92URlJfehxuoaaJW6n9L7XU,2342
285
285
  bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
314
314
  freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
315
315
  freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
316
316
  freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
317
- freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
317
+ freestyle/utils/__init__.pyi,sha256=ub0HsAFKN7jMbNu3fuP9OpaOSHywBpSckuXSexz0Bos,5135
318
318
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
319
319
  gpu/__init__.pyi,sha256=zVeZ4mRNYZyEgbp-j6uZ6ZQTpWFGh7j3R8UT9JOZ_0w,8026
320
320
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -328,7 +328,7 @@ gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
328
328
  gpu/types/__init__.pyi,sha256=9wnXX8CdoIPTRMxWLEEiwmDi8Xj0-_lovIxRZ5BEKaM,29330
329
329
  gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
330
330
  gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
- gpu_extras/batch/__init__.pyi,sha256=P0KwOXu_4yBZvCupG7WJ08TQ6yvocr5NZLAhJK_qLtQ,1305
331
+ gpu_extras/batch/__init__.pyi,sha256=0z8rIEm4SFuC-rUGyoOMU0L6i_TsaW5nJN9cGR6u40Y,1306
332
332
  gpu_extras/presets/__init__.pyi,sha256=9MrG1r0CUOxBYWyp_vZSYxs47oElIxca1uMyuFPLKdw,1674
333
333
  graphviz_export/__init__.pyi,sha256=_breciGLRC6qTh-HOor-Ufn_fI5HXnoQego6mmvTAIQ,242
334
334
  graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
361
361
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
362
  rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
363
363
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
- fake_bpy_module-20250414.dist-info/METADATA,sha256=barK41Sdg6KHdrh4qm2ycoDEba4GCJ4hSjUTm2G6ntE,7429
365
- fake_bpy_module-20250414.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
- fake_bpy_module-20250414.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250414.dist-info/RECORD,,
364
+ fake_bpy_module-20250416.dist-info/METADATA,sha256=Z1H9kZKBs1_Yak791hwZVGn5tV8XWLxI-BDOu_iMI9Y,7429
365
+ fake_bpy_module-20250416.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
+ fake_bpy_module-20250416.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250416.dist-info/RECORD,,
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
125
125
  """get the diffuse RGBA color from an FEdge"""
126
126
 
127
127
  def normal_at_I0D(it): ...
128
- def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
128
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
129
129
  """Yields a tuple containing the previous and current object"""
130
130
 
131
131
  def rgb_to_bw(r, g, b):
@@ -2,7 +2,6 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bgl
6
5
  import gpu.types
7
6
 
8
7
  def batch_for_shader(
@@ -10,7 +9,7 @@ def batch_for_shader(
10
9
  type: str,
11
10
  content: dict[
12
11
  str,
13
- bgl.Buffer
12
+ gpu.types.Buffer
14
13
  | collections.abc.Sequence[float]
15
14
  | collections.abc.Sequence[int]
16
15
  | collections.abc.Sequence[collections.abc.Sequence[float]]
@@ -27,7 +26,7 @@ def batch_for_shader(
27
26
  :type type: str
28
27
  :param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
29
28
  For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
30
- :type content: dict[str, bgl.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
29
+ :type content: dict[str, gpu.types.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
31
30
  :return: compatible batch
32
31
  :rtype: gpu.types.GPUBatch
33
32
  """