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

@@ -79,6 +79,7 @@ def brush_stroke(
79
79
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
80
80
  | None = None,
81
81
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
82
+ pen_flip: bool | None = False,
82
83
  ):
83
84
  """Draw a new stroke in the active Grease Pencil object
84
85
 
@@ -101,6 +102,8 @@ def brush_stroke(
101
102
  ERASE
102
103
  Erase -- Switch brush to erase mode for duration of stroke.
103
104
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
105
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
106
+ :type pen_flip: bool | None
104
107
  """
105
108
 
106
109
  def caps_set(
@@ -1195,6 +1198,7 @@ def sculpt_paint(
1195
1198
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1196
1199
  | None = None,
1197
1200
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
1201
+ pen_flip: bool | None = False,
1198
1202
  ):
1199
1203
  """Sculpt strokes in the active Grease Pencil object
1200
1204
 
@@ -1217,6 +1221,8 @@ def sculpt_paint(
1217
1221
  ERASE
1218
1222
  Erase -- Switch brush to erase mode for duration of stroke.
1219
1223
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
1224
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
1225
+ :type pen_flip: bool | None
1220
1226
  """
1221
1227
 
1222
1228
  def sculptmode_toggle(
@@ -1853,6 +1859,7 @@ def vertex_brush_stroke(
1853
1859
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1854
1860
  | None = None,
1855
1861
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
1862
+ pen_flip: bool | None = False,
1856
1863
  ):
1857
1864
  """Draw on vertex colors in the active Grease Pencil object
1858
1865
 
@@ -1875,6 +1882,8 @@ def vertex_brush_stroke(
1875
1882
  ERASE
1876
1883
  Erase -- Switch brush to erase mode for duration of stroke.
1877
1884
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
1885
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
1886
+ :type pen_flip: bool | None
1878
1887
  """
1879
1888
 
1880
1889
  def vertex_color_brightness_contrast(
@@ -2052,6 +2061,7 @@ def weight_brush_stroke(
2052
2061
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
2053
2062
  | None = None,
2054
2063
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
2064
+ pen_flip: bool | None = False,
2055
2065
  ):
2056
2066
  """Draw weight on stroke points in the active Grease Pencil object
2057
2067
 
@@ -2074,6 +2084,8 @@ def weight_brush_stroke(
2074
2084
  ERASE
2075
2085
  Erase -- Switch brush to erase mode for duration of stroke.
2076
2086
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
2087
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
2088
+ :type pen_flip: bool | None
2077
2089
  """
2078
2090
 
2079
2091
  def weight_invert(
@@ -494,6 +494,7 @@ def image_paint(
494
494
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
495
495
  | None = None,
496
496
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
497
+ pen_flip: bool | None = False,
497
498
  ):
498
499
  """Paint a stroke into the image
499
500
 
@@ -516,6 +517,8 @@ def image_paint(
516
517
  ERASE
517
518
  Erase -- Switch brush to erase mode for duration of stroke.
518
519
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
520
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
521
+ :type pen_flip: bool | None
519
522
  """
520
523
 
521
524
  def mask_box_gesture(
@@ -1042,6 +1045,7 @@ def vertex_paint(
1042
1045
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1043
1046
  | None = None,
1044
1047
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
1048
+ pen_flip: bool | None = False,
1045
1049
  ):
1046
1050
  """Paint a stroke in the active color attribute layer
1047
1051
 
@@ -1064,6 +1068,8 @@ def vertex_paint(
1064
1068
  ERASE
1065
1069
  Erase -- Switch brush to erase mode for duration of stroke.
1066
1070
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
1071
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
1072
+ :type pen_flip: bool | None
1067
1073
  """
1068
1074
 
1069
1075
  def vertex_paint_toggle(
@@ -1182,6 +1188,7 @@ def weight_paint(
1182
1188
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1183
1189
  | None = None,
1184
1190
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
1191
+ pen_flip: bool | None = False,
1185
1192
  ):
1186
1193
  """Paint a stroke in the current vertex group's weights
1187
1194
 
@@ -1204,6 +1211,8 @@ def weight_paint(
1204
1211
  ERASE
1205
1212
  Erase -- Switch brush to erase mode for duration of stroke.
1206
1213
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
1214
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
1215
+ :type pen_flip: bool | None
1207
1216
  """
1208
1217
 
1209
1218
  def weight_paint_toggle(
@@ -12,6 +12,7 @@ def brush_stroke(
12
12
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
13
13
  | None = None,
14
14
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
15
+ pen_flip: bool | None = False,
15
16
  ignore_background_click: bool | None = False,
16
17
  ):
17
18
  """Sculpt a stroke into the geometry
@@ -35,6 +36,8 @@ def brush_stroke(
35
36
  ERASE
36
37
  Erase -- Switch brush to erase mode for duration of stroke.
37
38
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
39
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
40
+ :type pen_flip: bool | None
38
41
  :param ignore_background_click: Ignore Background Click, Clicks on the background do not start the stroke
39
42
  :type ignore_background_click: bool | None
40
43
  """
@@ -11,6 +11,7 @@ def brush_stroke(
11
11
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
12
12
  | None = None,
13
13
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
14
+ pen_flip: bool | None = False,
14
15
  ):
15
16
  """Sculpt curves using a brush
16
17
 
@@ -33,6 +34,8 @@ def brush_stroke(
33
34
  ERASE
34
35
  Erase -- Switch brush to erase mode for duration of stroke.
35
36
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
37
+ :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
38
+ :type pen_flip: bool | None
36
39
  """
37
40
 
38
41
  def min_distance_edit(
bpy/types/__init__.pyi CHANGED
@@ -185114,12 +185114,6 @@ class OperatorStrokeElement(PropertyGroup, bpy_struct):
185114
185114
  :type: mathutils.Vector
185115
185115
  """
185116
185116
 
185117
- pen_flip: bool
185118
- """
185119
-
185120
- :type: bool
185121
- """
185122
-
185123
185117
  pressure: float
185124
185118
  """ Tablet pressure
185125
185119
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241101
3
+ Version: 20241102
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
@@ -226,7 +226,7 @@ bpy/ops/geometry/__init__.pyi,sha256=Ix8MGXa5gZBQT3aWGmDfrKPx-MTtmloRflfwiHicuTU
226
226
  bpy/ops/gizmogroup/__init__.pyi,sha256=OFN5NNvr_HFc_L7pvjSWKY_D8nF2_Ue8z6nGjB-_xac,1595
227
227
  bpy/ops/gpencil/__init__.pyi,sha256=xef0m8m4jVKzqncUi9CezsXgqES8iAYJzcEKtDfTXTY,6112
228
228
  bpy/ops/graph/__init__.pyi,sha256=My3PsXepSrn3TGQ7ePFoYML5sjzTp8LRqsPqqng7iak,51523
229
- bpy/ops/grease_pencil/__init__.pyi,sha256=gEODEiBglzLM1kzQFtZs8mJnyNJqa5UJqIkdHMQp2Io,74847
229
+ bpy/ops/grease_pencil/__init__.pyi,sha256=NG1Y5CtzffemN3i9cuEnZ3drH9cRuw3BkZ40D2YKes8,75451
230
230
  bpy/ops/image/__init__.pyi,sha256=SUn2SBcvRXEHMizauJfTVFY8KBvXV_7M2meGZDxEDu8,59838
231
231
  bpy/ops/import_anim/__init__.pyi,sha256=7BExOyxBpXdbfQQN_foBI0FIfqHte9U1nfWEvNKYH0Y,3216
232
232
  bpy/ops/import_curve/__init__.pyi,sha256=U3eiL0CsWblWZe8O58JOxSXhr2sgHRHKwVzozIMsck4,651
@@ -242,7 +242,7 @@ bpy/ops/nla/__init__.pyi,sha256=uhpT_iNKbnI3zN0dI3_w4ZuEeBSGy_2Z4eUsTTj3z48,2422
242
242
  bpy/ops/node/__init__.pyi,sha256=aOidac9kvo9PjUrMTjj-sOfw4DHfITAzolQnooGBasY,70002
243
243
  bpy/ops/object/__init__.pyi,sha256=MqOYdgZX0qg902__kBnVzSiqrflk8pXi3NVsZIAKXsg,203902
244
244
  bpy/ops/outliner/__init__.pyi,sha256=o5OxwPlRmadDEhvCUSmt8u1aJ8euFSCV-UYCknYymdI,38952
245
- bpy/ops/paint/__init__.pyi,sha256=CwUI97PIYq0-IiQu9oZBP1cvc62P4wSTDyPbnILs5EI,44921
245
+ bpy/ops/paint/__init__.pyi,sha256=pQMeTzBorVwDl91GGw5qtqaWENmy-6HuRHYiGY7ZW8Y,45374
246
246
  bpy/ops/paintcurve/__init__.pyi,sha256=ej9Ou29-VVY4oHCAsSmdBtOjcO0ZQpQdsBSzfDKYMJw,4261
247
247
  bpy/ops/palette/__init__.pyi,sha256=gahGTlUFZDjuWskmV4VwIEtBlBkAAP78lFdypwqEoi4,3207
248
248
  bpy/ops/particle/__init__.pyi,sha256=z5f5lpxFIGleBDvEAL3Sd8M07g4kw3nFkqE3OfJlo0U,19162
@@ -255,8 +255,8 @@ bpy/ops/rigidbody/__init__.pyi,sha256=kH3fZft8NevNiVP44o_RMGUqx0bj4e1k3ADbJYM3_9
255
255
  bpy/ops/scene/__init__.pyi,sha256=ZCDXo6ygGlCoFNgXs5BixfFTalKQJk48Tn5JKFK4EN4,19445
256
256
  bpy/ops/screen/__init__.pyi,sha256=brjCQalre8Km7BxXPI6t0j3NBggA1IrsiOwNZ9AmhKc,26004
257
257
  bpy/ops/script/__init__.pyi,sha256=qJGs4LY_-NgCKFwGkOBwvig0LFr5v72A9nL-LQ21HrY,1460
258
- bpy/ops/sculpt/__init__.pyi,sha256=rx6Cwe39UDt57ekD4u3CsfjrbBIGmGxNGHY7I4St0zg,52342
259
- bpy/ops/sculpt_curves/__init__.pyi,sha256=h9WZL7nJe6THcD9vxr7_qxeHb3s9dLuE-GSqd5s8dac,3310
258
+ bpy/ops/sculpt/__init__.pyi,sha256=AqO49L2EOUpUl-jJLNSsUcxu33hdALWR-skG7Ng4_T4,52493
259
+ bpy/ops/sculpt_curves/__init__.pyi,sha256=dyJOC29OHfquU-sfY9onBzJfAykEmiugfIPF-oO7ENU,3461
260
260
  bpy/ops/sequencer/__init__.pyi,sha256=a1_1eXcMXM_zWE3qzIM8dLXZ1MUF3fZYfRFA8KJsiso,87721
261
261
  bpy/ops/sound/__init__.pyi,sha256=4j-hBCD71S55-TJ9r6307tdu4s_VRLhq_RdpdgXbako,17940
262
262
  bpy/ops/spreadsheet/__init__.pyi,sha256=Nmr0N99wGYPusUlQC4WGJf2E3WETSGDLjnyGZ9yHQUc,2003
@@ -275,7 +275,7 @@ bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJ
275
275
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
276
276
  bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
277
277
  bpy/props/__init__.pyi,sha256=eVVh1KTFtNf6c-4uSWt4wANzTv1RvN2I2FQ7ewdrKCQ,31045
278
- bpy/types/__init__.pyi,sha256=txsnMJ_DoZFVEjauZXP9m1D64AnKVTlksn2WQbb3tOw,5367018
278
+ bpy/types/__init__.pyi,sha256=QR0sWQt87id3WNSv_d3PRTchQoHgItq_alXK0QmMtuM,5366964
279
279
  bpy/typing/__init__.pyi,sha256=cQWf5y7fGG52KM_nXbabxyJ3ZnodweLz91nB4tvqBTU,138751
280
280
  bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
281
281
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
@@ -311,7 +311,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
311
311
  freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
312
312
  freestyle/shaders/__init__.pyi,sha256=1Ov48B4P7LV3dwjBqHqqqbPFRBZWjENqIDaFb97Qdj0,23835
313
313
  freestyle/types/__init__.pyi,sha256=NkyVRi0oSwC1hAVdFnytoMnluE6T2W4tyx73CMwYnRo,99019
314
- freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
314
+ freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
315
315
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=uPNpwsSaqruftJiGu-P0a3YrjEkE4vLigWGh0Lvrtx4,3405
316
316
  gpu/__init__.pyi,sha256=vySMnQlOzFH_SMmm7p86InVADL4-y4m5_8wTYtYOLPo,7975
317
317
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
358
358
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
359
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
360
360
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- fake_bpy_module-20241101.dist-info/METADATA,sha256=THnyYUIX2mzSij_1qhVhb9aS1HrlcwC7ZxEP2YeCi4s,7289
362
- fake_bpy_module-20241101.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
363
- fake_bpy_module-20241101.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
- fake_bpy_module-20241101.dist-info/RECORD,,
361
+ fake_bpy_module-20241102.dist-info/METADATA,sha256=BV9tawRB3wYYTFsHvd7-WgJTP4V1I-yHnFfPnifZao4,7289
362
+ fake_bpy_module-20241102.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
363
+ fake_bpy_module-20241102.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
+ fake_bpy_module-20241102.dist-info/RECORD,,
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
124
124
  """get the diffuse RGBA color from an FEdge"""
125
125
 
126
126
  def normal_at_I0D(it): ...
127
- def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
127
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):