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

bpy/ops/mask/__init__.pyi CHANGED
@@ -550,6 +550,9 @@ def select_lasso(
550
550
  undo: bool | None = None,
551
551
  *,
552
552
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
553
+ use_smooth_stroke: bool | None = False,
554
+ smooth_stroke_factor: float | None = 0.75,
555
+ smooth_stroke_radius: int | None = 35,
553
556
  mode: str | None = "SET",
554
557
  ):
555
558
  """Select curve points using lasso selection
@@ -559,6 +562,12 @@ def select_lasso(
559
562
  :type undo: bool | None
560
563
  :param path: Path
561
564
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
565
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
566
+ :type use_smooth_stroke: bool | None
567
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
568
+ :type smooth_stroke_factor: float | None
569
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
570
+ :type smooth_stroke_radius: int | None
562
571
  :param mode: Mode
563
572
 
564
573
  SET
bpy/ops/node/__init__.pyi CHANGED
@@ -1741,6 +1741,9 @@ def select_lasso(
1741
1741
  *,
1742
1742
  tweak: bool | None = False,
1743
1743
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1744
+ use_smooth_stroke: bool | None = False,
1745
+ smooth_stroke_factor: float | None = 0.75,
1746
+ smooth_stroke_radius: int | None = 35,
1744
1747
  mode: str | None = "SET",
1745
1748
  ):
1746
1749
  """Select nodes using lasso selection
