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

@@ -858,6 +858,31 @@ class SEQUENCER_MT_strip_retiming(bpy.types.Menu):
858
858
  :param context:
859
859
  """
860
860
 
861
+ class SEQUENCER_MT_strip_show_hide(bpy.types.Menu):
862
+ bl_label: typing.Any
863
+ bl_rna: typing.Any
864
+ id_data: typing.Any
865
+
866
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
867
+ """
868
+
869
+ :return: The RNA type or default when not found.
870
+ :rtype: bpy.types.Struct
871
+ """
872
+
873
+ def bl_rna_get_subclass_py(self) -> typing.Any:
874
+ """
875
+
876
+ :return: The class or default when not found.
877
+ :rtype: typing.Any
878
+ """
879
+
880
+ def draw(self, _context):
881
+ """
882
+
883
+ :param _context:
884
+ """
885
+
861
886
  class SEQUENCER_MT_strip_text(bpy.types.Menu):
862
887
  bl_label: typing.Any
863
888
  bl_rna: typing.Any
@@ -2755,10 +2755,10 @@ type RigidbodyObjectTypeItems = typing.Literal[
2755
2755
  "PASSIVE", # Passive.Object is directly controlled by animation system.
2756
2756
  ]
2757
2757
  type ShadingTypeItems = typing.Literal[
2758
- "WIREFRAME", # Wireframe.Display the object as wire edges.
2759
- "SOLID", # Solid.Display in solid mode.
2760
- "MATERIAL", # Material Preview.Display in Material Preview mode.
2761
- "RENDERED", # Rendered.Display render preview.
2758
+ "WIREFRAME", # Wireframe.Display only edges of geometry without surface shading.
2759
+ "SOLID", # Solid.Display objects with flat lighting and basic surface shading.
2760
+ "MATERIAL", # Material Preview.Preview materials using predefined environment lights.
2761
+ "RENDERED", # Rendered.Preview the final scene using the active render engine.
2762
2762
  ]
2763
2763
  type ShrinkwrapFaceCullItems = typing.Literal[
2764
2764
  "OFF", # Off.No culling.
bpy/types/__init__.pyi CHANGED
@@ -123508,10 +123508,10 @@ class BooleanModifier(Modifier, bpy_struct):
123508
123508
  :type: typing.Literal['INTERSECT','UNION','DIFFERENCE']
123509
123509
  """
123510
123510
 
123511
- solver: typing.Literal["FAST", "EXACT"]
123511
+ solver: typing.Literal["FAST", "EXACT", "MANIFOLD"]
123512
123512
  """ Method for calculating booleans
123513
123513
 
123514
- :type: typing.Literal['FAST','EXACT']
123514
+ :type: typing.Literal['FAST','EXACT','MANIFOLD']
123515
123515
  """
123516
123516
 
123517
123517
  use_hole_tolerant: bool
@@ -130268,31 +130268,31 @@ class CompositorNodeColorSpill(CompositorNode, NodeInternal, Node, bpy_struct):
130268
130268
  """
130269
130269
 
130270
130270
  ratio: float
130271
- """ Scale limit by value
130271
+ """ Scale limit by value. (Deprecated: Use Limit Strength input instead.)
130272
130272
 
130273
130273
  :type: float
130274
130274
  """
130275
130275
 
130276
130276
  unspill_blue: float
130277
- """ Blue spillmap scale
130277
+ """ Blue spillmap scale. (Deprecated: Use Spill Strength input instead.)
130278
130278
 
130279
130279
  :type: float
130280
130280
  """
130281
130281
 
130282
130282
  unspill_green: float
130283
- """ Green spillmap scale
130283
+ """ Green spillmap scale. (Deprecated: Use Spill Strength input instead.)
130284
130284
 
130285
130285
  :type: float
130286
130286
  """
130287
130287
 
130288
130288
  unspill_red: float
130289
- """ Red spillmap scale
130289
+ """ Red spillmap scale. (Deprecated: Use Spill Strength input instead.)
130290
130290
 
130291
130291
  :type: float
130292
130292
  """
130293
130293
 
130294
130294
  use_unspill: bool
130295
- """ Compensate all channels (differently) by hand
130295
+ """ Compensate all channels (differently) by hand. (Deprecated: Use Use Spill Strength input instead.)
130296
130296
 
130297
130297
  :type: bool
130298
130298
  """
@@ -133168,7 +133168,7 @@ class CompositorNodeKeyingScreen(CompositorNode, NodeInternal, Node, bpy_struct)
133168
133168
  """
133169
133169
 
133170
133170
  smoothness: float
133171
- """
133171
+ """ (Deprecated: Use Smoothness input instead.)
133172
133172
 
133173
133173
  :type: float
133174
133174
  """
@@ -157734,10 +157734,10 @@ class GeometryNodeMeshBoolean(GeometryNode, NodeInternal, Node, bpy_struct):
157734
157734
  :type: typing.Literal['INTERSECT','UNION','DIFFERENCE']
