fake-bpy-module 20240622__py3-none-any.whl → 20240624__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/extensions/__init__.pyi +28 -18
- bpy/ops/grease_pencil/__init__.pyi +21 -0
- bpy/types/__init__.pyi +4 -36
- {fake_bpy_module-20240622.dist-info → fake_bpy_module-20240624.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240622.dist-info → fake_bpy_module-20240624.dist-info}/RECORD +7 -7
- {fake_bpy_module-20240622.dist-info → fake_bpy_module-20240624.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240622.dist-info → fake_bpy_module-20240624.dist-info}/top_level.txt +0 -0
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -162,6 +162,20 @@ def package_mark_clear(
|
|
|
162
162
|
|
|
163
163
|
...
|
|
164
164
|
|
|
165
|
+
def package_mark_clear_all(
|
|
166
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
167
|
+
execution_context: int | str | None = None,
|
|
168
|
+
undo: bool | None = None,
|
|
169
|
+
):
|
|
170
|
+
"""Undocumented, consider contributing.
|
|
171
|
+
|
|
172
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
173
|
+
:type execution_context: int | str | None
|
|
174
|
+
:type undo: bool | None
|
|
175
|
+
"""
|
|
176
|
+
|
|
177
|
+
...
|
|
178
|
+
|
|
165
179
|
def package_mark_set(
|
|
166
180
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
167
181
|
execution_context: int | str | None = None,
|
|
@@ -183,6 +197,20 @@ def package_mark_set(
|
|
|
183
197
|
|
|
184
198
|
...
|
|
185
199
|
|
|
200
|
+
def package_mark_set_all(
|
|
201
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
202
|
+
execution_context: int | str | None = None,
|
|
203
|
+
undo: bool | None = None,
|
|
204
|
+
):
|
|
205
|
+
"""Undocumented, consider contributing.
|
|
206
|
+
|
|
207
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
208
|
+
:type execution_context: int | str | None
|
|
209
|
+
:type undo: bool | None
|
|
210
|
+
"""
|
|
211
|
+
|
|
212
|
+
...
|
|
213
|
+
|
|
186
214
|
def package_obsolete_marked(
|
|
187
215
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
188
216
|
execution_context: int | str | None = None,
|
|
@@ -372,24 +400,6 @@ def package_upgrade_all(
|
|
|
372
400
|
|
|
373
401
|
...
|
|
374
402
|
|
|
375
|
-
def repo_add_from_drop(
|
|
376
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
377
|
-
execution_context: int | str | None = None,
|
|
378
|
-
undo: bool | None = None,
|
|
379
|
-
*,
|
|
380
|
-
url: str = "",
|
|
381
|
-
):
|
|
382
|
-
"""Undocumented, consider contributing.
|
|
383
|
-
|
|
384
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
385
|
-
:type execution_context: int | str | None
|
|
386
|
-
:type undo: bool | None
|
|
387
|
-
:param url: URL
|
|
388
|
-
:type url: str
|
|
389
|
-
"""
|
|
390
|
-
|
|
391
|
-
...
|
|
392
|
-
|
|
393
403
|
def repo_enable_from_drop(
|
|
394
404
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
395
405
|
execution_context: int | str | None = None,
|
|
@@ -351,6 +351,27 @@ def layer_duplicate(
|
|
|
351
351
|
|
|
352
352
|
...
|
|
353
353
|
|
|
354
|
+
def layer_duplicate_object(
|
|
355
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
356
|
+
execution_context: int | str | None = None,
|
|
357
|
+
undo: bool | None = None,
|
|
358
|
+
*,
|
|
359
|
+
only_active: bool | None = True,
|
|
360
|
+
mode: str | None = "ALL",
|
|
361
|
+
):
|
|
362
|
+
"""Make a copy of the active Grease Pencil layer to selected object
|
|
363
|
+
|
|
364
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
365
|
+
:type execution_context: int | str | None
|
|
366
|
+
:type undo: bool | None
|
|
367
|
+
:param only_active: Only Active, Copy only active Layer, uncheck to append all layers
|
|
368
|
+
:type only_active: bool | None
|
|
369
|
+
:param mode: Mode
|
|
370
|
+
:type mode: str | None
|
|
371
|
+
"""
|
|
372
|
+
|
|
373
|
+
...
|
|
374
|
+
|
|
354
375
|
def layer_group_add(
|
|
355
376
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
356
377
|
execution_context: int | str | None = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -99013,48 +99013,16 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
|
|
|
99013
99013
|
"""
|
|
99014
99014
|
...
|
|
99015
99015
|
|
|
99016
|
-
|
|
99017
|
-
def __setitem__(self, key: int | str, value: GenericType1):
|
|
99016
|
+
def __setitem__(self, key: int, value: GenericType1):
|
|
99018
99017
|
"""
|
|
99019
99018
|
|
|
99020
99019
|
:param key:
|
|
99021
|
-
:type key: int
|
|
99020
|
+
:type key: int
|
|
99022
99021
|
:param value:
|
|
99023
99022
|
:type value: GenericType1
|
|
99024
99023
|
"""
|
|
99025
99024
|
...
|
|
99026
99025
|
|
|
99027
|
-
@typing.overload
|
|
99028
|
-
def __setitem__(self, key: slice, value: tuple[GenericType1]):
|
|
99029
|
-
"""
|
|
99030
|
-
|
|
99031
|
-
:param key:
|
|
99032
|
-
:type key: slice
|
|
99033
|
-
:param value:
|
|
99034
|
-
:type value: tuple[GenericType1]
|
|
99035
|
-
"""
|
|
99036
|
-
...
|
|
99037
|
-
|
|
99038
|
-
def __setitem__(
|
|
99039
|
-
self, key: int | str | slice, value: GenericType1 | tuple[GenericType1]
|
|
99040
|
-
):
|
|
99041
|
-
"""
|
|
99042
|
-
|
|
99043
|
-
:param key:
|
|
99044
|
-
:type key: int | str | slice
|
|
99045
|
-
:param value:
|
|
99046
|
-
:type value: GenericType1 | tuple[GenericType1]
|
|
99047
|
-
"""
|
|
99048
|
-
...
|
|
99049
|
-
|
|
99050
|
-
def __delitem__(self, key: int | str | slice):
|
|
99051
|
-
"""
|
|
99052
|
-
|
|
99053
|
-
:param key:
|
|
99054
|
-
:type key: int | str | slice
|
|
99055
|
-
"""
|
|
99056
|
-
...
|
|
99057
|
-
|
|
99058
99026
|
def __iter__(self) -> collections.abc.Iterator[GenericType1]:
|
|
99059
99027
|
"""
|
|
99060
99028
|
|
|
@@ -99484,11 +99452,11 @@ class bpy_prop_array(typing.Generic[GenericType1]):
|
|
|
99484
99452
|
"""
|
|
99485
99453
|
...
|
|
99486
99454
|
|
|
99487
|
-
def __delitem__(self, key: int
|
|
99455
|
+
def __delitem__(self, key: int):
|
|
99488
99456
|
"""
|
|
99489
99457
|
|
|
99490
99458
|
:param key:
|
|
99491
|
-
:type key: int
|
|
99459
|
+
:type key: int
|
|
99492
99460
|
"""
|
|
99493
99461
|
...
|
|
99494
99462
|
|
|
@@ -208,7 +208,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=p2GNDiQaiN6ti8NDWiHfw_DEBoOegGy9HlMcPF-iWU4,2
|
|
|
208
208
|
bpy/ops/ed/__init__.pyi,sha256=uFn4FE7i65AXTZj-spBc7Z_AEpYUMr6iOA6CFj-PCIY,8836
|
|
209
209
|
bpy/ops/export_anim/__init__.pyi,sha256=dqdhbmF-AnFtIIHU5e9aoiWcVjlHYvK5Ys1G1hOMbCo,2150
|
|
210
210
|
bpy/ops/export_scene/__init__.pyi,sha256=PpuB77uBIdpUBJCiQr6BiJv5ddq289n6qRPlxXQKskg,37174
|
|
211
|
-
bpy/ops/extensions/__init__.pyi,sha256=
|
|
211
|
+
bpy/ops/extensions/__init__.pyi,sha256=_CuHko4VvLIiZk3dCnCu3XE7q4DvvLLnKwFRfv-icpA,17436
|
|
212
212
|
bpy/ops/file/__init__.pyi,sha256=2DNu_Qn5lcL73TWsZ-D1ki8WRRUC_eC-WPAwaV8YY5U,24731
|
|
213
213
|
bpy/ops/fluid/__init__.pyi,sha256=HdnyYnIfdGBLAt4jwfrrYzclX3acnVy-WqjOWjXNjrI,5710
|
|
214
214
|
bpy/ops/font/__init__.pyi,sha256=4YuXh-727IWOADXPEqwd1TY9fGPufDl4GHP3pBFX5Mo,17516
|
|
@@ -216,7 +216,7 @@ bpy/ops/geometry/__init__.pyi,sha256=TpPKIMdWhQ7NUtKUQE-OTMq8J8AQErxO-Wxpuj3h6UA
|
|
|
216
216
|
bpy/ops/gizmogroup/__init__.pyi,sha256=fnAUG8GcriyWYEMoNhc8oKO8QJibejBcvhRyfKEZdqs,1681
|
|
217
217
|
bpy/ops/gpencil/__init__.pyi,sha256=PiXHCq8DZFTaaycFsiCklyjsEo_hXFc8lhy6_rAZpHI,107036
|
|
218
218
|
bpy/ops/graph/__init__.pyi,sha256=VHkIPGhf4ZgzwqDBzioCt9_SRCbWMjBTGQehl6QQdRI,49288
|
|
219
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
219
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=uJOY8b3xUM7828M0d9LAPR4X9GmSU8m4oFmdkVMp5Vo,44792
|
|
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
|
|
@@ -265,7 +265,7 @@ bpy/ops/workspace/__init__.pyi,sha256=F2V6EPwYMrOdtpEoCLHOCk2m8KMdTkcHqO2aEVxcg1
|
|
|
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=
|
|
268
|
+
bpy/types/__init__.pyi,sha256=1GYd-B1CsfHW_LwU7F7a7JxknhQEjsq40LsHGQUjPY8,5203244
|
|
269
269
|
bpy/utils/__init__.pyi,sha256=j40qxVYp__ZU4OCAG7Vmw9IlI6Tj1yIm3SduACnsu4k,18625
|
|
270
270
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
271
271
|
bpy/utils/units/__init__.pyi,sha256=VVDH7jM3nup8W0XuPIQ0G3TdWN82Ufaw-Rk5JTHVU60,2694
|
|
@@ -351,7 +351,7 @@ rna_xml/__init__.pyi,sha256=0qo0Lc6fTAAUSnHNIy0caLHVgK6-hk1havURr61jizM,601
|
|
|
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-20240624.dist-info/METADATA,sha256=dsFE7UB6DRDekAMBoUa-TbH7TeKGfDobs56PUSYchPM,7194
|
|
355
|
+
fake_bpy_module-20240624.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
|
356
|
+
fake_bpy_module-20240624.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
357
|
+
fake_bpy_module-20240624.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|