fake-bpy-module-latest 20260117__py3-none-any.whl → 20260118__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/grease_pencil/__init__.pyi +20 -4
- bpy/ops/paint/__init__.pyi +15 -3
- bpy/ops/sculpt/__init__.pyi +5 -1
- bpy/ops/sculpt_curves/__init__.pyi +5 -1
- {fake_bpy_module_latest-20260117.dist-info → fake_bpy_module_latest-20260118.dist-info}/METADATA +1 -1
- {fake_bpy_module_latest-20260117.dist-info → fake_bpy_module_latest-20260118.dist-info}/RECORD +8 -8
- {fake_bpy_module_latest-20260117.dist-info → fake_bpy_module_latest-20260118.dist-info}/WHEEL +0 -0
- {fake_bpy_module_latest-20260117.dist-info → fake_bpy_module_latest-20260118.dist-info}/top_level.txt +0 -0
|
@@ -66,7 +66,8 @@ def brush_stroke(
|
|
|
66
66
|
*,
|
|
67
67
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
68
68
|
| None = None,
|
|
69
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
69
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
70
|
+
| None = "NORMAL",
|
|
70
71
|
pen_flip: bool | None = False,
|
|
71
72
|
) -> None:
|
|
72
73
|
"""Draw a new stroke in the active Grease Pencil object
|
|
@@ -85,6 +86,9 @@ def brush_stroke(
|
|
|
85
86
|
|
|
86
87
|
ERASE
|
|
87
88
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
89
|
+
|
|
90
|
+
MASK
|
|
91
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
88
92
|
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
89
93
|
"""
|
|
90
94
|
|
|
@@ -1042,7 +1046,8 @@ def sculpt_paint(
|
|
|
1042
1046
|
*,
|
|
1043
1047
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
1044
1048
|
| None = None,
|
|
1045
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
1049
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
1050
|
+
| None = "NORMAL",
|
|
1046
1051
|
pen_flip: bool | None = False,
|
|
1047
1052
|
) -> None:
|
|
1048
1053
|
"""Sculpt strokes in the active Grease Pencil object
|
|
@@ -1061,6 +1066,9 @@ def sculpt_paint(
|
|
|
1061
1066
|
|
|
1062
1067
|
ERASE
|
|
1063
1068
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
1069
|
+
|
|
1070
|
+
MASK
|
|
1071
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
1064
1072
|
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
1065
1073
|
"""
|
|
1066
1074
|
|
|
@@ -1600,7 +1608,8 @@ def vertex_brush_stroke(
|
|
|
1600
1608
|
*,
|
|
1601
1609
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
1602
1610
|
| None = None,
|
|
1603
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
1611
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
1612
|
+
| None = "NORMAL",
|
|
1604
1613
|
pen_flip: bool | None = False,
|
|
1605
1614
|
) -> None:
|
|
1606
1615
|
"""Draw on vertex colors in the active Grease Pencil object
|
|
@@ -1619,6 +1628,9 @@ def vertex_brush_stroke(
|
|
|
1619
1628
|
|
|
1620
1629
|
ERASE
|
|
1621
1630
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
1631
|
+
|
|
1632
|
+
MASK
|
|
1633
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
1622
1634
|
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
1623
1635
|
"""
|
|
1624
1636
|
|
|
@@ -1750,7 +1762,8 @@ def weight_brush_stroke(
|
|
|
1750
1762
|
*,
|
|
1751
1763
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
1752
1764
|
| None = None,
|
|
1753
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
1765
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
1766
|
+
| None = "NORMAL",
|
|
1754
1767
|
pen_flip: bool | None = False,
|
|
1755
1768
|
) -> None:
|
|
1756
1769
|
"""Draw weight on stroke points in the active Grease Pencil object
|
|
@@ -1769,6 +1782,9 @@ def weight_brush_stroke(
|
|
|
1769
1782
|
|
|
1770
1783
|
ERASE
|
|
1771
1784
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
1785
|
+
|
|
1786
|
+
MASK
|
|
1787
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
1772
1788
|
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
1773
1789
|
"""
|
|
1774
1790
|
|
bpy/ops/paint/__init__.pyi
CHANGED
|
@@ -381,7 +381,8 @@ def image_paint(
|
|
|
381
381
|
*,
|
|
382
382
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
383
383
|
| None = None,
|
|
384
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
384
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
385
|
+
| None = "NORMAL",
|
|
385
386
|
pen_flip: bool | None = False,
|
|
386
387
|
) -> None:
|
|
387
388
|
"""Paint a stroke into the image
|
|
@@ -400,6 +401,9 @@ def image_paint(
|
|
|
400
401
|
|
|
401
402
|
ERASE
|
|
402
403
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
404
|
+
|
|
405
|
+
MASK
|
|
406
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
403
407
|
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
404
408
|
"""
|
|
405
409
|
|
|
@@ -792,7 +796,8 @@ def vertex_paint(
|
|
|
792
796
|
*,
|
|
793
797
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
794
798
|
| None = None,
|
|
795
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
799
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
800
|
+
| None = "NORMAL",
|
|
796
801
|
pen_flip: bool | None = False,
|
|
797
802
|
override_location: bool | None = False,
|
|
798
803
|
) -> None:
|
|
@@ -812,6 +817,9 @@ def vertex_paint(
|
|
|
812
817
|
|
|
813
818
|
ERASE
|
|
814
819
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
820
|
+
|
|
821
|
+
MASK
|
|
822
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
815
823
|
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
816
824
|
:param override_location: Override Location, Override the given "location" array by recalculating object space positions from the provided "mouse_event" positions
|
|
817
825
|
"""
|
|
@@ -901,7 +909,8 @@ def weight_paint(
|
|
|
901
909
|
*,
|
|
902
910
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
903
911
|
| None = None,
|
|
904
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
912
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
913
|
+
| None = "NORMAL",
|
|
905
914
|
pen_flip: bool | None = False,
|
|
906
915
|
override_location: bool | None = False,
|
|
907
916
|
) -> None:
|
|
@@ -921,6 +930,9 @@ def weight_paint(
|
|
|
921
930
|
|
|
922
931
|
ERASE
|
|
923
932
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
933
|
+
|
|
934
|
+
MASK
|
|
935
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
924
936
|
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
925
937
|
:param override_location: Override Location, Override the given "location" array by recalculating object space positions from the provided "mouse_event" positions
|
|
926
938
|
"""
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -12,7 +12,8 @@ def brush_stroke(
|
|
|
12
12
|
*,
|
|
13
13
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
14
14
|
| None = None,
|
|
15
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
15
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
16
|
+
| None = "NORMAL",
|
|
16
17
|
pen_flip: bool | None = False,
|
|
17
18
|
override_location: bool | None = False,
|
|
18
19
|
ignore_background_click: bool | None = False,
|
|
@@ -33,6 +34,9 @@ def brush_stroke(
|
|
|
33
34
|
|
|
34
35
|
ERASE
|
|
35
36
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
37
|
+
|
|
38
|
+
MASK
|
|
39
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
36
40
|
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
37
41
|
:param override_location: Override Location, Override the given "location" array by recalculating object space positions from the provided "mouse_event" positions
|
|
38
42
|
:param ignore_background_click: Ignore Background Click, Clicks on the background do not start the stroke
|
|
@@ -11,7 +11,8 @@ def brush_stroke(
|
|
|
11
11
|
*,
|
|
12
12
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
13
13
|
| None = None,
|
|
14
|
-
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"
|
|
14
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE", "MASK"]
|
|
15
|
+
| None = "NORMAL",
|
|
15
16
|
pen_flip: bool | None = False,
|
|
16
17
|
) -> None:
|
|
17
18
|
"""Sculpt curves using a brush
|
|
@@ -30,6 +31,9 @@ def brush_stroke(
|
|
|
30
31
|
|
|
31
32
|
ERASE
|
|
32
33
|
Erase -- Switch brush to erase mode for duration of stroke.
|
|
34
|
+
|
|
35
|
+
MASK
|
|
36
|
+
Mask -- Switch brush to mask mode for duration of stroke.
|
|
33
37
|
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
34
38
|
"""
|
|
35
39
|
|
{fake_bpy_module_latest-20260117.dist-info → fake_bpy_module_latest-20260118.dist-info}/RECORD
RENAMED
|
@@ -261,7 +261,7 @@ bpy/ops/geometry/__init__.pyi,sha256=b80f9JX_UD4IhK_1_axFhrKAn98xgHTELJwIRBU_Hwc
|
|
|
261
261
|
bpy/ops/gizmogroup/__init__.pyi,sha256=mfEyJCn684c9TchOJwhgWN7YPSsahywqmxrWMUT8kKM,999
|
|
262
262
|
bpy/ops/gpencil/__init__.pyi,sha256=XM07ORfWuOrU1QxEYGq8e_i0S77zCZfZcBVO0xsHs28,3596
|
|
263
263
|
bpy/ops/graph/__init__.pyi,sha256=50X5j7x-Hmr4yGXn31Y33nnwxBOq-vuyZ9MJp6IhmQ4,32430
|
|
264
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
264
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=agQZwfRlgi7Fmd2lTcBLjUoktFY-HET_rjYFPAs5IAs,51390
|
|
265
265
|
bpy/ops/image/__init__.pyi,sha256=rIipwh26ZdR2wsVQujtJzm3EO917q7BrqtMILeaix58,37003
|
|
266
266
|
bpy/ops/import_anim/__init__.pyi,sha256=sfh2i6scbkcTW6yLaptXvt-9v9Wv6aLzG8smWj7WsYk,2364
|
|
267
267
|
bpy/ops/import_curve/__init__.pyi,sha256=_AIT_Xmc_lIS8VGNrRxco4GjFV9iXWEB2X902_FHuP0,592
|
|
@@ -277,7 +277,7 @@ bpy/ops/nla/__init__.pyi,sha256=BKhMtxIO-S1uvKYDWWGtkdImtHOkh0vuMCQPXU-DMHo,1393
|
|
|
277
277
|
bpy/ops/node/__init__.pyi,sha256=rUizTh9YyCl9SkT_m3d03ynO8_no3Jb-R_RI8CaBMWY,60945
|
|
278
278
|
bpy/ops/object/__init__.pyi,sha256=lUwpGFhl51RMdrpWuEHxl9_L3hyt6ucPVnPFriHvec0,132838
|
|
279
279
|
bpy/ops/outliner/__init__.pyi,sha256=9WpptES8EMwCnQOqrTntIcr31HhlN-n_5UqjeBKT0Mg,21357
|
|
280
|
-
bpy/ops/paint/__init__.pyi,sha256=
|
|
280
|
+
bpy/ops/paint/__init__.pyi,sha256=zQnoT91nKThhV5wWb3THhe_mv8RrEMHY-X9tbRBI0Hs,28364
|
|
281
281
|
bpy/ops/paintcurve/__init__.pyi,sha256=YC6tSOp62YNPX_SpgZFCcthR7lZC0CYEdRWonEKnNEs,2198
|
|
282
282
|
bpy/ops/palette/__init__.pyi,sha256=jAl22wlshj9D8HU97etN6o7-OoiIV2m7VHf6XTp1DZ8,1519
|
|
283
283
|
bpy/ops/particle/__init__.pyi,sha256=bQAY27lzTiJuuM2KLKPUF0wEs5AwwjVGGYgsMJU1ogA,10397
|
|
@@ -291,8 +291,8 @@ bpy/ops/rigidbody/__init__.pyi,sha256=Jiz2mEGjhBz81pScUCxDhYZnUMS4V-jE1egwXaPZt8
|
|
|
291
291
|
bpy/ops/scene/__init__.pyi,sha256=XavOXgbmkjXG88nlezdGlmVYZKutQtQ9Eyo9Xj2nvjw,11345
|
|
292
292
|
bpy/ops/screen/__init__.pyi,sha256=nxBCgAWjhvmIzWV2YX3-sA5mYfVbKtCp_Ks5ckEfdzU,14751
|
|
293
293
|
bpy/ops/script/__init__.pyi,sha256=pNn6soV2lzLLhd_Vv8eLMN29xcB9FjO26KnED8eNtsw,744
|
|
294
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
295
|
-
bpy/ops/sculpt_curves/__init__.pyi,sha256=
|
|
294
|
+
bpy/ops/sculpt/__init__.pyi,sha256=werC4N7MvugRn9th8_5uyWCsOqgdA-tdGeNM1ACQMdg,39050
|
|
295
|
+
bpy/ops/sculpt_curves/__init__.pyi,sha256=sh8zB-IwPziqpTQnSyD4XFmi7Uzk41BzpTwrAShAuZU,2290
|
|
296
296
|
bpy/ops/sequencer/__init__.pyi,sha256=ZGeeQMFypZw2IwIFaPNxa5bXZYtX1PlxwmuOYRpMaU4,69053
|
|
297
297
|
bpy/ops/sound/__init__.pyi,sha256=BDCShvaNarTBtccMKcM4vjyH23Ckbdm5qmALZ86imoQ,12269
|
|
298
298
|
bpy/ops/spreadsheet/__init__.pyi,sha256=bgeQpsv3OQVezKJS6o-_B9s9Iy0WwHmkrfgXwX85Eqw,1518
|
|
@@ -379,7 +379,7 @@ rna_keymap_ui/__init__.pyi,sha256=HjNXbu5w-94HLbvVQlEWXV3JVrgWpNz9jiJ3mzGMCNg,48
|
|
|
379
379
|
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
380
380
|
rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
381
381
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
382
|
-
fake_bpy_module_latest-
|
|
383
|
-
fake_bpy_module_latest-
|
|
384
|
-
fake_bpy_module_latest-
|
|
385
|
-
fake_bpy_module_latest-
|
|
382
|
+
fake_bpy_module_latest-20260118.dist-info/METADATA,sha256=g0jbreWMGaAvgWCyp5f_phHHHApmVE61J_N9ikj8j7E,7739
|
|
383
|
+
fake_bpy_module_latest-20260118.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
384
|
+
fake_bpy_module_latest-20260118.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
|
|
385
|
+
fake_bpy_module_latest-20260118.dist-info/RECORD,,
|
{fake_bpy_module_latest-20260117.dist-info → fake_bpy_module_latest-20260118.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|