fake-bpy-module 20240628__py3-none-any.whl → 20240630__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_internal/__init__.pyi +1 -0
- bpy/ops/sequencer/__init__.pyi +14 -3
- bpy/types/__init__.pyi +18 -0
- bpy_extras/__init__.pyi +0 -1
- {fake_bpy_module-20240628.dist-info → fake_bpy_module-20240630.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240628.dist-info → fake_bpy_module-20240630.dist-info}/RECORD +10 -10
- {bpy_extras → _bpy_internal}/extensions/__init__.pyi +0 -0
- {bpy_extras → _bpy_internal}/extensions/junction_module/__init__.pyi +0 -0
- {fake_bpy_module-20240628.dist-info → fake_bpy_module-20240630.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240628.dist-info → fake_bpy_module-20240630.dist-info}/top_level.txt +0 -0
_bpy_internal/__init__.pyi
CHANGED
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -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
|
...
|
|
@@ -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,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -117283,6 +117283,12 @@ class GPencilLayer(bpy_struct):
|
|
|
117283
117283
|
:type: int
|
|
117284
117284
|
"""
|
|
117285
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
|
+
|
|
117286
117292
|
annotation_opacity: float
|
|
117287
117293
|
""" Annotation Layer Opacity
|
|
117288
117294
|
|
|
@@ -147097,12 +147103,24 @@ class ThemeView3D(bpy_struct):
|
|
|
147097
147103
|
:type: mathutils.Color
|
|
147098
147104
|
"""
|
|
147099
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
|
+
|
|
147100
147112
|
asset_shelf: ThemeAssetShelf
|
|
147101
147113
|
""" Settings for asset shelf
|
|
147102
147114
|
|
|
147103
147115
|
:type: ThemeAssetShelf
|
|
147104
147116
|
"""
|
|
147105
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
|
+
|
|
147106
147124
|
bone_locked_weight: bpy_prop_array[float]
|
|
147107
147125
|
""" Shade for bones corresponding to a locked weight group during painting
|
|
147108
147126
|
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
_bpy_internal/__init__.pyi,sha256=
|
|
1
|
+
_bpy_internal/__init__.pyi,sha256=6A2uCagOM3FLZzDdkIsdlnnJ2DgxWcIMtcQ__qCMGjA,181
|
|
2
2
|
_bpy_internal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
_bpy_internal/extensions/__init__.pyi,sha256=7X21tOIZzQFyf4jd_v40SOkYEgKUteHyjAKBkaErywU,160
|
|
4
|
+
_bpy_internal/extensions/junction_module/__init__.pyi,sha256=Y4wWyDVpNoWmMjPLBtwA2x3WWTLInpvA-ZE6h_qO0SE,1084
|
|
3
5
|
_bpy_internal/freedesktop/__init__.pyi,sha256=Q9rj2oTgTavt1KGhDB3vipL5nJ1WDLYwsWuae1GzV5U,858
|
|
4
6
|
addon_utils/__init__.pyi,sha256=R4k6nv0oHdpapTQdV_B9q-vDN-YWqRsdECpS3Wgez-8,1896
|
|
5
7
|
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -247,7 +249,7 @@ bpy/ops/screen/__init__.pyi,sha256=j5jJAFmo2phElz0qijZaNumcZ_Sw-pQXBIu2mV2nHO0,2
|
|
|
247
249
|
bpy/ops/script/__init__.pyi,sha256=K-vL8vwaxfQtnR0LbGUc4cm1hwlgApqeAgjymeSVomk,1555
|
|
248
250
|
bpy/ops/sculpt/__init__.pyi,sha256=NKKtvhherhRaKatlsrq-pylNPXTy2jVFeSE3nLzcZI4,46816
|
|
249
251
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=9bNJlr2-o5IiIxUD4KpX-xruB2nPNSYnRtDyl9_U9dU,3242
|
|
250
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
252
|
+
bpy/ops/sequencer/__init__.pyi,sha256=9GByy7ehnOvYkQj26ZQ94kUfRT8o1xdTnb4szExH8EQ,81947
|
|
251
253
|
bpy/ops/sound/__init__.pyi,sha256=rMvT3dhYxci0ERVJDfpzpl0opyBAIOouOWutdboHd24,16193
|
|
252
254
|
bpy/ops/spreadsheet/__init__.pyi,sha256=T1_dz3m3olt7JD4z1DNj6Q0vTaokK-cTXvEAHaPIci0,2107
|
|
253
255
|
bpy/ops/surface/__init__.pyi,sha256=ryL8yY1Y0p9nan0jNURAjwiQFgEYrGWC6h1MI2Dd50w,10928
|
|
@@ -265,17 +267,15 @@ bpy/ops/workspace/__init__.pyi,sha256=F2V6EPwYMrOdtpEoCLHOCk2m8KMdTkcHqO2aEVxcg1
|
|
|
265
267
|
bpy/ops/world/__init__.pyi,sha256=imGbkOZ4Z_mNMwg2TwfpPf1DeGiige4UE-vc9991_tk,1032
|
|
266
268
|
bpy/path/__init__.pyi,sha256=_sJAmwZHhmcIXbchob_87KT_Nyv6R_qrX76gy9IbDRk,11515
|
|
267
269
|
bpy/props/__init__.pyi,sha256=vJGG9vmfN5MAwjlFMyI6LxKNJAIzPrhgWA4bPz08dQY,29550
|
|
268
|
-
bpy/types/__init__.pyi,sha256=
|
|
270
|
+
bpy/types/__init__.pyi,sha256=7dby3dlA1_3OZ0ldCJ8ZlyHmxUr1sYaRC3hKRCUOulI,5210832
|
|
269
271
|
bpy/utils/__init__.pyi,sha256=u27SmrQE6At5bOTU-lCuwbT82HCj_lPAvs5QHnlGGY4,19071
|
|
270
272
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
271
273
|
bpy/utils/units/__init__.pyi,sha256=VVDH7jM3nup8W0XuPIQ0G3TdWN82Ufaw-Rk5JTHVU60,2694
|
|
272
|
-
bpy_extras/__init__.pyi,sha256=
|
|
274
|
+
bpy_extras/__init__.pyi,sha256=lr_dNl5gIrLwtsKEKpWnarehWt7MIgLCequmCxUJQuw,837
|
|
273
275
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
276
|
bpy_extras/anim_utils/__init__.pyi,sha256=KE2O6oo39l8MOX84X2DIYZPOwcE1TZud1cp0yVHtBJE,5975
|
|
275
277
|
bpy_extras/asset_utils/__init__.pyi,sha256=w19HhXEIn-y0JoDlmV2OoKMT1DbeUYgmpHsGIYHy-no,852
|
|
276
278
|
bpy_extras/bmesh_utils/__init__.pyi,sha256=pBU1N3HAuF8SQHYbl2a2vdb04cyJy7exwJe9_j9xdyA,533
|
|
277
|
-
bpy_extras/extensions/__init__.pyi,sha256=7X21tOIZzQFyf4jd_v40SOkYEgKUteHyjAKBkaErywU,160
|
|
278
|
-
bpy_extras/extensions/junction_module/__init__.pyi,sha256=Y4wWyDVpNoWmMjPLBtwA2x3WWTLInpvA-ZE6h_qO0SE,1084
|
|
279
279
|
bpy_extras/id_map_utils/__init__.pyi,sha256=u0XQmvE9wYzNIP0-TEcE5dmybiyKeELjBcnPsW5Lscw,805
|
|
280
280
|
bpy_extras/image_utils/__init__.pyi,sha256=4wmKPCi14IkpaUkEhKroNUGbENEO5Ra3Awk089IhHgM,4125
|
|
281
281
|
bpy_extras/io_utils/__init__.pyi,sha256=8p40ugKArr0rb0ZlDsEOkvEHiBZCK2XBfpFA-jWfsMk,9746
|
|
@@ -351,7 +351,7 @@ 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-20240630.dist-info/METADATA,sha256=3diYxsuSe2kELOzvjroiak5cIzi2iNQyvQkhok32yc0,7194
|
|
355
|
+
fake_bpy_module-20240630.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
356
|
+
fake_bpy_module-20240630.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
357
|
+
fake_bpy_module-20240630.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|