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

@@ -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
bpy/ops/node/__init__.pyi CHANGED
@@ -1328,7 +1328,7 @@ def links_mute(
1328
1328
  /,
1329
1329
  *,
1330
1330
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1331
- cursor: int | None = 38,
1331
+ cursor: int | None = 39,
1332
1332
  ):
1333
1333
  """Use the mouse to mute links
1334
1334
 
@@ -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
  """
@@ -240412,6 +240412,8 @@ OUTLINER_MT_edit_datablocks: bl_ui.space_outliner.OUTLINER_MT_edit_datablocks
240412
240412
 
240413
240413
  OUTLINER_MT_editor_menus: bl_ui.space_outliner.OUTLINER_MT_editor_menus
240414
240414
 
240415
+ OUTLINER_MT_id_data: bl_ui.space_outliner.OUTLINER_MT_id_data
240416
+
240415
240417
  OUTLINER_MT_liboverride: bl_ui.space_outliner.OUTLINER_MT_liboverride
240416
240418
 
240417
240419
  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: 20250413
3
+ Version: 20250415
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
@@ -162,7 +162,7 @@ bl_ui/space_image/__init__.pyi,sha256=dt24hDX6d62SH7MDYEt4JBrS_Q4M_KTqvv9rAvug1h
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
@@ -242,9 +242,9 @@ bpy/ops/material/__init__.pyi,sha256=4Xm8cTXZ8L1NkYiLaYrwWA0p_paciXXBCk9MNnxsgJg
242
242
  bpy/ops/mball/__init__.pyi,sha256=vKET4S-NZrDAf4r1XUXjyyW8Ry5bdna9EeQlV3HMo5Y,4182
243
243
  bpy/ops/mesh/__init__.pyi,sha256=JxF40_1aTup030iKyTdKOMajm67wsEOKcmKc4XcQCdQ,132623
244
244
  bpy/ops/nla/__init__.pyi,sha256=6C8Gm7ZOBATflqUymRCXljSEKN_oE1MvqVMpR05eVIM,18172
245
- bpy/ops/node/__init__.pyi,sha256=UbpL5w6cW39x9qSrdZHRDIINR3QuGOKE1omADsGhFxw,60877
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=O4z41__H3V0ziM3UBpnlj9AycpMc7VemEE2P7GHa2Lw,5585923
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
@@ -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-20250413.dist-info/METADATA,sha256=rp-TtOsuETTED4Kau_-9h3Ac56ts20hlG5sSV8MoZz4,7429
365
- fake_bpy_module-20250413.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
- fake_bpy_module-20250413.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250413.dist-info/RECORD,,
364
+ fake_bpy_module-20250415.dist-info/METADATA,sha256=khNujqEjekVSDJ8DdcLzcmXuG8SO_loPUOgnuwVQkr4,7429
365
+ fake_bpy_module-20250415.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
+ fake_bpy_module-20250415.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250415.dist-info/RECORD,,