fake-bpy-module 20250610__py3-none-any.whl → 20250612__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.
bpy/ops/node/__init__.pyi CHANGED
@@ -1499,6 +1499,21 @@ def mute_toggle(
1499
1499
  :type undo: bool | None
1500
1500
  """
1501
1501
 
1502
+ def new_compositing_node_group(
1503
+ execution_context: int | str | None = None,
1504
+ undo: bool | None = None,
1505
+ /,
1506
+ *,
1507
+ name: str = "Compositing Node Tree",
1508
+ ) -> None:
1509
+ """Create a new compositing node tree and initialize it with default nodes
1510
+
1511
+ :type execution_context: int | str | None
1512
+ :type undo: bool | None
1513
+ :param name: Name
1514
+ :type name: str
1515
+ """
1516
+
1502
1517
  def new_geometry_node_group_assign(
1503
1518
  execution_context: int | str | None = None, undo: bool | None = None
1504
1519
  ) -> None:
@@ -4289,6 +4289,7 @@ def subdivision_set(
4289
4289
  *,
4290
4290
  level: int | None = 1,
4291
4291
  relative: bool | None = False,
4292
+ ensure_modifier: bool | None = True,
4292
4293
  ) -> None:
4293
4294
  """Sets a Subdivision Surface level (1 to 5)
4294
4295
 
@@ -4298,6 +4299,8 @@ def subdivision_set(
4298
4299
  :type level: int | None
4299
4300
  :param relative: Relative, Apply the subdivision surface level as an offset relative to the current level
4300
4301
  :type relative: bool | None
4302
+ :param ensure_modifier: Ensure Modifier, Create the corresponding modifier if it does not exist
4303
+ :type ensure_modifier: bool | None
4301
4304
  """
4302
4305
 
4303
4306
  def surfacedeform_bind(
@@ -344,6 +344,7 @@ def effect_strip_add(
344
344
  "COLORMIX",
345
345
  ]
346
346
  | None = "CROSS",
347
+ move_strips: bool | None = True,
347
348
  frame_start: int | None = 0,
348
349
  frame_end: int | None = 0,
349
350
  channel: int | None = 1,
@@ -410,6 +411,8 @@ def effect_strip_add(
410
411
  COLORMIX
411
412
  Color Mix -- Combine two strips using blend modes.
412
413
  :type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
414
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
415
+ :type move_strips: bool | None
413
416
  :param frame_start: Start Frame, Start frame of the sequence strip
414
417
  :type frame_start: int | None
415
418
  :param frame_end: End Frame, End frame for the color strip
@@ -663,6 +666,7 @@ def image_strip_add(
663
666
  "ASSET_CATALOG",
664
667
  ]
665
668
  | None = "",
669
+ move_strips: bool | None = True,
666
670
  frame_start: int | None = 0,
667
671
  frame_end: int | None = 0,
668
672
  channel: int | None = 1,
@@ -758,6 +762,8 @@ def image_strip_add(
758
762
  ASSET_CATALOG
759
763
  Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
760
764
  :type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
765
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
766
+ :type move_strips: bool | None
761
767
  :param frame_start: Start Frame, Start frame of the sequence strip
762
768
  :type frame_start: int | None
763
769
  :param frame_end: End Frame, End frame for the color strip
@@ -819,6 +825,7 @@ def mask_strip_add(
819
825
  undo: bool | None = None,
820
826
  /,
821
827
  *,
828
+ move_strips: bool | None = True,
822
829
  frame_start: int | None = 0,
823
830
  channel: int | None = 1,
824
831
  replace_sel: bool | None = True,
@@ -831,6 +838,8 @@ def mask_strip_add(
831
838
 
832
839
  :type execution_context: int | str | None
833
840
  :type undo: bool | None
841
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
842
+ :type move_strips: bool | None
834
843
  :param frame_start: Start Frame, Start frame of the sequence strip
835
844
  :type frame_start: int | None
836
845
  :param channel: Channel, Channel to place this strip into
@@ -917,6 +926,7 @@ def movie_strip_add(
917
926
  "ASSET_CATALOG",
918
927
  ]
919
928
  | None = "",
929
+ move_strips: bool | None = True,
920
930
  frame_start: int | None = 0,
921
931
  channel: int | None = 1,
922
932
  replace_sel: bool | None = True,
@@ -1015,6 +1025,8 @@ def movie_strip_add(
1015
1025
  ASSET_CATALOG
1016
1026
  Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
1017
1027
  :type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
1028
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1029
+ :type move_strips: bool | None
1018
1030
  :param frame_start: Start Frame, Start frame of the sequence strip
1019
1031
  :type frame_start: int | None
1020
1032
  :param channel: Channel, Channel to place this strip into
@@ -1056,6 +1068,7 @@ def movieclip_strip_add(
1056
1068
  undo: bool | None = None,
1057
1069
  /,
1058
1070
  *,
1071
+ move_strips: bool | None = True,
1059
1072
  frame_start: int | None = 0,
1060
1073
  channel: int | None = 1,
1061
1074
  replace_sel: bool | None = True,
@@ -1068,6 +1081,8 @@ def movieclip_strip_add(
1068
1081
 
1069
1082
  :type execution_context: int | str | None
1070
1083
  :type undo: bool | None
1084
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1085
+ :type move_strips: bool | None
1071
1086
  :param frame_start: Start Frame, Start frame of the sequence strip
1072
1087
  :type frame_start: int | None
1073
1088
  :param channel: Channel, Channel to place this strip into
@@ -1356,6 +1371,7 @@ def scene_strip_add(
1356
1371
  undo: bool | None = None,
1357
1372
  /,
1358
1373
  *,
1374
+ move_strips: bool | None = True,
1359
1375
  frame_start: int | None = 0,
1360
1376
  channel: int | None = 1,
1361
1377
  replace_sel: bool | None = True,
@@ -1368,6 +1384,8 @@ def scene_strip_add(
1368
1384
 
1369
1385
  :type execution_context: int | str | None
1370
1386
  :type undo: bool | None
1387
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1388
+ :type move_strips: bool | None
1371
1389
  :param frame_start: Start Frame, Start frame of the sequence strip
1372
1390
  :type frame_start: int | None
1373
1391
  :param channel: Channel, Channel to place this strip into
@@ -1389,6 +1407,7 @@ def scene_strip_add_new(
1389
1407
  undo: bool | None = None,
1390
1408
  /,
1391
1409
  *,
1410
+ move_strips: bool | None = True,
1392
1411
  frame_start: int | None = 0,
1393
1412
  channel: int | None = 1,
1394
1413
  replace_sel: bool | None = True,
@@ -1401,6 +1420,8 @@ def scene_strip_add_new(
1401
1420
 
1402
1421
  :type execution_context: int | str | None
1403
1422
  :type undo: bool | None
1423
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1424
+ :type move_strips: bool | None
1404
1425
  :param frame_start: Start Frame, Start frame of the sequence strip
1405
1426
  :type frame_start: int | None
1406
1427
  :param channel: Channel, Channel to place this strip into
@@ -1815,6 +1836,7 @@ def sound_strip_add(
1815
1836
  "ASSET_CATALOG",
1816
1837
  ]
1817
1838
  | None = "",
1839
+ move_strips: bool | None = True,
1818
1840
  frame_start: int | None = 0,
1819
1841
  channel: int | None = 1,
1820
1842
  replace_sel: bool | None = True,
@@ -1906,6 +1928,8 @@ def sound_strip_add(
1906
1928
  ASSET_CATALOG
1907
1929
  Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
1908
1930
  :type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
1931
+ :param move_strips: Move Strips, Move strips after adding them to the timeline
1932
+ :type move_strips: bool | None
1909
1933
  :param frame_start: Start Frame, Start frame of the sequence strip
1910
1934
  :type frame_start: int | None
1911
1935
  :param channel: Channel, Channel to place this strip into
@@ -627,6 +627,9 @@ def seq_slide(
627
627
  value: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
628
628
  use_restore_handle_selection: bool | None = False,
629
629
  snap: bool | None = False,
630
+ texture_space: bool | None = False,
631
+ remove_on_cancel: bool | None = False,
632
+ use_duplicated_keyframes: bool | None = False,
630
633
  view2d_edge_pan: bool | None = False,
631
634
  release_confirm: bool | None = False,
632
635
  use_accurate: bool | None = False,
@@ -641,6 +644,12 @@ def seq_slide(
641
644
  :type use_restore_handle_selection: bool | None
642
645
  :param snap: Use Snapping Options
643
646
  :type snap: bool | None
647
+ :param texture_space: Edit Texture Space, Edit object data texture space
648
+ :type texture_space: bool | None
649
+ :param remove_on_cancel: Remove on Cancel, Remove elements on cancel
650
+ :type remove_on_cancel: bool | None
651
+ :param use_duplicated_keyframes: Duplicated Keyframes, Transform duplicated keyframes
652
+ :type use_duplicated_keyframes: bool | None
644
653
  :param view2d_edge_pan: Edge Pan, Enable edge panning in 2D view
645
654
  :type view2d_edge_pan: bool | None
646
655
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
@@ -2197,6 +2197,13 @@ type NodeSocketInOutItems = typing.Literal[
2197
2197
  "IN", # Input.
2198
2198
  "OUT", # Output.
2199
2199
  ]
2200
+ type NodeSocketStructureTypeItems = typing.Literal[
2201
+ "AUTO", # Auto.Automatically detect a good structure type based on how the socket is used.
2202
+ "SINGLE", # Single.Socket expects a single value.
2203
+ "DYNAMIC", # Dynamic.Socket can work with different kinds of structures.
2204
+ "FIELD", # Field.Socket expects a field.
2205
+ "GRID", # Grid.Socket expects a grid.
2206
+ ]
2200
2207
  type NodeSocketTypeItems = typing.Literal[
2201
2208
  "CUSTOM", # Custom.
2202
2209
  "VALUE", # Value.
bpy/types/__init__.pyi CHANGED
@@ -50267,6 +50267,7 @@ of the scene and only show nodes of the renderer they are designed for.
50267
50267
  * NodeTree.get_from_context
50268
50268
  * NodeTreePath.node_tree
50269
50269
  * NodesModifier.node_group
50270
+ * Scene.compositing_node_group
50270
50271
  * Scene.node_tree
50271
50272
  * ShaderNodeCustomGroup.node_tree
50272
50273
  * ShaderNodeGroup.node_tree
@@ -139389,10 +139390,10 @@ class CompositorNodeRelativeToPixel(CompositorNode, NodeInternal, Node, bpy_stru
139389
139390
  class CompositorNodeRotate(CompositorNode, NodeInternal, Node, bpy_struct):
139390
139391
  """Rotate image by specified angle"""
139391
139392
 
139392
- filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
139393
+ filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
139393
139394
  """ Method to use to filter rotation
139394
139395
 
139395
- :type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
139396
+ :type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
139396
139397
  """
139397
139398
 
139398
139399
  @classmethod
@@ -139455,10 +139456,10 @@ class CompositorNodeScale(CompositorNode, NodeInternal, Node, bpy_struct):
139455
139456
  :type: typing.Literal['STRETCH','FIT','CROP']
139456
139457
  """
139457
139458
 
139458
- interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
139459
+ interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
139459
139460
  """ Interpolation method
139460
139461
 
139461
- :type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
139462
+ :type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
139462
139463
  """
139463
139464
 
139464
139465
  offset_x: float
@@ -140061,10 +140062,10 @@ class CompositorNodeStabilize(CompositorNode, NodeInternal, Node, bpy_struct):
140061
140062
  :type: MovieClip | None
140062
140063
  """
140063
140064
 
140064
- filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
140065
+ filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
140065
140066
  """ Method to use to filter stabilization
140066
140067
 
140067
- :type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
140068
+ :type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
140068
140069
  """
140069
140070
 
140070
140071
  invert: bool
@@ -140633,10 +140634,10 @@ class CompositorNodeTrackPos(CompositorNode, NodeInternal, Node, bpy_struct):
140633
140634
  class CompositorNodeTransform(CompositorNode, NodeInternal, Node, bpy_struct):
140634
140635
  """Scale, translate and rotate an image"""
140635
140636
 
140636
- filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
140637
+ filter_type: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
140637
140638
  """ Method to use to filter transform
140638
140639
 
140639
- :type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
140640
+ :type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
140640
140641
  """
140641
140642
 
140642
140643
  @classmethod
@@ -140693,10 +140694,10 @@ class CompositorNodeTransform(CompositorNode, NodeInternal, Node, bpy_struct):
140693
140694
  class CompositorNodeTranslate(CompositorNode, NodeInternal, Node, bpy_struct):
140694
140695
  """Offset an image"""
140695
140696
 
140696
- interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC"]
140697
+ interpolation: typing.Literal["NEAREST", "BILINEAR", "BICUBIC", "ANISOTROPIC"]
140697
140698
  """
140698
140699
 
140699
- :type: typing.Literal['NEAREST','BILINEAR','BICUBIC']
140700
+ :type: typing.Literal['NEAREST','BILINEAR','BICUBIC','ANISOTROPIC']
140700
140701
  """
140701
140702
 
140702
140703
  use_relative: bool
@@ -190560,6 +190561,12 @@ class NodeGeometryClosureInputItem(bpy_struct):
190560
190561
  :type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
190561
190562
  """
190562
190563
 
190564
+ structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
190565
+ """ What kind of higher order types are expected to flow through this socket
190566
+
190567
+ :type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
190568
+ """
190569
+
190563
190570
  @classmethod
190564
190571
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
190565
190572
  """
@@ -190683,6 +190690,12 @@ class NodeGeometryEvaluateClosureInputItem(bpy_struct):
190683
190690
  :type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
190684
190691
  """
190685
190692
 
190693
+ structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
190694
+ """ What kind of higher order types are expected to flow through this socket
190695
+
190696
+ :type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
190697
+ """
190698
+
190686
190699
  @classmethod
190687
190700
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
190688
190701
  """
@@ -190724,6 +190737,12 @@ class NodeGeometryEvaluateClosureOutputItem(bpy_struct):
190724
190737
  :type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
190725
190738
  """
190726
190739
 
190740
+ structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
190741
+ """ What kind of higher order types are expected to flow through this socket
190742
+
190743
+ :type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
190744
+ """
190745
+
190727
190746
  @classmethod
190728
190747
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
190729
190748
  """
@@ -194262,10 +194281,10 @@ Deprecated. Will be remove in 5.0.
194262
194281
  :type: str
194263
194282
  """
194264
194283
 
194265
- structure_type: typing.Literal["AUTO", "SINGLE", "DYNAMIC", "FIELD", "GRID"]
194284
+ structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
194266
194285
  """ What kind of higher order types are expected to flow through this socket
194267
194286
 
194268
- :type: typing.Literal['AUTO','SINGLE','DYNAMIC','FIELD','GRID']
194287
+ :type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
194269
194288
  """
194270
194289
 
194271
194290
  def draw(self, context: Context, layout: UILayout) -> None:
@@ -206191,12 +206210,6 @@ class PreferencesEdit(bpy_struct):
206191
206210
  :type: bool
206192
206211
  """
206193
206212
 
206194
- use_sequencer_simplified_tweaking: bool
206195
- """ Allows dragging handles without selecting them first
206196
-
206197
- :type: bool
206198
- """
206199
-
206200
206213
  use_text_edit_auto_close: bool
206201
206214
  """ Automatically close relevant character pairs when typing in the text editor
206202
206215
 
@@ -211324,6 +211337,12 @@ class Scene(ID, bpy_struct):
211324
211337
  :type: Collection
211325
211338
  """
211326
211339
 
211340
+ compositing_node_group: NodeTree | None
211341
+ """ Compositing node tree
211342
+
211343
+ :type: NodeTree | None
211344
+ """
211345
+
211327
211346
  cursor: View3DCursor
211328
211347
  """
211329
211348
 
@@ -235865,6 +235884,12 @@ class ThemeWidgetColors(bpy_struct):
235865
235884
  :type: bpy_prop_array[float]
235866
235885
  """
235867
235886
 
235887
+ outline_sel: bpy_prop_array[float]
235888
+ """
235889
+
235890
+ :type: bpy_prop_array[float]
235891
+ """
235892
+
235868
235893
  roundness: float
235869
235894
  """ Amount of edge rounding
235870
235895
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250610
3
+ Version: 20250612
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
@@ -240,8 +240,8 @@ bpy/ops/material/__init__.pyi,sha256=HOxwV36a5Fvquv6j8_sV0rM87QzuhHZxNEv-dkQN_0M
240
240
  bpy/ops/mball/__init__.pyi,sha256=2Uy00doymjZPXpCpJV7l-eAbamoUZsnbNPzy2XjxM4U,4246
241
241
  bpy/ops/mesh/__init__.pyi,sha256=0H37YuG2NVIgQOyBIO_Wcx5bePv_VIyUbvzk4ccM1dg,131865
242
242
  bpy/ops/nla/__init__.pyi,sha256=7liq6OahpTd2-vdklwqzbUbBIwQRjwX0zn-cjRkdAFA,18580
243
- bpy/ops/node/__init__.pyi,sha256=PaKAbblEYkeg_RITHagzUiUDGfHZQLWDj2VHubxeruo,64994
244
- bpy/ops/object/__init__.pyi,sha256=VeuzAMLQEqwwHy1BdH_wq1YtiIwT6w1R-OqIRM6ddAo,171352
243
+ bpy/ops/node/__init__.pyi,sha256=ANFRJ9pKLjbXvSxEb8mGlJ42Z4tivF-fNpn5SnbQ-_Y,65375
244
+ bpy/ops/object/__init__.pyi,sha256=gNWV7f4jVIa3fj--WkkLxSU5e0epVXiHklwcE97LvSw,171532
245
245
  bpy/ops/outliner/__init__.pyi,sha256=k_VPujYUJ-6Xf8tfuBWNyaC71c1XC3JdA6s9djNbtVQ,28757
246
246
  bpy/ops/paint/__init__.pyi,sha256=xUeYNnteMD0ZjXMW5Dk8zvdEkE4p6paimQNcJV9MHA8,38186
247
247
  bpy/ops/paintcurve/__init__.pyi,sha256=jBRQid5k2YuDmTvgeVK9hs1QSN32pxD6OfewAaHp7Rs,3083
@@ -259,14 +259,14 @@ bpy/ops/screen/__init__.pyi,sha256=Mk6-GLeoykrHHmXC65KTF3dS7E2bZ_Ifl8ipC9xfjOo,2
259
259
  bpy/ops/script/__init__.pyi,sha256=YWxHV2LJI-Ee5Ni85ajm6Qkgh5kOmmx2EEcbYjCuDF0,1035
260
260
  bpy/ops/sculpt/__init__.pyi,sha256=KcNf3o1J8CLrJL9oo0auhA7yaT8kqrv79dB9RJWCiLk,51430
261
261
  bpy/ops/sculpt_curves/__init__.pyi,sha256=yVG5m4mjTQe-ucwE_1L0XO9Og-0iPCBlTY1wDwDuplg,2908
262
- bpy/ops/sequencer/__init__.pyi,sha256=gQhtgUOUL7pIx1hESmpUr5HgOz8-sh6L3soEqbApnio,80994
262
+ bpy/ops/sequencer/__init__.pyi,sha256=tLKjE49h3zD4n0KDwg9ChDJkSMJOJWBY-Ywg4ccb5Ew,82274
263
263
  bpy/ops/sound/__init__.pyi,sha256=qkw9TIeKrn8vFNPKDtyQR-kkOpQklf43Io8m8-iERbA,16625
264
264
  bpy/ops/spreadsheet/__init__.pyi,sha256=FGUHnjDzUzODfytyqLJSOPQtZvRaOOo-3ff9o8Y9bMM,2115
265
265
  bpy/ops/surface/__init__.pyi,sha256=2zsyLcEMeA71sYw44yeIY6l1dRzf77ITk17JWlz2JTk,10390
266
266
  bpy/ops/text/__init__.pyi,sha256=h0eTFcUCz8HSXPN_T9iVIFALXcsV_yh-M25kS6IF25c,21406
267
267
  bpy/ops/text_editor/__init__.pyi,sha256=y7zrfyEfEIXybjnIDKjhMnMcezg66-hWeiG6ixZakJI,670
268
268
  bpy/ops/texture/__init__.pyi,sha256=WhveglZyHGCg6E6CldYnNSrKTK7LYF30mHWTpnfB_3I,1114
269
- bpy/ops/transform/__init__.pyi,sha256=Q4Bonbh2JVGJhFecKBqUjCcBbjDGjyf1nTVzUzQ2DMM,59156
269
+ bpy/ops/transform/__init__.pyi,sha256=FN6ReZQcmsXzSqbNAmYA-fAW63SY0O-0ZEeXV7OcZP4,59655
270
270
  bpy/ops/ui/__init__.pyi,sha256=tZbM_PX9Xx_vLO6gQ8AJlHyJWBL-4WDTsqCzQBVOUT8,12833
271
271
  bpy/ops/uilist/__init__.pyi,sha256=CSwrFuqez9Ia24-_yFa5gAudByRrRqmaQVKrfExyRYc,1669
272
272
  bpy/ops/uv/__init__.pyi,sha256=BgVkNR-fiGak2mhmcGAl_xA5uoTdkE-BqP5wLU9EwzU,45903
@@ -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=oCQqEHzbCdBfOqdlFp404l0iQYDQbDLVawk-KnGis-4,141088
282
- bpy/types/__init__.pyi,sha256=CfFV7q-D5qtdX8vCgDex-bKD5w-PWMYWXOr5ZpzZhu4,5814453
281
+ bpy/stub_internal/rna_enums/__init__.pyi,sha256=BUTDaIidK_e78x0jfwQcYTgFD8KfGghgBseKmw6EqNk,141460
282
+ bpy/types/__init__.pyi,sha256=tzY2YiIMwPZ03qrPkqU3oqPV-W0yWvH3kl-I1u1wrW4,5815404
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
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=dGcOMrCayIE_OXrHIm36aQUAsCyNwvX63DjLjJw6
314
314
  freestyle/predicates/__init__.pyi,sha256=vplIHGLjdJBDakJwvHsI6AYwOlVBBj63psF43v6w4y8,13552
315
315
  freestyle/shaders/__init__.pyi,sha256=dy5cOfrI83TulqGxuvKbak2P-rKU6ljNR6Gv_Qkpjdw,24669
316
316
  freestyle/types/__init__.pyi,sha256=u0H0p4O8b_-sPtE0eNaEnXFdk_72_0iAjb1ubrw61v0,101391
317
- freestyle/utils/__init__.pyi,sha256=xen4PA9f0gsePcDnloOuR_lvhRp2y5EyGBKTJ9jXcxo,5335
317
+ freestyle/utils/__init__.pyi,sha256=BCjKEQ4EEpLnEA-xMbs-jrBWZDIFM75-aNyl7rdQJnU,5335
318
318
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=IKNZD__52vYS5eT32F_WZwW1dco_6G2kZC_1IVCAwLs,3486
319
319
  gpu/__init__.pyi,sha256=TLoatdrTMM6vfjnbuQA6cW38ARW5nuLa4Y-eicnJU5Q,8900
320
320
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -325,10 +325,10 @@ 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=uTal8DnBWACjm-AFWPNkiGdN4c91VXiwkjh9b3nUzc4,29724
328
+ gpu/types/__init__.pyi,sha256=yKJdUVNyzAlAX0nBDeWzv03kCgx0urzQGDnPtmCIbyw,29709
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=vtAOpu94K9wQBL8TwYIFyT_3rW185Kz91OWGUyC9_0w,1690
333
333
  graphviz_export/__init__.pyi,sha256=l4HCIpbabD8OmgoJdVcmAw2HdInP-wAZtTETECLLYWA,258
334
334
  graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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-20250610.dist-info/METADATA,sha256=5G2Bvy5IxHJj6ERwCn-Z-JUaodYDJWMa4nF1vL_-Itg,7429
365
- fake_bpy_module-20250610.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
- fake_bpy_module-20250610.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250610.dist-info/RECORD,,
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,,
@@ -125,7 +125,7 @@ def material_from_fedge(fe) -> None:
125
125
  """get the diffuse RGBA color from an FEdge"""
126
126
 
127
127
  def normal_at_I0D(it) -> None: ...
128
- def pairwise(iterable, types={StrokeVertexIterator, Stroke}) -> None:
128
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}) -> None:
129
129
  """Yields a tuple containing the previous and current object"""
130
130
 
131
131
  def rgb_to_bw(r, g, b) -> None:
gpu/types/__init__.pyi CHANGED
@@ -1076,6 +1076,6 @@ class GPUVertFormat:
1076
1076
  This is mainly useful for memory optimizations when you want to store values with
1077
1077
  reduced precision. E.g. you can store a float in only 1 byte but it will be
1078
1078
  converted to a normal 4 byte float when used.
1079
- Possible values are FLOAT, INT, INT_TO_FLOAT_UNIT and INT_TO_FLOAT.
1079
+ Possible values are FLOAT, INT or INT_TO_FLOAT_UNIT.
1080
1080
  :type fetch_mode: str
1081
1081
  """
@@ -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
  """