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

@@ -18,37 +18,6 @@ class CurveButtonsPanel:
18
18
  :param context:
19
19
  """
20
20
 
21
- class DATA_PT_active_spline(CurveButtonsPanelActive, bpy.types.Panel):
22
- """Same as above but for curves only"""
23
-
24
- bl_context: typing.Any
25
- bl_label: typing.Any
26
- bl_options: typing.Any
27
- bl_region_type: typing.Any
28
- bl_rna: typing.Any
29
- bl_space_type: typing.Any
30
- id_data: typing.Any
31
-
32
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
33
- """
34
-
35
- :return: The RNA type or default when not found.
36
- :rtype: bpy.types.Struct
37
- """
38
-
39
- def bl_rna_get_subclass_py(self) -> typing.Any:
40
- """
41
-
42
- :return: The class or default when not found.
43
- :rtype: typing.Any
44
- """
45
-
46
- def draw(self, context):
47
- """
48
-
49
- :param context:
50
- """
51
-
52
21
  class DATA_PT_context_curve(CurveButtonsPanel, bpy.types.Panel):
53
22
  bl_context: typing.Any
54
23
  bl_label: typing.Any
@@ -5036,6 +5036,41 @@ class VIEW3D_MT_wpaint_vgroup_lock_pie(bpy.types.Menu):
5036
5036
  :param _context:
5037
5037
  """
5038
5038
 
5039
+ class VIEW3D_PT_active_spline(bpy.types.Panel):
5040
+ bl_category: typing.Any
5041
+ bl_label: typing.Any
5042
+ bl_region_type: typing.Any
5043
+ bl_rna: typing.Any
5044
+ bl_space_type: typing.Any
5045
+ id_data: typing.Any
5046
+
5047
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
5048
+ """
5049
+
5050
+ :return: The RNA type or default when not found.
5051
+ :rtype: bpy.types.Struct
5052
+ """
5053
+
5054
+ def bl_rna_get_subclass_py(self) -> typing.Any:
5055
+ """
5056
+
5057
+ :return: The class or default when not found.
5058
+ :rtype: typing.Any
5059
+ """
5060
+
5061
+ def draw(self, context):
5062
+ """
5063
+
5064
+ :param context:
5065
+ """
5066
+
5067
+ @classmethod
5068
+ def poll(cls, context):
5069
+ """
5070
+
5071
+ :param context:
5072
+ """
5073
+
5039
5074
  class VIEW3D_PT_active_tool(
5040
5075
  bpy.types.Panel, bl_ui.space_toolsystem_common.ToolActivePanelHelper
5041
5076
  ):
@@ -2525,6 +2525,7 @@ type PropertyFlagItems = typing.Literal[
2525
2525
  "PROPORTIONAL", # Adjust values proportionally to each other.
2526
2526
  "TEXTEDIT_UPDATE", # Update on every keystroke in textedit 'mode'.
2527
2527
  "OUTPUT_PATH", # Output Path.
2528
+ "RELATIVE_PATH", # Relative Path Support.This path supports relative prefix "//" which is expanded the the directory where the current ".blend" file is located..
2528
2529
  ]
