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

@@ -285,6 +285,36 @@ class VIEWLAYER_PT_layer_passes_lightgroups(
285
285
  :rtype: typing.Any
286
286
  """
287
287
 
288
+ class VIEWLAYER_PT_override(ViewLayerButtonsPanel, bpy.types.Panel):
289
+ COMPAT_ENGINES: typing.Any
290
+ bl_context: typing.Any
291
+ bl_label: typing.Any
292
+ bl_options: typing.Any
293
+ bl_region_type: typing.Any
294
+ bl_rna: typing.Any
295
+ bl_space_type: typing.Any
296
+ id_data: typing.Any
297
+
298
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
299
+ """
300
+
301
+ :return: The RNA type or default when not found.
302
+ :rtype: bpy.types.Struct
303
+ """
304
+
305
+ def bl_rna_get_subclass_py(self) -> typing.Any:
306
+ """
307
+
308
+ :return: The class or default when not found.
309
+ :rtype: typing.Any
310
+ """
311
+
312
+ def draw(self, context) -> None:
313
+ """
314
+
315
+ :param context:
316
+ """
317
+
288
318
  class VIEWLAYER_PT_workbench_layer_passes_data(ViewLayerButtonsPanel, bpy.types.Panel):
289
319
  COMPAT_ENGINES: typing.Any
290
320
  bl_context: typing.Any
@@ -2818,6 +2818,41 @@ class USERPREF_PT_theme_interface_icons(CenterAlignMixIn, ThemePanel, bpy.types.
2818
2818
  :param layout:
2819
2819
  """
2820
2820
 
2821
+ class USERPREF_PT_theme_interface_panel(CenterAlignMixIn, ThemePanel, bpy.types.Panel):
2822
+ """Base class for panels to center align contents with some horizontal margin.
2823
+ Deriving classes need to implement a draw_centered(context, layout) function.
2824
+ """
2825
+
2826
+ bl_context: typing.Any
2827
+ bl_label: typing.Any
2828
+ bl_options: typing.Any
2829
+ bl_parent_id: typing.Any
2830
+ bl_region_type: typing.Any
2831
+ bl_rna: typing.Any
2832
+ bl_space_type: typing.Any
2833
+ id_data: typing.Any
2834
+
2835
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
2836
+ """
2837
+
2838
+ :return: The RNA type or default when not found.
2839
+ :rtype: bpy.types.Struct
2840
+ """
2841
+
2842
+ def bl_rna_get_subclass_py(self) -> typing.Any:
2843
+ """
2844
+
2845
+ :return: The class or default when not found.
2846
+ :rtype: typing.Any
2847
+ """
2848
+
2849
+ def draw_centered(self, context, layout) -> None:
2850
+ """
2851
+
2852
+ :param context:
2853
+ :param layout:
2854
+ """
2855
+
2821
2856
  class USERPREF_PT_theme_interface_state(CenterAlignMixIn, ThemePanel, bpy.types.Panel):
2822
2857
  """Base class for panels to center align contents with some horizontal margin.
2823
2858
  Deriving classes need to implement a draw_centered(context, layout) function.
@@ -1985,7 +1985,6 @@ type MeshSelectModeUvItems = typing.Literal[
1985
1985
  "VERTEX", # Vertex.Vertex selection mode.
1986
1986
  "EDGE", # Edge.Edge selection mode.
1987
1987
  "FACE", # Face.Face selection mode.
1988
- "ISLAND", # Island.Island selection mode.
1989
1988
  ]
1990
1989
  type MetaelemTypeItems = typing.Literal[
1991
1990
  "BALL", # Ball.
bpy/types/__init__.pyi CHANGED
@@ -41003,9 +41003,6 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
41003
41003
  * UILayout.template_ID_preview
41004
41004
  * UILayout.template_ID_tabs
41005
41005
  * UILayout.template_any_ID
41006
- * UILayout.template_asset_view
41007
- * UILayout.template_asset_view
41008
- * UILayout.template_asset_view
41009
41006
  * UILayout.template_cache_file
41010
41007
  * UILayout.template_cache_file_layers
41011
41008
  * UILayout.template_cache_file_procedural
@@ -54530,50 +54527,6 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
54530
54527
  :columns: 2
54531
54528
 
54532
54529
 
54533
- --------------------
54534
-
54535
- * bpy_struct.id_data
54536
-
54537
- :columns: 2
54538
-
54539
-
54540
- --------------------
54541
-
54542
- * bpy_struct.as_pointer
54543
- * bpy_struct.driver_add
54544
- * bpy_struct.driver_remove
54545
- * bpy_struct.get
54546
- * bpy_struct.id_properties_clear
54547
- * bpy_struct.id_properties_ensure
54548
- * bpy_struct.id_properties_ui
54549
- * bpy_struct.is_property_hidden
54550
- * bpy_struct.is_property_overridable_library
54551
- * bpy_struct.is_property_readonly
54552
- * bpy_struct.is_property_set
54553
- * bpy_struct.items
54554
- * bpy_struct.keyframe_delete
54555
- * bpy_struct.keyframe_insert
54556
- * bpy_struct.keys
54557
- * bpy_struct.path_from_id
54558
- * bpy_struct.path_resolve
54559
- * bpy_struct.pop
54560
- * bpy_struct.property_overridable_library_set
54561
- * bpy_struct.property_unset
54562
- * bpy_struct.rna_ancestors
54563
- * bpy_struct.type_recast
54564
- * bpy_struct.values
54565
-
54566
- :columns: 2
54567
-
54568
-
54569
- --------------------
54570
-
54571
- * ThemeSpaceGeneric.panelcolors
54572
- * ThemeSpaceGradient.panelcolors
54573
-
54574
- :columns: 2
54575
-
54576
-
54577
54530
  --------------------
54578
54531
 
54579
54532
  * bpy_struct.id_data
@@ -60448,15 +60401,6 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
60448
60401
  :columns: 2
60449
60402
 
60450
60403
 
60451
- --------------------
60452
-
60453
- * bpy.context.active_file
60454
- * bpy.context.selected_files
60455
- * AssetHandle.file_data
60456
-
60457
- :columns: 2
60458
-
60459
-
60460
60404
  --------------------
60461
60405
 
60462
60406
  * bpy_struct.id_data
@@ -62180,45 +62124,6 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
62180
62124
  :columns: 2
62181
62125
 
62182
62126
 
62183
- --------------------
62184
-
62185
- * bpy_struct.id_data
62186
- * PropertyGroup.name
62187
-
62188
- :columns: 2
62189
-
62190
-
62191
- --------------------
62192
-
62193
- * bpy_struct.as_pointer
62194
- * bpy_struct.driver_add
62195
- * bpy_struct.driver_remove
62196
- * bpy_struct.get
62197
- * bpy_struct.id_properties_clear
62198
- * bpy_struct.id_properties_ensure
62199
- * bpy_struct.id_properties_ui
62200
- * bpy_struct.is_property_hidden
62201
- * bpy_struct.is_property_overridable_library
62202
- * bpy_struct.is_property_readonly
62203
- * bpy_struct.is_property_set
62204
- * bpy_struct.items
62205
- * bpy_struct.keyframe_delete
62206
- * bpy_struct.keyframe_insert
62207
- * bpy_struct.keys
62208
- * bpy_struct.path_from_id
62209
- * bpy_struct.path_resolve
62210
- * bpy_struct.pop
62211
- * bpy_struct.property_overridable_library_set
62212
- * bpy_struct.property_unset
62213
- * bpy_struct.rna_ancestors
62214
- * bpy_struct.type_recast
62215
- * bpy_struct.values
62216
- * PropertyGroup.bl_rna_get_subclass
62217
- * PropertyGroup.bl_rna_get_subclass_py
62218
-
62219
- :columns: 2
62220
-
62221
-
62222
62127
  --------------------
62223
62128
 
62224
62129
  * bpy_struct.id_data
@@ -65148,8 +65053,6 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
65148
65053
  * UILayout.operator
65149
65054
  * UILayout.operator_menu_enum
65150
65055
  * UILayout.operator_menu_hold
65151
- * UILayout.template_asset_view
65152
- * UILayout.template_asset_view
65153
65056
  * UILayout.template_popup_confirm
65154
65057
  * WindowManager.operator_properties_last
65155
65058
  * WorkSpaceTool.operator_properties
@@ -65196,6 +65099,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
65196
65099
 
65197
65100
  --------------------
65198
65101
 
65102
+ * bpy.context.asset
65199
65103
  * bpy.context.selected_assets
65200
65104
  * AssetShelf.asset_poll
65201
65105
  * AssetShelf.draw_context_menu
@@ -124978,37 +124882,6 @@ class AssetCatalogPath(bpy_struct):
124978
124882
  :rtype: typing.Any
124979
124883
  """
124980
124884
 
124981
- class AssetHandle(PropertyGroup, bpy_struct):
124982
- """Reference to some asset"""
124983
-
124984
- file_data: FileSelectEntry | None
124985
- """ TEMPORARY, DO NOT USE - File data used to refer to the asset
124986
-
124987
- :type: FileSelectEntry | None
124988
- """
124989
-
124990
- @classmethod
124991
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
124992
- """
124993
-
124994
- :param id: The RNA type identifier.
124995
- :type id: str | None
124996
- :param default:
124997
- :return: The RNA type or default when not found.
124998
- :rtype: Struct
124999
- """
125000
-
125001
- @classmethod
125002
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
125003
- """
125004
-
125005
- :param id: The RNA type identifier.
125006
- :type id: str | None
125007
- :param default:
125008
- :return: The class or default when not found.
125009
- :rtype: typing.Any
125010
- """
125011
-
125012
124885
  class AssetLibraryReference(bpy_struct):
125013
124886
  """Identifier to refer to the asset library"""
125014
124887
 
@@ -136396,6 +136269,12 @@ class CompositorNodeDilateErode(CompositorNode, NodeInternal, Node, bpy_struct):
136396
136269
  class CompositorNodeDisplace(CompositorNode, NodeInternal, Node, bpy_struct):
136397
136270
  """Displace pixel position using an offset vector"""
136398
136271
 
136272
+ interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
136273
+ """ Interpolation method
136274
+
136275
+ :type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
136276
+ """
136277
+
136399
136278
  @classmethod
136400
136279
  def is_registered_node_type(cls) -> bool:
136401
136280
  """True if a registered node type
@@ -168066,6 +167945,12 @@ class GeometryNodeTrimCurve(GeometryNode, NodeInternal, Node, bpy_struct):
168066
167945
  class GeometryNodeUVPackIslands(GeometryNode, NodeInternal, Node, bpy_struct):
168067
167946
  """Scale islands of a UV map and move them so they fill the UV space as much as possible"""
168068
167947
 
167948
+ shape_method: typing.Literal["AABB", "CONVEX", "CONCAVE"]
167949
+ """ Method used for packing UV islands
167950
+
167951
+ :type: typing.Literal['AABB','CONVEX','CONCAVE']
167952
+ """
167953
+
168069
167954
  @classmethod
168070
167955
  def is_registered_node_type(cls) -> bool:
168071
167956
  """True if a registered node type
@@ -234054,49 +233939,6 @@ class ThemeOutliner(bpy_struct):
234054
233939
  :rtype: typing.Any
234055
233940
  """
234056
233941
 
234057
- class ThemePanelColors(bpy_struct):
234058
- """Theme settings for panel colors"""
234059
-
234060
- back: bpy_prop_array[float]
234061
- """
234062
-
234063
- :type: bpy_prop_array[float]
234064
- """
234065
-
234066
- header: bpy_prop_array[float]
234067
- """
234068
-
234069
- :type: bpy_prop_array[float]
234070
- """
234071
-
234072
- sub_back: bpy_prop_array[float]
234073
- """
234074
-
234075
- :type: bpy_prop_array[float]
234076
- """
234077
-
234078
- @classmethod
234079
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
234080
- """
234081
-
234082
- :param id: The RNA type identifier.
234083
- :type id: str | None
234084
- :param default:
234085
- :return: The RNA type or default when not found.
234086
- :rtype: Struct
234087
- """
234088
-
234089
- @classmethod
234090
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
234091
- """
234092
-
234093
- :param id: The RNA type identifier.
234094
- :type id: str | None
234095
- :param default:
234096
- :return: The class or default when not found.
234097
- :rtype: typing.Any
234098
- """
234099
-
234100
233942
  class ThemePreferences(bpy_struct):
234101
233943
  """Theme settings for the Blender Preferences"""
234102
233944
 
@@ -234491,36 +234333,12 @@ class ThemeSpaceGeneric(bpy_struct):
234491
234333
  :type: bpy_prop_array[float]
234492
234334
  """
234493
234335
 
234494
- panelcolors: ThemePanelColors
234495
- """
234496
-
234497
- :type: ThemePanelColors
234498
- """
234499
-
234500
- tab_active: mathutils.Color
234501
- """
234502
-
234503
- :type: mathutils.Color
234504
- """
234505
-
234506
234336
  tab_back: bpy_prop_array[float]
234507
234337
  """
234508
234338
 
234509
234339
  :type: bpy_prop_array[float]
234510
234340
  """
234511
234341
 
234512
- tab_inactive: mathutils.Color
234513
- """
234514
-
234515
- :type: mathutils.Color
234516
- """
234517
-
234518
- tab_outline: bpy_prop_array[float]
234519
- """
234520
-
234521
- :type: bpy_prop_array[float]
234522
- """
234523
-
234524
234342
  text: mathutils.Color
234525
234343
  """
234526
234344
 
@@ -234622,36 +234440,12 @@ class ThemeSpaceGradient(bpy_struct):
234622
234440
  :type: bpy_prop_array[float]
234623
234441
  """
234624
234442
 
234625
- panelcolors: ThemePanelColors
234626
- """
234627
-
234628
- :type: ThemePanelColors
234629
- """
234630
-
234631
- tab_active: mathutils.Color
234632
- """
234633
-
234634
- :type: mathutils.Color
234635
- """
234636
-
234637
234443
  tab_back: bpy_prop_array[float]
234638
234444
  """
234639
234445
 
234640
234446
  :type: bpy_prop_array[float]
234641
234447
  """
234642
234448
 
234643
- tab_inactive: mathutils.Color
234644
- """
234645
-
234646
- :type: mathutils.Color
234647
- """
234648
-
234649
- tab_outline: bpy_prop_array[float]
234650
- """
234651
-
234652
- :type: bpy_prop_array[float]
234653
- """
234654
-
234655
234449
  text: mathutils.Color
234656
234450
  """
234657
234451
 
@@ -235174,12 +234968,30 @@ class ThemeUserInterface(bpy_struct):
235174
234968
  :type: int
235175
234969
  """
235176
234970
 
234971
+ panel_back: bpy_prop_array[float]
234972
+ """
234973
+
234974
+ :type: bpy_prop_array[float]
234975
+ """
234976
+
234977
+ panel_header: bpy_prop_array[float]
234978
+ """
234979
+
234980
+ :type: bpy_prop_array[float]
234981
+ """
234982
+
235177
234983
  panel_roundness: float
235178
234984
  """ Roundness of the corners of panels and sub-panels
235179
234985
 
235180
234986
  :type: float
235181
234987
  """
235182
234988
 
234989
+ panel_sub_back: bpy_prop_array[float]
234990
+ """
234991
+
234992
+ :type: bpy_prop_array[float]
234993
+ """
234994
+
235183
234995
  transparent_checker_primary: mathutils.Color
235184
234996
  """ Primary color of checkerboard pattern indicating transparent areas
235185
234997
 
@@ -236855,6 +236667,12 @@ class ToolSettings(bpy_struct):
236855
236667
  :type: bool
236856
236668
  """
236857
236669
 
236670
+ use_uv_select_island: bool
236671
+ """ Island selection
236672
+
236673
+ :type: bool
236674
+ """
236675
+
236858
236676
  use_uv_select_sync: bool
236859
236677
  """ Keep UV and edit mode mesh selection in sync
236860
236678
 
@@ -239378,61 +239196,6 @@ class UILayout(bpy_struct):
239378
239196
  :type translate: bool | None
239379
239197
  """
239380
239198
 
239381
- def template_asset_view(
239382
- self,
239383
- list_id: str,
239384
- asset_library_dataptr: typing.Any,
239385
- asset_library_propname: str,
239386
- assets_dataptr: typing.Any,
239387
- assets_propname: str,
239388
- active_dataptr: typing.Any,
239389
- active_propname: str,
239390
- *,
239391
- filter_id_types: set[str] | None = {},
239392
- display_options: set[typing.Literal["NO_NAMES", "NO_FILTER", "NO_LIBRARY"]]
239393
- | None = {},
239394
- activate_operator: str = "",
239395
- drag_operator: str = "",
239396
- ) -> tuple[OperatorProperties, OperatorProperties]:
239397
- """Item. A scrollable list of assets in a grid view
239398
-
239399
- :param list_id: Identifier of this asset view. Necessary to tell apart different asset views and to identify an asset view read from a .blend
239400
- :type list_id: str
239401
- :param asset_library_dataptr: Data from which to take the active asset library property
239402
- :type asset_library_dataptr: typing.Any
239403
- :param asset_library_propname: Identifier of the asset library property
239404
- :type asset_library_propname: str
239405
- :param assets_dataptr: Data from which to take the asset list property
239406
- :type assets_dataptr: typing.Any
239407
- :param assets_propname: Identifier of the asset list property
239408
- :type assets_propname: str
239409
- :param active_dataptr: Data from which to take the integer property, index of the active item
239410
- :type active_dataptr: typing.Any
239411
- :param active_propname: Identifier of the integer property in active_data, index of the active item
239412
- :type active_propname: str
239413
- :param filter_id_types: filter_id_types
239414
- :type filter_id_types: set[str] | None
239415
- :param display_options: Displaying options for the asset view
239416
-
239417
- NO_NAMES
239418
- Do not display the name of each asset underneath preview images.
239419
-
239420
- NO_FILTER
239421
- Do not display buttons for filtering the available assets.
239422
-
239423
- NO_LIBRARY
239424
- Do not display buttons to choose or refresh an asset library.
239425
- :type display_options: set[typing.Literal['NO_NAMES','NO_FILTER','NO_LIBRARY']] | None
239426
- :param activate_operator: Name of a custom operator to invoke when activating an item
239427
- :type activate_operator: str
239428
- :param drag_operator: Name of a custom operator to invoke when starting to drag an item. Never invoked together with the active_operator (if set), it's either the drag or the activate one
239429
- :type drag_operator: str
239430
- :return: activate_operator_properties, Operator properties to fill in for the custom activate operator passed to the template, `OperatorProperties`
239431
-
239432
- drag_operator_properties, Operator properties to fill in for the custom drag operator passed to the template, `OperatorProperties`
239433
- :rtype: tuple[OperatorProperties, OperatorProperties]
239434
- """
239435
-
239436
239199
  def template_light_linking_collection(
239437
239200
  self, context_layout: typing_extensions.Self, data: typing.Any, property: str
239438
239201
  ) -> None:
@@ -249826,6 +249589,8 @@ USERPREF_PT_theme_interface_gizmos: bl_ui.space_userpref.USERPREF_PT_theme_inter
249826
249589
 
249827
249590
  USERPREF_PT_theme_interface_icons: bl_ui.space_userpref.USERPREF_PT_theme_interface_icons
249828
249591
 
249592
+ USERPREF_PT_theme_interface_panel: bl_ui.space_userpref.USERPREF_PT_theme_interface_panel
249593
+
249829
249594
  USERPREF_PT_theme_interface_state: bl_ui.space_userpref.USERPREF_PT_theme_interface_state
249830
249595
 
249831
249596
  USERPREF_PT_theme_interface_styles: bl_ui.space_userpref.USERPREF_PT_theme_interface_styles
@@ -250646,6 +250411,8 @@ VIEWLAYER_PT_layer_passes_cryptomatte: bl_ui.properties_view_layer.VIEWLAYER_PT_
250646
250411
 
250647
250412
  VIEWLAYER_PT_layer_passes_lightgroups: bl_ui.properties_view_layer.VIEWLAYER_PT_layer_passes_lightgroups
250648
250413
 
250414
+ VIEWLAYER_PT_override: bl_ui.properties_view_layer.VIEWLAYER_PT_override
250415
+
250649
250416
  VIEWLAYER_PT_workbench_layer_passes_data: bl_ui.properties_view_layer.VIEWLAYER_PT_workbench_layer_passes_data
250650
250417
 
250651
250418
  VIEWLAYER_UL_aov: bl_ui.properties_view_layer.VIEWLAYER_UL_aov
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250612
3
+ Version: 20250613
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
@@ -150,7 +150,7 @@ bl_ui/properties_physics_softbody/__init__.pyi,sha256=an4mH50E9w52Y-dGoa61eEFdjq
150
150
  bl_ui/properties_render/__init__.pyi,sha256=rx2g0zUIwAS-yd4cxEtvtsrhQ9eT5q_0Jz-PcJTiBNs,36114
151
151
  bl_ui/properties_scene/__init__.pyi,sha256=Y4gg22or8aW5lgSwDb55eITNTyW4Rbw2IW97Bj9AiZM,12790
152
152
  bl_ui/properties_texture/__init__.pyi,sha256=11Vka3QEv1J0-b2iVtY4qR4bN3Uh6_bRrZzAiBPmcOI,21347
153
- bl_ui/properties_view_layer/__init__.pyi,sha256=Eg2TKLQbdr2bgXX5vY4mRGAXBApOxtNAyUsImEMY-mo,9366
153
+ bl_ui/properties_view_layer/__init__.pyi,sha256=9OJV1IZdAGzQV6f5wBDxmqIpxFPfxJhpzrcHij8Rma4,10071
154
154
  bl_ui/properties_workspace/__init__.pyi,sha256=bR6ctayOId2fcQkyXASYPN_o9I6z6QDffOFkuEDrWTA,3530
155
155
  bl_ui/properties_world/__init__.pyi,sha256=A4jwr9ae3qEgSDM1d7t5149VslXs671_xBTzoa59n64,9316
156
156
  bl_ui/space_clip/__init__.pyi,sha256=_zYgFWqqzBUblDLfw_LWH4mvbsduSyeVIiEQRwZGEkM,46934
@@ -172,7 +172,7 @@ bl_ui/space_time/__init__.pyi,sha256=iRBKmFMXO9UfsL7MpulaQgSzeWlN_jRXE1g-i3ryjrA
172
172
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=UfZHyyto9eWn3sKyFKwJ2saPEzzO_xwb_zidelgz0nc,3434
173
173
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=nzudS0Iwt12ZTNaM-xtK32_MKx2HYfEPdz4lBNhdhQk,10261
174
174
  bl_ui/space_topbar/__init__.pyi,sha256=aryAsIhT2BCJXXIN6M-Y5HopZFTq9C7C9X7p5HRoh0M,15599
175
- bl_ui/space_userpref/__init__.pyi,sha256=QI1g6ZGzU2xlz4l-yIX2UgIlxRTeYvCkOWNXXZQhOII,80665
175
+ bl_ui/space_userpref/__init__.pyi,sha256=SnzRqqazb35wBUWSs8D2dQhCI-FX_NckbfPJuxpN-Wg,81601
176
176
  bl_ui/space_view3d/__init__.pyi,sha256=vrLstsa_v78E-hy2y5EetEZfsa_TqVgMXE-ao5KOUvE,159332
177
177
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=FRuF4j7f-Vg_QV_qHKCg169Tpxucy7Akx_lzDgZNiAc,78338
178
178
  bl_ui/utils/__init__.pyi,sha256=ppvhh_gnI0HP7Z6Y7Mpn9No5eGvsnSqXmNlzWdXop0M,810
@@ -278,8 +278,8 @@ bpy/ops/world/__init__.pyi,sha256=K6POVPW0tvcb38MyPUBgy_ZWNZCZ5208Cb_1YNcqU5k,64
278
278
  bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
279
279
  bpy/props/__init__.pyi,sha256=-nYTsIHy-F58ADNh2IDPlVA0C0G7N4k7F4xWz6ap7wM,35841
280
280
  bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
281
- bpy/stub_internal/rna_enums/__init__.pyi,sha256=BUTDaIidK_e78x0jfwQcYTgFD8KfGghgBseKmw6EqNk,141460
282
- bpy/types/__init__.pyi,sha256=tzY2YiIMwPZ03qrPkqU3oqPV-W0yWvH3kl-I1u1wrW4,5815404
281
+ bpy/stub_internal/rna_enums/__init__.pyi,sha256=aL-h4hNstMrYklATc7i8t55R5WHftmpIgjaBLlVzebY,141413
282
+ bpy/types/__init__.pyi,sha256=n-J1_z9_3TZfop90P3m8idxpjX14sb4HmuCwHdOoa5w,5808920
283
283
  bpy/utils/__init__.pyi,sha256=eLZQI2EHAXaZQlYunovDoRa8QtR4CT8yPgygZhBYajk,15535
284
284
  bpy/utils/previews/__init__.pyi,sha256=6tju9gKfoTYwJjnSZ54lys2MYRaKPnihHe5Vs6agoKA,2366
285
285
  bpy/utils/units/__init__.pyi,sha256=zULS_4qRrtzpHLtSU-jfO2761J4WeYBZyK-BTlL4KG0,2671
@@ -325,7 +325,7 @@ gpu/select/__init__.pyi,sha256=u7L8-mg3F6PD60rvGcJ1CUehZTDaPSGtmXzs1LNKK7g,242
325
325
  gpu/shader/__init__.pyi,sha256=Aoei9iUPACMDqBSqKG9cPAmZj_U3cwipQP08mxKCEKk,2347
326
326
  gpu/state/__init__.pyi,sha256=STSK6tjpWGd_U8vWOLN1s9itbUQxh4gcPwrPIH2RxfY,4489
327
327
  gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
328
- gpu/types/__init__.pyi,sha256=yKJdUVNyzAlAX0nBDeWzv03kCgx0urzQGDnPtmCIbyw,29709
328
+ gpu/types/__init__.pyi,sha256=wl_6uJLmvxJsslpAd4zb9sn1lZitzwmjuf_-XnD6F4o,29774
329
329
  gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
330
330
  gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
331
  gpu_extras/batch/__init__.pyi,sha256=0z8rIEm4SFuC-rUGyoOMU0L6i_TsaW5nJN9cGR6u40Y,1306
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=E7Xr1GyLCWDiDnB_VSldrUVM6AzWKDvGGoWj3Hj7SZ8,1404
361
361
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
362
  rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
363
363
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
- fake_bpy_module-20250612.dist-info/METADATA,sha256=IeLmGfbph8AtibOPgpPx2Z_DgP0f54mgUr9DNOsxF3E,7429
365
- fake_bpy_module-20250612.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
- fake_bpy_module-20250612.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250612.dist-info/RECORD,,
364
+ fake_bpy_module-20250613.dist-info/METADATA,sha256=onzMxpwUPt6C94drho1C73-hamySTR9DUB3YqhCSYMY,7429
365
+ fake_bpy_module-20250613.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
+ fake_bpy_module-20250613.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250613.dist-info/RECORD,,
gpu/types/__init__.pyi CHANGED
@@ -246,7 +246,7 @@ class GPUOffScreen:
246
246
  """
247
247
 
248
248
  class GPUShader:
249
- """GPUShader combines multiple GLSL shaders into a program used for drawing.
249
+ """Deprecated, use gpu.shader.create_from_info(shader_info) instead.GPUShader combines multiple GLSL shaders into a program used for drawing.
250
250
  It must contain at least a vertex and fragment shaders.The GLSL #version directive is automatically included at the top of shaders,
251
251
  and set to 330. Some preprocessor directives are automatically added according to
252
252
  the Operating System or availability: GPU_ATI, GPU_NVIDIA and GPU_INTEL.The following extensions are enabled by default if supported by the GPU: