fake-bpy-module 20250421__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
@@ -129672,7 +129672,7 @@ class CompositorNodeChannelMatte(CompositorNode, NodeInternal, Node, bpy_struct)
129672
129672
  """
129673
129673
 
129674
129674
  limit_max: float
129675
- """ Values higher than this setting are 100% opaque
129675
+ """ Values higher than this setting are 100% opaque. (Deprecated: Use Maximum input instead.)
129676
129676
 
129677
129677
  :type: float
129678
129678
  """
@@ -129684,7 +129684,7 @@ class CompositorNodeChannelMatte(CompositorNode, NodeInternal, Node, bpy_struct)
129684
129684
  """
129685
129685
 
129686
129686
  limit_min: float
129687
- """ Values lower than this setting are 100% keyed
129687
+ """ Values lower than this setting are 100% keyed. (Deprecated: Use Minimum input instead.)
129688
129688
 
129689
129689
  :type: float
129690
129690
  """
@@ -129750,31 +129750,31 @@ class CompositorNodeChromaMatte(CompositorNode, NodeInternal, Node, bpy_struct):
129750
129750
  """Create matte based on chroma values"""
129751
129751
 
129752
129752
  gain: float
129753
- """ Alpha falloff
129753
+ """ Alpha falloff. (Deprecated: Use Minimum input instead.)
129754
129754
 
129755
129755
  :type: float
129756
129756
  """
129757
129757
 
129758
129758
  lift: float
129759
- """ Alpha lift
129759
+ """ Alpha lift. (Deprecated: Unused.)
129760
129760
 
129761
129761
  :type: float
129762
129762
  """
129763
129763
 
129764
129764
  shadow_adjust: float
129765
- """ Adjusts the brightness of any shadows captured
129765
+ """ Adjusts the brightness of any shadows captured. (Deprecated: Unused.)
129766
129766
 
129767
129767
  :type: float
129768
129768
  """
129769
129769
 
129770
129770
  threshold: float
129771
- """ Tolerance below which colors will be considered as exact matches
129771
+ """ Tolerance below which colors will be considered as exact matches. (Deprecated: Use Minimum input instead.)
129772
129772
 
129773
129773
  :type: float
129774
129774
  """
129775
129775
 
129776
129776
  tolerance: float
129777
- """ Tolerance for a color to be considered a keying color
129777
+ """ Tolerance for a color to be considered a keying color. (Deprecated: Use Maximum input instead.)
129778
129778
 
129779
129779
  :type: float
129780
129780
  """
@@ -130178,19 +130178,19 @@ class CompositorNodeColorMatte(CompositorNode, NodeInternal, Node, bpy_struct):
130178
130178
  """Create matte using a given color, for green or blue screen footage"""
130179
130179
 
130180
130180
  color_hue: float
130181
- """ Hue tolerance for colors to be considered a keying color
130181
+ """ Hue tolerance for colors to be considered a keying color. (Deprecated: Use Hue input instead.)
130182
130182
 
130183
130183
  :type: float
130184
130184
  """
130185
130185
 
130186
130186
  color_saturation: float
130187
- """ Saturation tolerance for the color
130187
+ """ Saturation tolerance for the color. (Deprecated: Use Saturation input instead.)
130188
130188
 
130189
130189
  :type: float
130190
130190
  """
130191
130191
 
130192
130192
  color_value: float
130193
- """ Value tolerance for the color
130193
+ """ Value tolerance for the color. (Deprecated: Use Value input instead.)
130194
130194
 
130195
130195
  :type: float
130196
130196
  """
@@ -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
  """
@@ -131724,13 +131724,13 @@ class CompositorNodeDiffMatte(CompositorNode, NodeInternal, Node, bpy_struct):
131724
131724
  """Produce a matte that isolates foreground content by comparing it with a reference background image"""
131725
131725
 
131726
131726
  falloff: float
131727
- """ Color distances below this additional threshold are partially keyed
131727
+ """ Color distances below this additional threshold are partially keyed. (Deprecated: Use Falloff input instead.)
131728
131728
 
131729
131729
  :type: float
131730
131730
  """
131731
131731
 
131732
131732
  tolerance: float
131733
- """ Color distances below this threshold are keyed
131733
+ """ Color distances below this threshold are keyed. (Deprecated: Use Tolerance input instead.)
131734
131734
 
131735
131735
  :type: float
131736
131736
  """
@@ -131928,13 +131928,13 @@ class CompositorNodeDistanceMatte(CompositorNode, NodeInternal, Node, bpy_struct
131928
131928
  """
131929
131929
 
131930
131930
  falloff: float
131931
- """ Color distances below this additional threshold are partially keyed
131931
+ """ Color distances below this additional threshold are partially keyed. (Deprecated: Use Falloff input instead.)
131932
131932
 
131933
131933
  :type: float
131934
131934
  """
131935
131935
 
131936
131936
  tolerance: float
131937
- """ Color distances below this threshold are keyed
131937
+ """ Color distances below this threshold are keyed. (Deprecated: Use Tolerance input instead.)
131938
131938
 
131939
131939
  :type: float
131940
131940
  """
@@ -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: 20250421
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=kcsu52lS0WpL6f3tkSAAtis1r1DuLhSn1F1JELy8iTQ,5591251
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
@@ -328,13 +328,13 @@ 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
335
335
  idprop/__init__.pyi,sha256=3M6jnE-1j1mPIJJi7c49kdEpbRgus6la85Zh_UIyXYI,118
336
336
  idprop/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
337
- idprop/types/__init__.pyi,sha256=gjEXMyXEY4OFO-rPJXgyq46OObL4Ysin0ST6FikMXfs,1794
337
+ idprop/types/__init__.pyi,sha256=Yk9N7r2hD_BvwSc1bddvkcqXTfI08s7ZYQIR5xeBXQo,1913
338
338
  imbuf/__init__.pyi,sha256=opvEeSrYlll59Dai__LVOki4IHdXaKScdI5wIH_Hgzw,1377
339
339
  imbuf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
340
  imbuf/types/__init__.pyi,sha256=35nIU4BwLDPPPzuktO-lIhgqh7M3WNk1wSEcmXMk8rM,1402
@@ -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-20250421.dist-info/METADATA,sha256=EcKAx7-LyIGY3w68QFfAckJz4UIW_qqBQekFqRAiIY4,7429
365
- fake_bpy_module-20250421.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
366
- fake_bpy_module-20250421.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250421.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,,
@@ -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
  """
idprop/types/__init__.pyi CHANGED
@@ -55,6 +55,6 @@ class IDPropertyGroup:
55
55
  class IDPropertyGroupIterItems: ...
56
56
  class IDPropertyGroupIterKeys: ...
57
57
  class IDPropertyGroupIterValues: ...
58
- class IDPropertyGroupViewItems: ...
59
- class IDPropertyGroupViewKeys: ...
60
- class IDPropertyGroupViewValues: ...
58
+ class IDPropertyGroupViewItems(collections.abc.Iterable[tuple[str, typing.Any]]): ...
59
+ class IDPropertyGroupViewKeys(collections.abc.Iterable[str]): ...
60
+ class IDPropertyGroupViewValues(collections.abc.Iterable[typing.Any]): ...