2529
2530
  type PropertyOverrideFlagCollectionItems = typing.Literal[
2530
2531
  "LIBRARY_OVERRIDABLE", # Library Overridable.Make that property editable in library overrides of linked data-blocks.NOTE: For a property to be overridable, its whole chain of parent properties must also be defined as overridable.
@@ -328,12 +328,18 @@ def repo_lock_all(execution_context: int | str | None = None, undo: bool | None
328
328
  """
329
329
 
330
330
  def repo_refresh_all(
331
- execution_context: int | str | None = None, undo: bool | None = None
331
+ execution_context: int | str | None = None,
332
+ undo: bool | None = None,
333
+ /,
334
+ *,
335
+ use_active_only: bool | None = False,
332
336
  ):
333
337
  """Scan extension & legacy add-ons for changes to modules & meta-data (similar to restarting). Any issues are reported as warnings
334
338
 
335
339
  :type execution_context: int | str | None
336
340
  :type undo: bool | None
341
+ :param use_active_only: Active Only, Only refresh the active repository
342
+ :type use_active_only: bool | None
337
343
  """
338
344
 
339
345
  def repo_sync(
@@ -33,7 +33,7 @@ def camera_background_image_add(
33
33
  undo: bool | None = None,
34
34
  /,
35
35
  *,
36
- filepath: str = "",
36
+ filepath: str | None = "",
37
37
  relative_path: bool | None = True,
38
38
  name: str = "",
39
39
  session_uid: int | None = 0,
@@ -43,7 +43,7 @@ def camera_background_image_add(
43
43
  :type execution_context: int | str | None
44
44
  :type undo: bool | None
45
45
  :param filepath: Filepath, Path to image file
46
- :type filepath: str
46
+ :type filepath: str | None
47
47
  :param relative_path: Relative Path, Select the file relative to the blend file
48
48
  :type relative_path: bool | None
49
49
  :param name: Name, Name of the data-block to use by the operator
bpy/ops/wm/__init__.pyi CHANGED
@@ -2676,7 +2676,7 @@ def open_mainfile(
2676
2676
  | None = "DEFAULT",
2677
2677
  sort_method: str | None = "",
2678
2678
  load_ui: bool | None = True,
2679
- use_scripts: bool | None = True,
2679
+ use_scripts: bool | None = False,
2680
2680
  display_file_selector: bool | None = True,
2681
2681
  state: int | None = 0,
2682
2682
  ):
@@ -3889,7 +3889,7 @@ def recover_auto_save(
3889
3889
  ]
3890
3890
  | None = "LIST_VERTICAL",
3891
3891
  sort_method: str | None = "",
3892
- use_scripts: bool | None = True,
3892
+ use_scripts: bool | None = False,
3893
3893
  ):
3894
3894
  """Open an automatically saved file to recover it
3895
3895
 
@@ -3962,7 +3962,7 @@ def recover_last_session(
3962
3962
  undo: bool | None = None,
3963
3963
  /,
3964
3964
  *,
3965
- use_scripts: bool | None = True,
3965
+ use_scripts: bool | None = False,
3966
3966
  ):
3967
3967
  """Open the last closed file ("quit.blend")
3968
3968
 
@@ -4028,7 +4028,7 @@ def revert_mainfile(
4028
4028
  undo: bool | None = None,
4029
4029
  /,
4030
4030
  *,
4031
- use_scripts: bool | None = True,
4031
+ use_scripts: bool | None = False,
4032
4032
  ):
4033
4033
  """Reload the saved file
4034
4034
 
@@ -16,7 +16,7 @@ def append_activate(
16
16
  /,
17
17
  *,
18
18
  idname: str = "",
19
- filepath: str = "",
19
+ filepath: str | None = "",
20
20
  ):
21
21
  """Append a workspace and make it the active one in the current window
22
22
 
@@ -25,7 +25,7 @@ def append_activate(
25
25
  :param idname: Identifier, Name of the workspace to append and activate
26
26
  :type idname: str
27
27
  :param filepath: Filepath, Path to the library
28
- :type filepath: str
28
+ :type filepath: str | None
29
29
  """
30
30
 
31
31
  def delete(execution_context: int | str | None = None, undo: bool | None = None):
bpy/types/__init__.pyi CHANGED
@@ -2342,6 +2342,7 @@
2342
2342
  * Property.is_enum_flag
2343
2343
  * Property.is_library_editable
2344
2344
  * Property.is_path_output
2345
+ * Property.is_path_supports_blend_relative
2345
2346
  * Property.tags
2346
2347
 
2347
2348
  :columns: 2
@@ -16213,6 +16214,7 @@ Executing the operator will then print all values.
16213
16214
  * Property.is_enum_flag
16214
16215
  * Property.is_library_editable
16215
16216
  * Property.is_path_output
16217
+ * Property.is_path_supports_blend_relative
16216
16218
  * Property.tags
16217
16219
 
16218
16220
  :columns: 2
@@ -30417,6 +30419,7 @@ example of how to create/use filtering/reordering callbacks.
30417
30419
  * Property.is_enum_flag
30418
30420
  * Property.is_library_editable
30419
30421
  * Property.is_path_output
30422
+ * Property.is_path_supports_blend_relative
30420
30423
  * Property.tags
30421
30424
 
30422
30425
  :columns: 2
@@ -44862,6 +44865,7 @@ print(positions_data)
44862
44865
  * Property.is_enum_flag
44863
44866
  * Property.is_library_editable
44864
44867
  * Property.is_path_output
44868
+ * Property.is_path_supports_blend_relative
44865
44869
  * Property.tags
44866
44870
 
44867
44871
  :columns: 2
@@ -60982,6 +60986,7 @@ Menu.poll function.
60982
60986
  * Property.is_enum_flag
60983
60987
  * Property.is_library_editable
60984
60988
  * Property.is_path_output
60989
+ * Property.is_path_supports_blend_relative
60985
60990
  * Property.tags
60986
60991
 
60987
60992
  :columns: 2
@@ -74109,6 +74114,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
74109
74114
  * Property.is_enum_flag
74110
74115
  * Property.is_library_editable
74111
74116
  * Property.is_path_output
74117
+ * Property.is_path_supports_blend_relative
74112
74118
  * Property.tags
74113
74119
 
74114
74120
  :columns: 2
@@ -97353,6 +97359,7 @@ of the scene and only show nodes of the renderer they are designed for.
97353
97359
  * Property.is_enum_flag
97354
97360
  * Property.is_library_editable
97355
97361
  * Property.is_path_output
97362
+ * Property.is_path_supports_blend_relative
97356
97363
  * Property.tags
97357
97364
 
97358
97365
  :columns: 2
@@ -109751,11 +109758,13 @@ class BlendDataCurves(bpy_prop_collection[Curve], bpy_struct):
109751
109758
  class BlendDataFonts(bpy_prop_collection[VectorFont], bpy_struct):
109752
109759
  """Collection of fonts"""
109753
109760
 
109754
- def load(self, filepath: str, *, check_existing: bool | None = False) -> VectorFont:
109761
+ def load(
109762
+ self, filepath: str | None, *, check_existing: bool | None = False
109763
+ ) -> VectorFont:
109755
109764
  """Load a new font into the main database
109756
109765
 
109757
109766
  :param filepath: path of the font to load
109758
- :type filepath: str
109767
+ :type filepath: str | None
109759
109768
  :param check_existing: Using existing data-block if this file is already loaded
109760
109769
  :type check_existing: bool | None
109761
109770
  :return: New font data-block
@@ -110031,11 +110040,13 @@ class BlendDataImages(bpy_prop_collection[Image], bpy_struct):
110031
110040
  :rtype: Image
110032
110041
  """
110033
110042
 
110034
- def load(self, filepath: str, *, check_existing: bool | None = False) -> Image:
110043
+ def load(
110044
+ self, filepath: str | None, *, check_existing: bool | None = False
110045
+ ) -> Image:
110035
110046
  """Load a new image into the main database
110036
110047
 
110037
110048
  :param filepath: Path of the file to load
110038
- :type filepath: str
110049
+ :type filepath: str | None
110039
110050
  :param check_existing: Using existing data-block if this file is already loaded
110040
110051
  :type check_existing: bool | None
110041
110052
  :return: New image data-block
@@ -110698,11 +110709,13 @@ class BlendDataMovieClips(bpy_prop_collection[MovieClip], bpy_struct):
110698
110709
  :type do_ui_user: bool | None
110699
110710
  """
110700
110711
 
110701
- def load(self, filepath: str, *, check_existing: bool | None = False) -> MovieClip:
110712
+ def load(
110713
+ self, filepath: str | None, *, check_existing: bool | None = False
110714
+ ) -> MovieClip:
110702
110715
  """Add a new movie clip to the main database from a file (while check_existing is disabled for consistency with other load functions, behavior with multiple movie-clips using the same file may incorrectly generate proxies)
110703
110716
 
110704
110717
  :param filepath: path for the data-block
110705
- :type filepath: str
110718
+ :type filepath: str | None
110706
110719
  :param check_existing: Using existing data-block if this file is already loaded
110707
110720
  :type check_existing: bool | None
110708
110721
  :return: New movie clip data-block
@@ -111222,11 +111235,13 @@ class BlendDataScreens(bpy_prop_collection[Screen], bpy_struct):
111222
111235
  class BlendDataSounds(bpy_prop_collection[Sound], bpy_struct):
111223
111236
  """Collection of sounds"""
111224
111237
 
111225
- def load(self, filepath: str, *, check_existing: bool | None = False) -> Sound:
111238
+ def load(
111239
+ self, filepath: str | None, *, check_existing: bool | None = False
111240
+ ) -> Sound:
111226
111241
  """Add a new sound to the main database from a file
111227
111242
 
111228
111243
  :param filepath: path for the data-block
111229
- :type filepath: str
111244
+ :type filepath: str | None
111230
111245
  :param check_existing: Using existing data-block if this file is already loaded
111231
111246
  :type check_existing: bool | None
111232
111247
  :return: New text data-block
@@ -111375,11 +111390,11 @@ class BlendDataTexts(bpy_prop_collection[Text], bpy_struct):
111375
111390
  :type do_ui_user: bool | None
111376
111391
  """
111377
111392
 
111378
- def load(self, filepath: str, *, internal: bool | None = False) -> Text:
111393
+ def load(self, filepath: str | None, *, internal: bool | None = False) -> Text:
111379
111394
  """Add a new text to the main database from a file
111380
111395
 
111381
111396
  :param filepath: path for the data-block
111382
- :type filepath: str
111397
+ :type filepath: str | None
111383
111398
  :param internal: Make internal, Make text file internal after loading
111384
111399
  :type internal: bool | None
111385
111400
  :return: New text data-block
@@ -199840,6 +199855,12 @@ class Property(bpy_struct):
199840
199855
  :type: bool
199841
199856
  """
199842
199857
 
199858
+ is_path_supports_blend_relative: bool
199859
+ """ Property is a path which supports the "//" prefix, signifying the location as relative to the ".blend" files directory
199860
+
199861
+ :type: bool
199862
+ """
199863
+
199843
199864
  is_readonly: bool
199844
199865
  """ Property is editable through RNA
199845
199866
 
@@ -239272,8 +239293,6 @@ DATA_PT_EEVEE_light_influence: bl_ui.properties_data_light.DATA_PT_EEVEE_light_i
239272
239293
 
239273
239294
  DATA_PT_EEVEE_light_shadow: bl_ui.properties_data_light.DATA_PT_EEVEE_light_shadow
239274
239295
 
239275
- DATA_PT_active_spline: bl_ui.properties_data_curve.DATA_PT_active_spline
239276
-
239277
239296
  DATA_PT_armature_animation: bl_ui.properties_data_armature.DATA_PT_armature_animation
239278
239297
 
239279
239298
  DATA_PT_bone_collections: bl_ui.properties_data_armature.DATA_PT_bone_collections
@@ -241954,6 +241973,8 @@ VIEW3D_OT_edit_mesh_extrude_manifold_normal: bl_operators.view3d.VIEW3D_OT_edit_
241954
241973
 
241955
241974
  VIEW3D_OT_transform_gizmo_set: bl_operators.view3d.VIEW3D_OT_transform_gizmo_set
241956
241975
 
241976
+ VIEW3D_PT_active_spline: bl_ui.space_view3d.VIEW3D_PT_active_spline
241977
+
241957
241978
  VIEW3D_PT_active_tool: bl_ui.space_view3d.VIEW3D_PT_active_tool
241958
241979
 
241959
241980
  VIEW3D_PT_active_tool_duplicate: bl_ui.space_view3d.VIEW3D_PT_active_tool_duplicate
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250409
3
+ Version: 20250411
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
@@ -115,7 +115,7 @@ bl_ui/properties_constraint/__init__.pyi,sha256=nj10LQBzyDz2xz7WM8WQVXeWENM2yCxi
115
115
  bl_ui/properties_data_armature/__init__.pyi,sha256=g4giysz8xZMoHN650_t38UgM2B2A8IGBjWv4qsKXDUk,13212
116
116
  bl_ui/properties_data_bone/__init__.pyi,sha256=BWNPv2mQT6P49cllkpKkbcfaWodbaobXolk0wpyKQg4,7997
117
117
  bl_ui/properties_data_camera/__init__.pyi,sha256=Vq_h0MKR0dISOygP8hSKj3Z1oDnxsW2T77pdTnHQ93Y,11866
118
- bl_ui/properties_data_curve/__init__.pyi,sha256=5G4mxlh9CkIUkmPgjM5Ln5s1Fo1wY8EUFTRpYdfejGU,12886
118
+ bl_ui/properties_data_curve/__init__.pyi,sha256=cpWPAHfU7IRX7717FvlSI1lI6lBEBFWSFsfhMBh4EbA,12173
119
119
  bl_ui/properties_data_curves/__init__.pyi,sha256=CY7HvjMyxitHOKy11So1KJNEYr9W5sl4XvojkcuL6-U,6480
120
120
  bl_ui/properties_data_empty/__init__.pyi,sha256=E6BYHmqfgmJB1A7_OQbOk36PpxAtfzjSi0LcYExUieg,1706
121
121
  bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=CSeFEFGo2z93sDqfpD_OmcPPf5OjnpgtQrhhGdcZkoI,15538
@@ -173,7 +173,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=u9fq0qxsCYtwB6CEJHjkfbrkj4uDxd
173
173
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=nw4_dyzrE9gxIsDHRKDqQG6V6tQYZWcD-2wQzALvKp4,9973
174
174
  bl_ui/space_topbar/__init__.pyi,sha256=8JXrYqbiPLGQTsbcniOLTaAhvhtkLSaTFmikzMMH5Zo,15343
175
175
  bl_ui/space_userpref/__init__.pyi,sha256=SwWBb-YWDose1At4BoXvs9YUtkz3YwyjazkkmkGVAYY,79607
176
- bl_ui/space_view3d/__init__.pyi,sha256=6_aPtQrQKLM_80hPPmYXl7i6--RPSfPnHbboexsmVhs,156472
176
+ bl_ui/space_view3d/__init__.pyi,sha256=ti9fWwn2LavDNpDzziuZP0Iq_YhZocwm9TZpc_QRW9I,157186
177
177
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=Ustue-nkysid6xip9XciEHWqCROHnUVF_FTFaXryQjw,76322
178
178
  bl_ui/utils/__init__.pyi,sha256=wzUQN8iooBJnE-iFedHD1cTNBwFUmwZN6d2jwfRIK5Y,510
179
179
  bl_ui_utils/__init__.pyi,sha256=6yinHCNictVwPqgqerb5zXorsqM0cqPLmz_r8ms1XeE,89
@@ -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=uBLjCV2uB3uOyEb_1omTzVfVWLOMhmFQ4DZkYdBFeos,140256
195
+ bpy/_typing/rna_enums/__init__.pyi,sha256=phmBJrH8xcnHVNiMI2tT-L0BrhjVicNNZu4wc_kNsNs,140423
196
196
  bpy/app/__init__.pyi,sha256=hNqhcqWihQrYUx9_KDYW0IWG4XkSQj1LIdHqQo_H42o,8784
197
197
  bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
198
198
  bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
@@ -221,7 +221,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=9c4iWq0b5rd_bwy132hZ0puT1b6MYsQFD9Gsuy9IFR8,1
221
221
  bpy/ops/ed/__init__.pyi,sha256=ToAbK51M0V5uEjpG4ENeXLfzqqzt0RBPpqD7-cP_ddI,7129
222
222
  bpy/ops/export_anim/__init__.pyi,sha256=vMJtrDBdESAFGNAyzK3vKVdjfhzjbaS5I3qqGFZatS4,2054
223
223
  bpy/ops/export_scene/__init__.pyi,sha256=WQxTBro7MQ0JY4rMtRCHocmBfBMc2iEG7aF5zBXdPgE,40452
224
- bpy/ops/extensions/__init__.pyi,sha256=4GEwMrDb2GWypyU9-pxv3A1OxyJ73Zgr005VifV4R24,12327
224
+ bpy/ops/extensions/__init__.pyi,sha256=9L0hxUtZuQoelKZWm8KxnOXP_D9GlK4anzAcHDFZOCw,12503
225
225
  bpy/ops/file/__init__.pyi,sha256=RcQ7PXPKaFvA5XNsUbGrovqFjvjlvJ3LsEdp8k9MkCM,19287
226
226
  bpy/ops/fluid/__init__.pyi,sha256=lJDfm8cfRkm9S42vutMzeAeZBezIPIheRrMVaYpr4cY,3218
227
227
  bpy/ops/font/__init__.pyi,sha256=_0Y1LLKF5zGPRuPC4Ecy2o4L_8ck44lyNYB0vJbThGY,15536
@@ -273,13 +273,13 @@ bpy/ops/ui/__init__.pyi,sha256=CVX3Wa57AZ4sJBFmFmBvxc4USfYfN4tgsSrYPD1nl8Q,12537
273
273
  bpy/ops/uilist/__init__.pyi,sha256=CvereEDgN2sNfwlFl55E3sGeLTcaUcTCowuL1XVlclE,1645
274
274
  bpy/ops/uv/__init__.pyi,sha256=nVZbRNLymiV8kXoRxWWNRSq72QkPBHTtwifjBxyVINY,45463
275
275
  bpy/ops/view2d/__init__.pyi,sha256=-ofLmKQJ0PqTP5b_mT2JHGo-Jf7aa3qeEf1nsmJQf50,7013
276
- bpy/ops/view3d/__init__.pyi,sha256=aXMqdXx6xsF4xVyb_R86Q_7Xbup6GhCBIwW5UydHUfg,30881
277
- bpy/ops/wm/__init__.pyi,sha256=26kfx7ZbStGqXaXB2Vj-2lkv7rvp-xfl_jS60y-Doek,216197
278
- bpy/ops/workspace/__init__.pyi,sha256=hXSSQZl7IwVFrxMveYrlSKGWY7BjrsV-cKagPzhuT0w,2010
276
+ bpy/ops/view3d/__init__.pyi,sha256=zjN4R4gMYbiteFoT7Hq2jy6JC9o5VmtOvRcq4og13s8,30895
277
+ bpy/ops/wm/__init__.pyi,sha256=rTB8FuFxpeEtjauUJTlXiv540U0ke8Ahq37jS7kaa2M,216201
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=iA6YQrcTV8g6GKKiy0HG5xjuO0te1YDyBNnEa9hLk-Q,5585227
282
+ bpy/types/__init__.pyi,sha256=rEAwEXegEd7v427InJye3S7T9RaaGC3PJcIE3NMGxjM,5585844
283
283
  bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
284
284
  bpy/utils/previews/__init__.pyi,sha256=kgH-eG4DeJ9HRPdzOQOBmITEN2czD7lQ0JhBoWtrRgw,2313
285
285
  bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
314
314
  freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
315
315
  freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
316
316
  freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
317
- freestyle/utils/__init__.pyi,sha256=ub0HsAFKN7jMbNu3fuP9OpaOSHywBpSckuXSexz0Bos,5135
317
+ freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
318
318
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
319
319
  gpu/__init__.pyi,sha256=zVeZ4mRNYZyEgbp-j6uZ6ZQTpWFGh7j3R8UT9JOZ_0w,8026
320
320
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -328,7 +328,7 @@ 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
@@ -353,7 +353,7 @@ nodeitems_builtins/__init__.pyi,sha256=L5QEqATwFxKZvAEuzv-6O01bnn-73nd8z_SYhcaei
353
353
  nodeitems_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
354
  nodeitems_utils/__init__.pyi,sha256=R5bWseQ4duA5aESP7gNpu4o8LMcSSIU2HoD_59HgDbA,774
355
355
  nodeitems_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
- rna_info/__init__.pyi,sha256=xraV0EKJWZblncx1t7Vbyw35rzzAnNiQzBvFycLzYo4,3184
356
+ rna_info/__init__.pyi,sha256=Uy5a6Fz5uT7K8Poe7PH0QNLQHZlDXhtCbXo0kdL_rZA,3232
357
357
  rna_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
358
  rna_keymap_ui/__init__.pyi,sha256=FzzDmI_jh8ompSdGbggE2kpU0e-cfVe3IBI1DokWi1E,440
359
359
  rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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-20250409.dist-info/METADATA,sha256=yRWSRyLac0wXIJHdZgBUZIGY2Vhxq2EuPa4ZHvLKZ8Y,7429
365
- fake_bpy_module-20250409.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
- fake_bpy_module-20250409.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250409.dist-info/RECORD,,
364
+ fake_bpy_module-20250411.dist-info/METADATA,sha256=CahgemmmINr6EI6Taq7Fy-07wrcaK0v5WSsWjXn11sM,7429
365
+ fake_bpy_module-20250411.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
366
+ fake_bpy_module-20250411.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250411.dist-info/RECORD,,
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
125
125
  """get the diffuse RGBA color from an FEdge"""
126
126
 
127
127
  def normal_at_I0D(it): ...
128
- def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
128
+ def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
129
129
  """Yields a tuple containing the previous and current object"""
130
130
 
131
131
  def rgb_to_bw(r, g, b):
@@ -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
  """
rna_info/__init__.pyi CHANGED
@@ -43,6 +43,7 @@ class InfoPropertyRNA:
43
43
  is_argument_optional: typing.Any
44
44
  is_enum_flag: typing.Any
45
45
  is_never_none: typing.Any
46
+ is_path_supports_blend_relative: typing.Any
46
47
  is_readonly: typing.Any
47
48
  is_required: typing.Any
48
49
  max: typing.Any