fake-bpy-module 20240626__py3-none-any.whl → 20240628__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.
- bl_operators/presets/__init__.pyi +233 -0
- bl_ui/properties_material/__init__.pyi +0 -1
- bl_ui/properties_render/__init__.pyi +517 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +10 -0
- bl_ui/space_userpref/__init__.pyi +8 -0
- bpy/ops/action/__init__.pyi +9 -0
- bpy/ops/clip/__init__.pyi +9 -0
- bpy/ops/gpencil/__init__.pyi +18 -0
- bpy/ops/graph/__init__.pyi +9 -0
- bpy/ops/grease_pencil/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +9 -0
- bpy/ops/node/__init__.pyi +9 -0
- bpy/ops/paint/__init__.pyi +18 -0
- bpy/ops/render/__init__.pyi +24 -0
- bpy/ops/sculpt/__init__.pyi +18 -0
- bpy/ops/sequencer/__init__.pyi +8 -8
- bpy/ops/ui/__init__.pyi +4 -0
- bpy/ops/uv/__init__.pyi +9 -0
- bpy/ops/view3d/__init__.pyi +9 -0
- bpy/types/__init__.pyi +28 -12
- bpy/utils/__init__.pyi +29 -14
- {fake_bpy_module-20240626.dist-info → fake_bpy_module-20240628.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240626.dist-info → fake_bpy_module-20240628.dist-info}/RECORD +26 -26
- rna_xml/__init__.pyi +2 -2
- {fake_bpy_module-20240626.dist-info → fake_bpy_module-20240628.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240626.dist-info → fake_bpy_module-20240628.dist-info}/top_level.txt +0 -0
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
|
bpy/ops/paint/__init__.pyi
CHANGED
|
@@ -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
|
bpy/ops/render/__init__.pyi
CHANGED
|
@@ -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,
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -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
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -421,7 +421,7 @@ def effect_strip_add(
|
|
|
421
421
|
:type frame_end: int | None
|
|
422
422
|
:param channel: Channel, Channel to place this strip into
|
|
423
423
|
:type channel: int | None
|
|
424
|
-
:param replace_sel: Replace Selection,
|
|
424
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips
|
|
425
425
|
:type replace_sel: bool | None
|
|
426
426
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
427
427
|
:type overlap: bool | None
|
|
@@ -777,7 +777,7 @@ def image_strip_add(
|
|
|
777
777
|
:type frame_end: int | None
|
|
778
778
|
:param channel: Channel, Channel to place this strip into
|
|
779
779
|
:type channel: int | None
|
|
780
|
-
:param replace_sel: Replace Selection,
|
|
780
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips
|
|
781
781
|
:type replace_sel: bool | None
|
|
782
782
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
783
783
|
:type overlap: bool | None
|
|
@@ -858,7 +858,7 @@ def mask_strip_add(
|
|
|
858
858
|
:type frame_start: int | None
|
|
859
859
|
:param channel: Channel, Channel to place this strip into
|
|
860
860
|
:type channel: int | None
|
|
861
|
-
:param replace_sel: Replace Selection,
|
|
861
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips
|
|
862
862
|
:type replace_sel: bool | None
|
|
863
863
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
864
864
|
:type overlap: bool | None
|
|
@@ -1046,7 +1046,7 @@ def movie_strip_add(
|
|
|
1046
1046
|
:type frame_start: int | None
|
|
1047
1047
|
:param channel: Channel, Channel to place this strip into
|
|
1048
1048
|
:type channel: int | None
|
|
1049
|
-
:param replace_sel: Replace Selection,
|
|
1049
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips
|
|
1050
1050
|
:type replace_sel: bool | None
|
|
1051
1051
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1052
1052
|
:type overlap: bool | None
|
|
@@ -1099,7 +1099,7 @@ def movieclip_strip_add(
|
|
|
1099
1099
|
:type frame_start: int | None
|
|
1100
1100
|
:param channel: Channel, Channel to place this strip into
|
|
1101
1101
|
:type channel: int | None
|
|
1102
|
-
:param replace_sel: Replace Selection,
|
|
1102
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips
|
|
1103
1103
|
:type replace_sel: bool | None
|
|
1104
1104
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1105
1105
|
:type overlap: bool | None
|
|
@@ -1447,7 +1447,7 @@ def scene_strip_add(
|
|
|
1447
1447
|
:type frame_start: int | None
|
|
1448
1448
|
:param channel: Channel, Channel to place this strip into
|
|
1449
1449
|
:type channel: int | None
|
|
1450
|
-
:param replace_sel: Replace Selection,
|
|
1450
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips
|
|
1451
1451
|
:type replace_sel: bool | None
|
|
1452
1452
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1453
1453
|
:type overlap: bool | None
|
|
@@ -1480,7 +1480,7 @@ def scene_strip_add_new(
|
|
|
1480
1480
|
:type frame_start: int | None
|
|
1481
1481
|
:param channel: Channel, Channel to place this strip into
|
|
1482
1482
|
:type channel: int | None
|
|
1483
|
-
:param replace_sel: Replace Selection,
|
|
1483
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips
|
|
1484
1484
|
:type replace_sel: bool | None
|
|
1485
1485
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
1486
1486
|
:type overlap: bool | None
|
|
@@ -2007,7 +2007,7 @@ def sound_strip_add(
|
|
|
2007
2007
|
:type frame_start: int | None
|
|
2008
2008
|
:param channel: Channel, Channel to place this strip into
|
|
2009
2009
|
:type channel: int | None
|
|
2010
|
-
:param replace_sel: Replace Selection,
|
|
2010
|
+
:param replace_sel: Replace Selection, Deselect previously selected strips
|
|
2011
2011
|
:type replace_sel: bool | None
|
|
2012
2012
|
:param overlap: Allow Overlap, Don't correct overlap on new sequence strips
|
|
2013
2013
|
: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
|
bpy/ops/view3d/__init__.pyi
CHANGED
|
@@ -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
|
"""
|
|
@@ -172236,12 +172260,6 @@ class WindowManager(ID, bpy_struct):
|
|
|
172236
172260
|
:type: bool
|
|
172237
172261
|
"""
|
|
172238
172262
|
|
|
172239
|
-
extension_show_panel_enabled: bool
|
|
172240
|
-
""" Only show enabled extensions
|
|
172241
|
-
|
|
172242
|
-
:type: bool
|
|
172243
|
-
"""
|
|
172244
|
-
|
|
172245
172263
|
extension_show_panel_installed: bool
|
|
172246
172264
|
""" Only show installed extensions
|
|
172247
172265
|
|
|
@@ -172260,12 +172278,6 @@ class WindowManager(ID, bpy_struct):
|
|
|
172260
172278
|
:type: str
|
|
172261
172279
|
"""
|
|
172262
172280
|
|
|
172263
|
-
extension_updates_only: bool
|
|
172264
|
-
""" Only show extensions with updates available
|
|
172265
|
-
|
|
172266
|
-
:type: bool
|
|
172267
|
-
"""
|
|
172268
|
-
|
|
172269
172281
|
extensions_updates: int
|
|
172270
172282
|
""" Number of extensions with available update
|
|
172271
172283
|
|
|
@@ -235133,6 +235145,10 @@ RENDER_PT_color_management_curves: bl_ui.properties_render.RENDER_PT_color_manag
|
|
|
235133
235145
|
|
|
235134
235146
|
RENDER_PT_color_management_display_settings: bl_ui.properties_render.RENDER_PT_color_management_display_settings
|
|
235135
235147
|
|
|
235148
|
+
RENDER_PT_color_management_white_balance: bl_ui.properties_render.RENDER_PT_color_management_white_balance
|
|
235149
|
+
|
|
235150
|
+
RENDER_PT_color_management_white_balance_presets: bl_ui.properties_render.RENDER_PT_color_management_white_balance_presets
|
|
235151
|
+
|
|
235136
235152
|
RENDER_PT_context: bl_ui.properties_render.RENDER_PT_context
|
|
235137
235153
|
|
|
235138
235154
|
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
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
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
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
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
|
...
|
|
@@ -63,7 +63,7 @@ bl_operators/object/__init__.pyi,sha256=OyAQEkHMRaWnHnUJKksAAkax5sWD0wOz_6Lrui_g
|
|
|
63
63
|
bl_operators/object_align/__init__.pyi,sha256=yhDRWIzWcGBRQvUs70kYeWNaGK2Vrc9jQ-O9n30fXms,5842
|
|
64
64
|
bl_operators/object_quick_effects/__init__.pyi,sha256=PmsqeY38it48sjN3fbP0oef3PR2-w_iUZHo2h_KzGus,22515
|
|
65
65
|
bl_operators/object_randomize_transform/__init__.pyi,sha256=Y5PwVr1wvNr75PbPxRRQ_n6oyrH0Y1SCROQZ_IC9KqQ,5762
|
|
66
|
-
bl_operators/presets/__init__.pyi,sha256=
|
|
66
|
+
bl_operators/presets/__init__.pyi,sha256=CMy55uPQ1gPnpvVDu8a59ZPzUM6QQ1A8O3_Gul3O7Ow,150033
|
|
67
67
|
bl_operators/rigidbody/__init__.pyi,sha256=VVXeprOmfK7IaYcOtCVZXAQe5DM76K2uIRZ0KbrDWvg,16856
|
|
68
68
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=iJ-cSIOw8hXhdqBbChabDFOTqcoKS9P3H93sb4MEQxA,5616
|
|
69
69
|
bl_operators/sequencer/__init__.pyi,sha256=zDT-j4tPXyE7BbXVQR-cUd5_XYtf1pNEGR1HYFrrzm0,45259
|
|
@@ -119,7 +119,7 @@ bl_ui/properties_data_volume/__init__.pyi,sha256=NAERgyEnPs1tqntyY7ETT5C9hXuoneO
|
|
|
119
119
|
bl_ui/properties_freestyle/__init__.pyi,sha256=Y0WT5RnRXSi5-d_UF9rHIS8hQpt_tMpIq4EEs2TYZZ4,148292
|
|
120
120
|
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=953RjVnB0ryPckte6z7ESUyzjQYp3bWDY48zjfg-tfk,116054
|
|
121
121
|
bl_ui/properties_mask_common/__init__.pyi,sha256=z-wrPLQRR5LqvZ5OkAjkTa-RkDpmbAXcxsLmPW1dFnQ,52692
|
|
122
|
-
bl_ui/properties_material/__init__.pyi,sha256
|
|
122
|
+
bl_ui/properties_material/__init__.pyi,sha256=-HjV_XdTHVZKwFQHXtdMnu_OnrEO4NdpteVJuu2j6I0,95492
|
|
123
123
|
bl_ui/properties_material_gpencil/__init__.pyi,sha256=xmdCb98R6SrcYJRNmW7JPrJXPElhX3SwrqscBedMZWA,62364
|
|
124
124
|
bl_ui/properties_object/__init__.pyi,sha256=kysWM-H-26T3-rWUzjRvAN3TtOiAg_J-vAXKqk92j50,83295
|
|
125
125
|
bl_ui/properties_output/__init__.pyi,sha256=BF7rD4cWL1Nbk_a8iEFPx_faV3H9A19lVYtHdP_7bfc,111028
|
|
@@ -134,7 +134,7 @@ bl_ui/properties_physics_geometry_nodes/__init__.pyi,sha256=QaGQTCKnztnhDl9DqfLI
|
|
|
134
134
|
bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=IyGacMaIGeSu6meRL0qpZaDud59CsWHG7r6h6qLOOLI,47248
|
|
135
135
|
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=9jIKtezQliSi05AHFktWa16_R5rx0fgREjiL08AsNeo,76749
|
|
136
136
|
bl_ui/properties_physics_softbody/__init__.pyi,sha256=U1XVLvmNZ_o83cfaWhEhJNAQvM_AUALsyg__K9M3xB4,88474
|
|
137
|
-
bl_ui/properties_render/__init__.pyi,sha256=
|
|
137
|
+
bl_ui/properties_render/__init__.pyi,sha256=EvDwHQhz1dqQfl5zBPAjXOgxensPB91HQlCL_G443Ds,326071
|
|
138
138
|
bl_ui/properties_scene/__init__.pyi,sha256=FQ6r4yMfVS7MOnr6-38O_T9gS4Yt4OxjnnuOCoJIoUk,88084
|
|
139
139
|
bl_ui/properties_texture/__init__.pyi,sha256=0Kvpv0KhUGLO1Ml6truqbH6SojCsmez8B5zUPjDeC3M,154706
|
|
140
140
|
bl_ui/properties_view_layer/__init__.pyi,sha256=hPFUkazHiq2lNwIUKmEKVONqjJIpy4yBAX15zSg-jzQ,106844
|
|
@@ -157,9 +157,9 @@ bl_ui/space_statusbar/__init__.pyi,sha256=DikCLmwVvl4zIiPNXFjUzj-lDhbWuVpGckVB2a
|
|
|
157
157
|
bl_ui/space_text/__init__.pyi,sha256=hCTnYwgmukIJPL61K-Xxbj-hxhfcix8GY1eaj4yNDZo,112442
|
|
158
158
|
bl_ui/space_time/__init__.pyi,sha256=dAqbg2Kn69tcgRCSxaYfYwW85yfdZHd3hEahxlAF96Q,47995
|
|
159
159
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=sijgTIjKxmAX6tjrXw5rVovjRg6sBNqmz1ub5uvOpg0,5518
|
|
160
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
160
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=OitVNfcbjTodxSQtRe_Gv52fdT5cHFu_ks4rdFd5XaQ,20987
|
|
161
161
|
bl_ui/space_topbar/__init__.pyi,sha256=TVJE7Anw3pxMON--MObiw-7QZqsaK5ZdC_L48csuixs,183036
|
|
162
|
-
bl_ui/space_userpref/__init__.pyi,sha256=
|
|
162
|
+
bl_ui/space_userpref/__init__.pyi,sha256=8M4ZCreQUkizNgnGuw5-8Bltsvx2tOT-b668eLpSGeE,558157
|
|
163
163
|
bl_ui/space_view3d/__init__.pyi,sha256=Wv3kHgRJtly6cwlpq1DOS8atQl60daUKTYGNGgg3Dww,1907258
|
|
164
164
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=_LtAgp-bjFL9mT4XvjiM1FtXYAck-bkcvQv1BHQygR4,621006
|
|
165
165
|
bl_ui/temp_anim_layers/__init__.pyi,sha256=kIO6G4GWKA2L0PUaSYQKXly3palrT9pmyuERzdiR92Y,5930
|
|
@@ -187,7 +187,7 @@ bpy/app/timers/__init__.pyi,sha256=znR1vA30-iBhWyJQ_fl3LaxU1kw23EntQjnMZe3yN-Q,2
|
|
|
187
187
|
bpy/app/translations/__init__.pyi,sha256=6-uDELf7EgPXpuUqLBqzQFoQojoZx7Gse-vVjgZ62eU,6949
|
|
188
188
|
bpy/msgbus/__init__.pyi,sha256=xGJiEgmZabpBe3gibBwTAmv2rpnyed7-VDvzJksj-uI,2692
|
|
189
189
|
bpy/ops/__init__.pyi,sha256=zAzAlBX3UsdWGkrnusYlsvwHylfvlMjyPKYgXpdY4w8,4646
|
|
190
|
-
bpy/ops/action/__init__.pyi,sha256=
|
|
190
|
+
bpy/ops/action/__init__.pyi,sha256=hTxdyiK27AKL2Ed_fmLH8wI938Vmf0NOinBY_0-TU28,23552
|
|
191
191
|
bpy/ops/anim/__init__.pyi,sha256=JQDz8RA7k57rxfJRF4DxWVkVj_I8lUlmZbi9nzT-XUs,30897
|
|
192
192
|
bpy/ops/armature/__init__.pyi,sha256=O3RO-kBoVpHevt0u0TmPxAgARfI_1EiH2ohYY2gJntM,27492
|
|
193
193
|
bpy/ops/asset/__init__.pyi,sha256=8bvMH8UKyHY3fBpOY2JivlAX2pleHaEtNdGb0BVvqZA,11334
|
|
@@ -196,7 +196,7 @@ bpy/ops/brush/__init__.pyi,sha256=JsKa6jORNWGJBpQGMvm3dHZAyVLc_1n5RoQB-PlX910,47
|
|
|
196
196
|
bpy/ops/buttons/__init__.pyi,sha256=ov0QTDYuSvV9IijiGX30FNxunaRCehsbq699vZ_wKZk,9717
|
|
197
197
|
bpy/ops/cachefile/__init__.pyi,sha256=QtMcgk2IdHZ9YpstkOk4OWHHq0ZBZ_iXaUV7mEearPA,9430
|
|
198
198
|
bpy/ops/camera/__init__.pyi,sha256=ZOJ8B31MlfLhrPdYeBTN9_2YN7zmdJBYsvvzWU_qEoI,1785
|
|
199
|
-
bpy/ops/clip/__init__.pyi,sha256=
|
|
199
|
+
bpy/ops/clip/__init__.pyi,sha256=0wI88wa8SS5Qbosp2CDl99YU46inUQHfLF36Y7t_kvw,57857
|
|
200
200
|
bpy/ops/cloth/__init__.pyi,sha256=OLSTBZObXE6CI5D6sKE4l91s5GFXgnSVXDNH1L-Sc2Q,872
|
|
201
201
|
bpy/ops/collection/__init__.pyi,sha256=2aYniiXEhLf9g1sqFidtAoma2Hu7-FEYEfXr8dzRyCg,4622
|
|
202
202
|
bpy/ops/console/__init__.pyi,sha256=JJ3BzTqTPTkj4H2CafZDd06ojauW43TsGCRudMHbsAs,10339
|
|
@@ -214,9 +214,9 @@ bpy/ops/fluid/__init__.pyi,sha256=HdnyYnIfdGBLAt4jwfrrYzclX3acnVy-WqjOWjXNjrI,57
|
|
|
214
214
|
bpy/ops/font/__init__.pyi,sha256=4YuXh-727IWOADXPEqwd1TY9fGPufDl4GHP3pBFX5Mo,17516
|
|
215
215
|
bpy/ops/geometry/__init__.pyi,sha256=TpPKIMdWhQ7NUtKUQE-OTMq8J8AQErxO-Wxpuj3h6UA,6968
|
|
216
216
|
bpy/ops/gizmogroup/__init__.pyi,sha256=fnAUG8GcriyWYEMoNhc8oKO8QJibejBcvhRyfKEZdqs,1681
|
|
217
|
-
bpy/ops/gpencil/__init__.pyi,sha256=
|
|
218
|
-
bpy/ops/graph/__init__.pyi,sha256=
|
|
219
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
217
|
+
bpy/ops/gpencil/__init__.pyi,sha256=8WLqbnLbExrtL0zMJXkEZaK_Y8eFLTqoErSs21j70so,108210
|
|
218
|
+
bpy/ops/graph/__init__.pyi,sha256=0bMJPXqjS09CWghMJYgAt9yuduxf9mcBoelHt1DUIcU,49887
|
|
219
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=60uoyyWuP2g1wopwM7euy0gyo4m0F_O1m0xhaFhbETw,45367
|
|
220
220
|
bpy/ops/image/__init__.pyi,sha256=7jbaJWZkqWsgT01UBiAitkt3jWks3dZT0-9iCT6ECyc,58813
|
|
221
221
|
bpy/ops/import_anim/__init__.pyi,sha256=MM5DninAYOhlSiNLbjTLs9oiFil6EXPwWaxl8d7iCxs,2897
|
|
222
222
|
bpy/ops/import_curve/__init__.pyi,sha256=PTBm4qMGq22n_p2Eh4KXKaK0qZzASKxRjYALBrMfzkY,728
|
|
@@ -224,15 +224,15 @@ bpy/ops/import_scene/__init__.pyi,sha256=gLV3TLRXiYhVx0sRpXjVhEZny6l04rFsQikfxqm
|
|
|
224
224
|
bpy/ops/info/__init__.pyi,sha256=UYnEi0ntqZ-Xh7Y7OY8R0QjCzwGeQuAbq_Ef8Bsy4u4,4190
|
|
225
225
|
bpy/ops/lattice/__init__.pyi,sha256=hmHRiqQiQLvVzndcY0mka7a_DnqiLbnIH6o7-v2KLpU,4673
|
|
226
226
|
bpy/ops/marker/__init__.pyi,sha256=Spi0sXPqw7M9X5cDvwNK41xZ_CR91v4Vtu5BK5E-Nl4,7023
|
|
227
|
-
bpy/ops/mask/__init__.pyi,sha256=
|
|
227
|
+
bpy/ops/mask/__init__.pyi,sha256=s_IQTpeFwzrcMjCSk4kEXNTIFRratBxvypOPbrHFnpQ,23140
|
|
228
228
|
bpy/ops/material/__init__.pyi,sha256=yeGiebl7idr04qyz3aATb9y7urCjLHAW6tzAeFtVhSw,1282
|
|
229
229
|
bpy/ops/mball/__init__.pyi,sha256=R7eLNlGqBlc1vIj8tpgQD04CWZL8kZWwhxSQIEGvFkQ,5251
|
|
230
230
|
bpy/ops/mesh/__init__.pyi,sha256=K8tOXM89pYfu0wLf0dGAZ3G9Qumn0s-bn4Zrg70-r2o,149823
|
|
231
231
|
bpy/ops/nla/__init__.pyi,sha256=y2AUSKFNNdfYC-APzC0gAvHe43b5_rM1naccnffyZOk,24040
|
|
232
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
232
|
+
bpy/ops/node/__init__.pyi,sha256=jkqca0jFsblxvrTxERQOS_9eBlxnGQeU6fndcZlA9FU,63882
|
|
233
233
|
bpy/ops/object/__init__.pyi,sha256=0Juk3fO87-TDuOdqBxuVQkHuqnznBZL9WoeeoKsEPyg,201719
|
|
234
234
|
bpy/ops/outliner/__init__.pyi,sha256=W9w19jcTYsfqwjtOrwEKKKO8HbFhJ6vGosyBWBG3vjg,37559
|
|
235
|
-
bpy/ops/paint/__init__.pyi,sha256=
|
|
235
|
+
bpy/ops/paint/__init__.pyi,sha256=54zd0o8U3XswtVqtqpx5FuEDWsaBFndi_o1Q2p8HgWk,44819
|
|
236
236
|
bpy/ops/paintcurve/__init__.pyi,sha256=XQNtu2FJWHYe38EEzz12tCIa72ZU_lVd0MfsqHme5rU,4401
|
|
237
237
|
bpy/ops/palette/__init__.pyi,sha256=Z4a_r8e6I9cLvTNP6kU2hMAqHwMOhfIDkneB61Xr1X0,3202
|
|
238
238
|
bpy/ops/particle/__init__.pyi,sha256=eDgphbOXh2F7BRSiUviWh1dZ7G3q4oKLzLjg-zrYoD8,19005
|
|
@@ -240,14 +240,14 @@ bpy/ops/pose/__init__.pyi,sha256=SlbrxqZDdixbDOQyrPtJO86oentsbA03LJixduIBA8Q,279
|
|
|
240
240
|
bpy/ops/poselib/__init__.pyi,sha256=gHsSiOhCa9WRkGqtFN1Y0q8voWy6PX6UrV1n-kJj5m0,5399
|
|
241
241
|
bpy/ops/preferences/__init__.pyi,sha256=kma1fyqEfKciSYx4jRLYU3JERD2p3I2jWBYQM4D5Vv0,24947
|
|
242
242
|
bpy/ops/ptcache/__init__.pyi,sha256=We9pFqN8F0zZEmUuvamkJ1n3gbkj2k0HaF5TOR4LCWc,2942
|
|
243
|
-
bpy/ops/render/__init__.pyi,sha256=
|
|
243
|
+
bpy/ops/render/__init__.pyi,sha256=uQzTjJHpfngdwI3Q9MnPvGJakfa-mAxrMYqR4VPlgd8,9489
|
|
244
244
|
bpy/ops/rigidbody/__init__.pyi,sha256=90xMpLT2HRqIXckVobqfMzVfqoeUFk6HGgUwnaKM9UU,8099
|
|
245
245
|
bpy/ops/scene/__init__.pyi,sha256=Dzn0IrZBoCJ_SUZnE4Zd-HAwM-kk8wSIdOEhcLuvaxU,18999
|
|
246
246
|
bpy/ops/screen/__init__.pyi,sha256=j5jJAFmo2phElz0qijZaNumcZ_Sw-pQXBIu2mV2nHO0,25586
|
|
247
247
|
bpy/ops/script/__init__.pyi,sha256=K-vL8vwaxfQtnR0LbGUc4cm1hwlgApqeAgjymeSVomk,1555
|
|
248
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
248
|
+
bpy/ops/sculpt/__init__.pyi,sha256=NKKtvhherhRaKatlsrq-pylNPXTy2jVFeSE3nLzcZI4,46816
|
|
249
249
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=9bNJlr2-o5IiIxUD4KpX-xruB2nPNSYnRtDyl9_U9dU,3242
|
|
250
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
250
|
+
bpy/ops/sequencer/__init__.pyi,sha256=cOO4pdSIHeuwt4IKhvivw_DIb4ICB20gvn7vpXxTbfk,81720
|
|
251
251
|
bpy/ops/sound/__init__.pyi,sha256=rMvT3dhYxci0ERVJDfpzpl0opyBAIOouOWutdboHd24,16193
|
|
252
252
|
bpy/ops/spreadsheet/__init__.pyi,sha256=T1_dz3m3olt7JD4z1DNj6Q0vTaokK-cTXvEAHaPIci0,2107
|
|
253
253
|
bpy/ops/surface/__init__.pyi,sha256=ryL8yY1Y0p9nan0jNURAjwiQFgEYrGWC6h1MI2Dd50w,10928
|
|
@@ -255,18 +255,18 @@ bpy/ops/text/__init__.pyi,sha256=JrfKPjfBlnbSBHYWgAQ_bro3IEzo46HScVItLHjtPRA,261
|
|
|
255
255
|
bpy/ops/text_editor/__init__.pyi,sha256=9qakI_KTJfRNvxJAahgStlkzl6q4T3misu1SS1uACgo,878
|
|
256
256
|
bpy/ops/texture/__init__.pyi,sha256=Koqx3eyK_gvXlVbwfL2YN9lU_I3T-jt4N846YuDjsNs,1765
|
|
257
257
|
bpy/ops/transform/__init__.pyi,sha256=TbvRLuzePxhb9ZojIBQUYuPDB_xNPdOQ7frBVPboNYA,59429
|
|
258
|
-
bpy/ops/ui/__init__.pyi,sha256=
|
|
258
|
+
bpy/ops/ui/__init__.pyi,sha256=pU2-Esor4Vkz72LmYDXx0hjZGUQur1Ee3555IuV5w_Y,16778
|
|
259
259
|
bpy/ops/uilist/__init__.pyi,sha256=z0VKr_F-5Ti6hpaLe1ZeYSFR6KuxuWUWPDIoRvkJ7sU,2132
|
|
260
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
260
|
+
bpy/ops/uv/__init__.pyi,sha256=qMudaigvfyQVSE7rB4ZbPOxWJdudOMSaHQkZZoo_fUk,48952
|
|
261
261
|
bpy/ops/view2d/__init__.pyi,sha256=65lZteRvd3dumc8k_2_SNZxyuT5kczgyIKmvC1cXd_E,9331
|
|
262
|
-
bpy/ops/view3d/__init__.pyi,sha256=
|
|
262
|
+
bpy/ops/view3d/__init__.pyi,sha256=mHv6PUKP1sEQ0TBPOReLQ1XiiSIUXNyDNRo1m3EUE-E,40582
|
|
263
263
|
bpy/ops/wm/__init__.pyi,sha256=Ijv0i75gRiLKtJ0yoHQyvBf2SgVjgz8MGxsVGob8gmg,214906
|
|
264
264
|
bpy/ops/workspace/__init__.pyi,sha256=F2V6EPwYMrOdtpEoCLHOCk2m8KMdTkcHqO2aEVxcg1g,3264
|
|
265
265
|
bpy/ops/world/__init__.pyi,sha256=imGbkOZ4Z_mNMwg2TwfpPf1DeGiige4UE-vc9991_tk,1032
|
|
266
266
|
bpy/path/__init__.pyi,sha256=_sJAmwZHhmcIXbchob_87KT_Nyv6R_qrX76gy9IbDRk,11515
|
|
267
267
|
bpy/props/__init__.pyi,sha256=vJGG9vmfN5MAwjlFMyI6LxKNJAIzPrhgWA4bPz08dQY,29550
|
|
268
|
-
bpy/types/__init__.pyi,sha256=
|
|
269
|
-
bpy/utils/__init__.pyi,sha256=
|
|
268
|
+
bpy/types/__init__.pyi,sha256=BOaeqezRC_m00J3mHEq9adTS0d5T_Lhzu8t8_WLPytk,5210350
|
|
269
|
+
bpy/utils/__init__.pyi,sha256=u27SmrQE6At5bOTU-lCuwbT82HCj_lPAvs5QHnlGGY4,19071
|
|
270
270
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
271
271
|
bpy/utils/units/__init__.pyi,sha256=VVDH7jM3nup8W0XuPIQ0G3TdWN82Ufaw-Rk5JTHVU60,2694
|
|
272
272
|
bpy_extras/__init__.pyi,sha256=mSQGV3OnBDLrI9Bur-VUrKNXrE7dQbDDnQwb40kdi5I,862
|
|
@@ -347,11 +347,11 @@ rna_keymap_ui/__init__.pyi,sha256=m2tpKH0fJWOTdfK5sLPR0wsLyeDjw33_x6KB19Nk1-M,48
|
|
|
347
347
|
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
348
|
rna_prop_ui/__init__.pyi,sha256=CLmjcUFh0nPEQlb9MrB1lILwaWq1jyrZkZUgidY0bl4,1356
|
|
349
349
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
|
-
rna_xml/__init__.pyi,sha256=
|
|
350
|
+
rna_xml/__init__.pyi,sha256=DggMfFZZ2UqOHPcPNpvMOFDSBGUnCegQxcljQIknRNs,639
|
|
351
351
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
352
|
sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
|
|
353
353
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
|
-
fake_bpy_module-
|
|
355
|
-
fake_bpy_module-
|
|
356
|
-
fake_bpy_module-
|
|
357
|
-
fake_bpy_module-
|
|
354
|
+
fake_bpy_module-20240628.dist-info/METADATA,sha256=pdZPUXKveZdo5Ihuw8YLuykWbgdwT5LFm-cnv-3O8Bw,7194
|
|
355
|
+
fake_bpy_module-20240628.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
356
|
+
fake_bpy_module-20240628.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
357
|
+
fake_bpy_module-20240628.dist-info/RECORD,,
|
rna_xml/__init__.pyi
CHANGED
|
@@ -18,6 +18,6 @@ def rna2xml(
|
|
|
18
18
|
pretty_format=True,
|
|
19
19
|
method="DATA",
|
|
20
20
|
): ...
|
|
21
|
-
def xml2rna(root_xml, root_rna=None): ...
|
|
22
|
-
def xml_file_run(context, filepath, rna_map): ...
|
|
21
|
+
def xml2rna(root_xml, root_rna=None, secure_types=None): ...
|
|
22
|
+
def xml_file_run(context, filepath, rna_map, secure_types=None): ...
|
|
23
23
|
def xml_file_write(context, filepath, rna_map, skip_typemap=None): ...
|
|
File without changes
|
|
File without changes
|