157735
157735
  """
157736
157736
 
157737
- solver: typing.Literal["EXACT", "FLOAT"]
157737
+ solver: typing.Literal["EXACT", "FLOAT", "MANIFOLD"]
157738
157738
  """
157739
157739
 
157740
- :type: typing.Literal['EXACT','FLOAT']
157740
+ :type: typing.Literal['EXACT','FLOAT','MANIFOLD']
157741
157741
  """
157742
157742
 
157743
157743
  @classmethod
@@ -214759,6 +214759,12 @@ class SpaceClipEditor(Space, bpy_struct):
214759
214759
  :type: bool
214760
214760
  """
214761
214761
 
214762
+ show_region_channels: bool
214763
+ """
214764
+
214765
+ :type: bool
214766
+ """
214767
+
214762
214768
  show_region_hud: bool
214763
214769
  """
214764
214770
 
@@ -241245,6 +241251,8 @@ SEQUENCER_MT_strip_movie: bl_ui.space_sequencer.SEQUENCER_MT_strip_movie
241245
241251
 
241246
241252
  SEQUENCER_MT_strip_retiming: bl_ui.space_sequencer.SEQUENCER_MT_strip_retiming
241247
241253
 
241254
+ SEQUENCER_MT_strip_show_hide: bl_ui.space_sequencer.SEQUENCER_MT_strip_show_hide
241255
+
241248
241256
  SEQUENCER_MT_strip_text: bl_ui.space_sequencer.SEQUENCER_MT_strip_text
241249
241257
 
241250
241258
  SEQUENCER_MT_strip_transform: bl_ui.space_sequencer.SEQUENCER_MT_strip_transform
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250422
3
+ Version: 20250423
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
@@ -164,7 +164,7 @@ bl_ui/space_nla/__init__.pyi,sha256=rHI5YccrddEIyXIv7ojfdoS5H5-8W3t9CD86W0DZWTw,
164
164
  bl_ui/space_node/__init__.pyi,sha256=ifKNLaAQtFwsoOvJGSfXu1jdjM78PQjKZWGpIBuFzN8,18764
165
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
- bl_ui/space_sequencer/__init__.pyi,sha256=mqzwfhlyp2tV2nlLIpEyNmN6MIXy9qd7FWO0hGsyJHg,55310
167
+ bl_ui/space_sequencer/__init__.pyi,sha256=4GwvQwg9dfn_pvw4OV5K9R6nphlKGdyY2bE_WPzQDiw,55846
168
168
  bl_ui/space_spreadsheet/__init__.pyi,sha256=1ZNN9pDfL8DVAjfm1JPNzZHJ0u5PNuaWsD4hiYSoH7g,1477
169
169
  bl_ui/space_statusbar/__init__.pyi,sha256=wthc9b3kBqNQjHnv8rgJYVcrKDhnpwFusUV2HYv4An4,640
170
170
  bl_ui/space_text/__init__.pyi,sha256=teImeFuFGcdE50Btg7h3Cnf65pHUpGvhO4uUeiWxhpE,8826
@@ -192,7 +192,7 @@ bmesh/utils/__init__.pyi,sha256=B2MEUdWjhoPVN_86ZJnKBouszuYlmox83fs_eMy_XSQ,6262
192
192
  bpy/__init__.pyi,sha256=xqYSQA60ItjGIlcKmU1c67ClE1dzY3IA0l7SeDDfFFg,491
193
193
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
194
  bpy/_typing/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
195
- bpy/_typing/rna_enums/__init__.pyi,sha256=gzGoh2vHz9KGc5JnfmYr-6k5u7cn2mrFfAiy0y28Jio,140438
195
+ bpy/_typing/rna_enums/__init__.pyi,sha256=QQliAaecHa0KjZWOctVrYTMGR38WNXiWjlyLlXYQqtE,140552
196
196
  bpy/app/__init__.pyi,sha256=Xwk-SXH12MBT1wOpGXofw-vK_zhwxtNX41BV9q6WvQE,8797
197
197
  bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
198
198
  bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuN
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=DuChJ4gPaRnFfDlbNChviISSgbrCUyCFSPDCXKCeKl0,5591802
282
+ bpy/types/__init__.pyi,sha256=1rQlOgW3dxg1vH8TgFlesOyOc1Ur4LaKqfX2OaGlS70,5592288
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-20250422.dist-info/METADATA,sha256=_4cey_ziJsRj6X_xIj324aHPxY9Cb0EHI6mJ7Yh3MMA,7429
365
- fake_bpy_module-20250422.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
366
- fake_bpy_module-20250422.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250422.dist-info/RECORD,,
364
+ fake_bpy_module-20250423.dist-info/METADATA,sha256=B-4_aVl3tNlylbSBFWfBHphk7vTQa_SMVRpC8mclnhE,7429
365
+ fake_bpy_module-20250423.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
366
+ fake_bpy_module-20250423.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250423.dist-info/RECORD,,