@@ -1752,6 +1755,12 @@ def select_lasso(
1752
1755
  :type tweak: bool | None
1753
1756
  :param path: Path
1754
1757
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1758
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
1759
+ :type use_smooth_stroke: bool | None
1760
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
1761
+ :type smooth_stroke_factor: float | None
1762
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
1763
+ :type smooth_stroke_radius: int | None
1755
1764
  :param mode: Mode
1756
1765
 
1757
1766
  SET
@@ -384,6 +384,9 @@ def hide_show_lasso_gesture(
384
384
  undo: bool | None = None,
385
385
  *,
386
386
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
387
+ use_smooth_stroke: bool | None = False,
388
+ smooth_stroke_factor: float | None = 0.75,
389
+ smooth_stroke_radius: int | None = 35,
387
390
  action: str | None = "HIDE",
388
391
  area: str | None = "Inside",
389
392
  use_front_faces_only: bool | None = False,
@@ -395,6 +398,12 @@ def hide_show_lasso_gesture(
395
398
  :type undo: bool | None
396
399
  :param path: Path
397
400
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
401
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
402
+ :type use_smooth_stroke: bool | None
403
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
404
+ :type smooth_stroke_factor: float | None
405
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
406
+ :type smooth_stroke_radius: int | None
398
407
  :param action: Visibility Action, Whether to hide or show vertices
399
408
 
400
409
  HIDE
@@ -670,6 +679,9 @@ def mask_lasso_gesture(
670
679
  undo: bool | None = None,
671
680
  *,
672
681
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
682
+ use_smooth_stroke: bool | None = False,
683
+ smooth_stroke_factor: float | None = 0.75,
684
+ smooth_stroke_radius: int | None = 35,
673
685
  use_front_faces_only: bool | None = False,
674
686
  mode: str | None = "VALUE",
675
687
  value: float | None = 1.0,
@@ -681,6 +693,12 @@ def mask_lasso_gesture(
681
693
  :type undo: bool | None
682
694
  :param path: Path
683
695
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
696
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
697
+ :type use_smooth_stroke: bool | None
698
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
699
+ :type smooth_stroke_factor: float | None
700
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
701
+ :type smooth_stroke_radius: int | None
684
702
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
685
703
  :type use_front_faces_only: bool | None
686
704
  :param mode: Mode
@@ -5,6 +5,30 @@ import bpy.types
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
+ def color_management_white_balance_preset_add(
9
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
10
+ execution_context: int | str | None = None,
11
+ undo: bool | None = None,
12
+ *,
13
+ name: str = "",
14
+ remove_name: bool | None = False,
15
+ remove_active: bool | None = False,
16
+ ):
17
+ """Add or remove a white balance preset
18
+
19
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
20
+ :type execution_context: int | str | None
21
+ :type undo: bool | None
22
+ :param name: Name, Name of the preset, used to make the path name
23
+ :type name: str
24
+ :param remove_name: remove_name
25
+ :type remove_name: bool | None
26
+ :param remove_active: remove_active
27
+ :type remove_active: bool | None
28
+ """
29
+
30
+ ...
31
+
8
32
  def cycles_integrator_preset_add(
9
33
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
10
34
  execution_context: int | str | None = None,
@@ -389,6 +389,9 @@ def face_set_lasso_gesture(
389
389
  undo: bool | None = None,
390
390
  *,
391
391
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
392
+ use_smooth_stroke: bool | None = False,
393
+ smooth_stroke_factor: float | None = 0.75,
394
+ smooth_stroke_radius: int | None = 35,
392
395
  use_front_faces_only: bool | None = False,
393
396
  ):
394
397
  """Add a face set in a shape defined by the cursor
@@ -398,6 +401,12 @@ def face_set_lasso_gesture(
398
401
  :type undo: bool | None
399
402
  :param path: Path
400
403
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
404
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
405
+ :type use_smooth_stroke: bool | None
406
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
407
+ :type smooth_stroke_factor: float | None
408
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
409
+ :type smooth_stroke_radius: int | None
401
410
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
402
411
  :type use_front_faces_only: bool | None
403
412
  """
@@ -1035,6 +1044,9 @@ def trim_lasso_gesture(
1035
1044
  undo: bool | None = None,
1036
1045
  *,
1037
1046
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1047
+ use_smooth_stroke: bool | None = False,
1048
+ smooth_stroke_factor: float | None = 0.75,
1049
+ smooth_stroke_radius: int | None = 35,
1038
1050
  use_front_faces_only: bool | None = False,
1039
1051
  location: collections.abc.Iterable[int] | None = (0, 0),
1040
1052
  trim_mode: str | None = "DIFFERENCE",
@@ -1050,6 +1062,12 @@ def trim_lasso_gesture(
1050
1062
  :type undo: bool | None
1051
1063
  :param path: Path
1052
1064
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1065
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
1066
+ :type use_smooth_stroke: bool | None
1067
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
1068
+ :type smooth_stroke_factor: float | None
1069
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
1070
+ :type smooth_stroke_radius: int | None
1053
1071
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
1054
1072
  :type use_front_faces_only: bool | None
1055
1073
  :param location: Location, Mouse location
@@ -290,7 +290,6 @@ def delete(
290
290
  undo: bool | None = None,
291
291
  *,
292
292
  delete_data: bool | None = False,
293
- use_retiming_mode: bool | None = False,
294
293
  ):
295
294
  """Delete selected strips from the sequencer
296
295
 
@@ -299,8 +298,6 @@ def delete(
299
298
  :type undo: bool | None
300
299
  :param delete_data: Delete Data, After removing the Strip, delete the associated data also
301
300
  :type delete_data: bool | None
302
- :param use_retiming_mode: Use Retiming Data, Operate on retiming data instead of strips
303
- :type use_retiming_mode: bool | None
304
301
  """
305
302
 
306
303
  ...
@@ -421,7 +418,7 @@ def effect_strip_add(
421
418
  :type frame_end: int | None
422
419
  :param channel: Channel, Channel to place this strip into
423
420
  :type channel: int | None
424
- :param replace_sel: Replace Selection, Replace the current selection
421
+ :param replace_sel: Replace Selection, Deselect previously selected strips
425
422
  :type replace_sel: bool | None
426
423
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
427
424
  :type overlap: bool | None
@@ -777,7 +774,7 @@ def image_strip_add(
777
774
  :type frame_end: int | None
778
775
  :param channel: Channel, Channel to place this strip into
779
776
  :type channel: int | None
780
- :param replace_sel: Replace Selection, Replace the current selection
777
+ :param replace_sel: Replace Selection, Deselect previously selected strips
781
778
  :type replace_sel: bool | None
782
779
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
783
780
  :type overlap: bool | None
@@ -858,7 +855,7 @@ def mask_strip_add(
858
855
  :type frame_start: int | None
859
856
  :param channel: Channel, Channel to place this strip into
860
857
  :type channel: int | None
861
- :param replace_sel: Replace Selection, Replace the current selection
858
+ :param replace_sel: Replace Selection, Deselect previously selected strips
862
859
  :type replace_sel: bool | None
863
860
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
864
861
  :type overlap: bool | None
@@ -1046,7 +1043,7 @@ def movie_strip_add(
1046
1043
  :type frame_start: int | None
1047
1044
  :param channel: Channel, Channel to place this strip into
1048
1045
  :type channel: int | None
1049
- :param replace_sel: Replace Selection, Replace the current selection
1046
+ :param replace_sel: Replace Selection, Deselect previously selected strips
1050
1047
  :type replace_sel: bool | None
1051
1048
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
1052
1049
  :type overlap: bool | None
@@ -1099,7 +1096,7 @@ def movieclip_strip_add(
1099
1096
  :type frame_start: int | None
1100
1097
  :param channel: Channel, Channel to place this strip into
1101
1098
  :type channel: int | None
1102
- :param replace_sel: Replace Selection, Replace the current selection
1099
+ :param replace_sel: Replace Selection, Deselect previously selected strips
1103
1100
  :type replace_sel: bool | None
1104
1101
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
1105
1102
  :type overlap: bool | None
@@ -1327,6 +1324,20 @@ def retiming_key_add(
1327
1324
 
1328
1325
  ...
1329
1326
 
1327
+ def retiming_key_delete(
1328
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1329
+ execution_context: int | str | None = None,
1330
+ undo: bool | None = None,
1331
+ ):
1332
+ """Delete selected strips from the sequencer
1333
+
1334
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1335
+ :type execution_context: int | str | None
1336
+ :type undo: bool | None
1337
+ """
1338
+
1339
+ ...
1340
+
1330
1341
  def retiming_reset(
1331
1342
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1332
1343
  execution_context: int | str | None = None,
@@ -1447,7 +1458,7 @@ def scene_strip_add(
1447
1458
  :type frame_start: int | None
1448
1459
  :param channel: Channel, Channel to place this strip into
1449
1460
  :type channel: int | None
1450
- :param replace_sel: Replace Selection, Replace the current selection
1461
+ :param replace_sel: Replace Selection, Deselect previously selected strips
1451
1462
  :type replace_sel: bool | None
1452
1463
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
1453
1464
  :type overlap: bool | None
@@ -1480,7 +1491,7 @@ def scene_strip_add_new(
1480
1491
  :type frame_start: int | None
1481
1492
  :param channel: Channel, Channel to place this strip into
1482
1493
  :type channel: int | None
1483
- :param replace_sel: Replace Selection, Replace the current selection
1494
+ :param replace_sel: Replace Selection, Deselect previously selected strips
1484
1495
  :type replace_sel: bool | None
1485
1496
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
1486
1497
  :type overlap: bool | None
@@ -2007,7 +2018,7 @@ def sound_strip_add(
2007
2018
  :type frame_start: int | None
2008
2019
  :param channel: Channel, Channel to place this strip into
2009
2020
  :type channel: int | None
2010
- :param replace_sel: Replace Selection, Replace the current selection
2021
+ :param replace_sel: Replace Selection, Deselect previously selected strips
2011
2022
  :type replace_sel: bool | None
2012
2023
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
2013
2024
  :type overlap: bool | None
bpy/ops/ui/__init__.pyi CHANGED
@@ -209,12 +209,16 @@ def eyedropper_color(
209
209
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
210
210
  execution_context: int | str | None = None,
211
211
  undo: bool | None = None,
212
+ *,
213
+ prop_data_path: str = "",
212
214
  ):
213
215
  """Sample a color from the Blender window to store in a property
214
216
 
215
217
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
216
218
  :type execution_context: int | str | None
217
219
  :type undo: bool | None
220
+ :param prop_data_path: Data Path, Path of property to be set with the depth
221
+ :type prop_data_path: str
218
222
  """
219
223
 
220
224
  ...
bpy/ops/uv/__init__.pyi CHANGED
@@ -904,6 +904,9 @@ def select_lasso(
904
904
  undo: bool | None = None,
905
905
  *,
906
906
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
907
+ use_smooth_stroke: bool | None = False,
908
+ smooth_stroke_factor: float | None = 0.75,
909
+ smooth_stroke_radius: int | None = 35,
907
910
  mode: str | None = "SET",
908
911
  ):
909
912
  """Select UVs using lasso selection
@@ -913,6 +916,12 @@ def select_lasso(
913
916
  :type undo: bool | None
914
917
  :param path: Path
915
918
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
919
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
920
+ :type use_smooth_stroke: bool | None
921
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
922
+ :type smooth_stroke_factor: float | None
923
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
924
+ :type smooth_stroke_radius: int | None
916
925
  :param mode: Mode
917
926
 
918
927
  SET
@@ -755,6 +755,9 @@ def select_lasso(
755
755
  undo: bool | None = None,
756
756
  *,
757
757
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
758
+ use_smooth_stroke: bool | None = False,
759
+ smooth_stroke_factor: float | None = 0.75,
760
+ smooth_stroke_radius: int | None = 35,
758
761
  mode: str | None = "SET",
759
762
  ):
760
763
  """Select items using lasso selection
@@ -764,6 +767,12 @@ def select_lasso(
764
767
  :type undo: bool | None
765
768
  :param path: Path
766
769
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
770
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
771
+ :type use_smooth_stroke: bool | None
772
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
773
+ :type smooth_stroke_factor: float | None
774
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
775
+ :type smooth_stroke_radius: int | None
767
776
  :param mode: Mode
768
777
 
769
778
  SET
bpy/types/__init__.pyi CHANGED
@@ -108546,12 +108546,36 @@ class ColorManagedViewSettings(bpy_struct):
108546
108546
  :type: bool
108547
108547
  """
108548
108548
 
108549
+ use_white_balance: bool
108550
+ """ Perform chromatic adaption from a different white point
108551
+
108552
+ :type: bool
108553
+ """
108554
+
108549
108555
  view_transform: str
108550
108556
  """ View used when converting image to a display space
108551
108557
 
108552
108558
  :type: str
108553
108559
  """
108554
108560
 
108561
+ white_balance_temperature: float
108562
+ """ Color temperature of the scene's white point
108563
+
108564
+ :type: float
108565
+ """
108566
+
108567
+ white_balance_tint: float
108568
+ """ Color tint of the scene's white point (the default of 10 matches daylight)
108569
+
108570
+ :type: float
108571
+ """
108572
+
108573
+ white_balance_whitepoint: mathutils.Color
108574
+ """ The color which gets mapped to white (automatically converted to/from temperature and tint)
108575
+
108576
+ :type: mathutils.Color
108577
+ """
108578
+
108555
108579
  @classmethod
108556
108580
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
108557
108581
  """
@@ -117259,6 +117283,12 @@ class GPencilLayer(bpy_struct):
117259
117283
  :type: int
117260
117284
  """
117261
117285
 
117286
+ annotation_onion_use_custom_color: bool
117287
+ """ Use custom colors for onion skinning instead of the theme
117288
+
117289
+ :type: bool
117290
+ """
117291
+
117262
117292
  annotation_opacity: float
117263
117293
  """ Annotation Layer Opacity
117264
117294
 
@@ -147073,12 +147103,24 @@ class ThemeView3D(bpy_struct):
147073
147103
  :type: mathutils.Color
147074
147104
  """
147075
147105
 
147106
+ after_current_frame: mathutils.Color
147107
+ """ The color for things after the current frame (for onion skinning, motion paths, etc.)
147108
+
147109
+ :type: mathutils.Color
147110
+ """
147111
+
147076
147112
  asset_shelf: ThemeAssetShelf
147077
147113
  """ Settings for asset shelf
147078
147114
 
147079
147115
  :type: ThemeAssetShelf
147080
147116
  """
147081
147117
 
147118
+ before_current_frame: mathutils.Color
147119
+ """ The color for things before the current frame (for onion skinning, motion paths, etc.)
147120
+
147121
+ :type: mathutils.Color
147122
+ """
147123
+
147082
147124
  bone_locked_weight: bpy_prop_array[float]
147083
147125
  """ Shade for bones corresponding to a locked weight group during painting
147084
147126
 
@@ -172236,12 +172278,6 @@ class WindowManager(ID, bpy_struct):
172236
172278
  :type: bool
172237
172279
  """
172238
172280
 
172239
- extension_show_panel_enabled: bool
172240
- """ Only show enabled extensions
172241
-
172242
- :type: bool
172243
- """
172244
-
172245
172281
  extension_show_panel_installed: bool
172246
172282
  """ Only show installed extensions
172247
172283
 
@@ -172260,12 +172296,6 @@ class WindowManager(ID, bpy_struct):
172260
172296
  :type: str
172261
172297
  """
172262
172298
 
172263
- extension_updates_only: bool
172264
- """ Only show extensions with updates available
172265
-
172266
- :type: bool
172267
- """
172268
-
172269
172299
  extensions_updates: int
172270
172300
  """ Number of extensions with available update
172271
172301
 
@@ -235133,6 +235163,10 @@ RENDER_PT_color_management_curves: bl_ui.properties_render.RENDER_PT_color_manag
235133
235163
 
235134
235164
  RENDER_PT_color_management_display_settings: bl_ui.properties_render.RENDER_PT_color_management_display_settings
235135
235165
 
235166
+ RENDER_PT_color_management_white_balance: bl_ui.properties_render.RENDER_PT_color_management_white_balance
235167
+
235168
+ RENDER_PT_color_management_white_balance_presets: bl_ui.properties_render.RENDER_PT_color_management_white_balance_presets
235169
+
235136
235170
  RENDER_PT_context: bl_ui.properties_render.RENDER_PT_context
235137
235171
 
235138
235172
  RENDER_PT_eevee_ambient_occlusion: bl_ui.properties_render.RENDER_PT_eevee_ambient_occlusion
bpy/utils/__init__.pyi CHANGED
@@ -90,6 +90,23 @@ def execfile(filepath: str | None, mod=None):
90
90
 
91
91
  ...
92
92
 
93
+ def extension_path_user(
94
+ package: str | None, path: str | None = "", create: bool | None = False
95
+ ) -> str:
96
+ """Return a user writable directory associated with an extension.
97
+
98
+ :param package: The __package__ of the extension.
99
+ :type package: str | None
100
+ :param path: Optional subdirectory.
101
+ :type path: str | None
102
+ :param create: Treat the path as a directory and create it if its not existing.
103
+ :type create: bool | None
104
+ :return: a path.
105
+ :rtype: str
106
+ """
107
+
108
+ ...
109
+
93
110
  def flip_name(name: str | None, strip_digits: bool | None = False) -> str:
94
111
  """Flip a name between left/right sides, useful for
95
112
  mirroring bone names.
@@ -592,13 +609,12 @@ def user_resource(
592
609
  ) -> str:
593
610
  """Return a user resource path (normally from the users home directory).
594
611
 
595
- :param path: Optional subdirectory.
596
- :type path: str | None
597
- :param create: Treat the path as a directory and create
598
- it if its not existing.
599
- :type create: bool | None
600
- :return: a path.
601
- :rtype: str
612
+ :param path: Optional subdirectory.
613
+ :type path: str | None
614
+ :param create: Treat the path as a directory and create it if its not existing.
615
+ :type create: bool | None
616
+ :return: a path.
617
+ :rtype: str
602
618
  """
603
619
 
604
620
  ...
@@ -608,13 +624,12 @@ def user_resource(
608
624
  ) -> str:
609
625
  """Return a user resource path (normally from the users home directory).
610
626
 
611
- :param path: Optional subdirectory.
612
- :type path: str | None
613
- :param create: Treat the path as a directory and create
614
- it if its not existing.
615
- :type create: bool | None
616
- :return: a path.
617
- :rtype: str
627
+ :param path: Optional subdirectory.
628
+ :type path: str | None
629
+ :param create: Treat the path as a directory and create it if its not existing.
630
+ :type create: bool | None
631
+ :return: a path.
632
+ :rtype: str
618
633
  """
619
634
 
620
635
  ...
bpy_extras/__init__.pyi CHANGED
@@ -22,7 +22,6 @@ import collections.abc
22
22
  from . import anim_utils
23
23
  from . import asset_utils
24
24
  from . import bmesh_utils
25
- from . import extensions
26
25
  from . import id_map_utils
27
26
  from . import image_utils
28
27
  from . import io_utils
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240627
3
+ Version: 20240629
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