fake-bpy-module 20240703__py3-none-any.whl → 20240705__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 +21 -0
- bpy/ops/wm/__init__.pyi +4 -1
- bpy/types/__init__.pyi +6 -0
- {fake_bpy_module-20240703.dist-info → fake_bpy_module-20240705.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240703.dist-info → fake_bpy_module-20240705.dist-info}/RECORD +7 -7
- {fake_bpy_module-20240703.dist-info → fake_bpy_module-20240705.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240703.dist-info → fake_bpy_module-20240705.dist-info}/top_level.txt +0 -0
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -582,3 +582,24 @@ def userpref_show_online(
|
|
|
582
582
|
"""
|
|
583
583
|
|
|
584
584
|
...
|
|
585
|
+
|
|
586
|
+
def userpref_tags_set(
|
|
587
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
588
|
+
execution_context: int | str | None = None,
|
|
589
|
+
undo: bool | None = None,
|
|
590
|
+
*,
|
|
591
|
+
value: bool | None = False,
|
|
592
|
+
data_path: str = "",
|
|
593
|
+
):
|
|
594
|
+
"""Set the value of all tags
|
|
595
|
+
|
|
596
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
597
|
+
:type execution_context: int | str | None
|
|
598
|
+
:type undo: bool | None
|
|
599
|
+
:param value: Value, Enable or disable all tags
|
|
600
|
+
:type value: bool | None
|
|
601
|
+
:param data_path: Data Path
|
|
602
|
+
:type data_path: str
|
|
603
|
+
"""
|
|
604
|
+
|
|
605
|
+
...
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -4977,6 +4977,7 @@ def usd_export(
|
|
|
4977
4977
|
xform_op_mode: str | None = "TRS",
|
|
4978
4978
|
root_prim_path: str = "/root",
|
|
4979
4979
|
export_custom_properties: bool | None = True,
|
|
4980
|
+
custom_properties_namespace: str = "userProperties",
|
|
4980
4981
|
author_blender_name: bool | None = True,
|
|
4981
4982
|
convert_world_material: bool | None = True,
|
|
4982
4983
|
allow_unicode: bool | None = False,
|
|
@@ -5165,8 +5166,10 @@ def usd_export(
|
|
|
5165
5166
|
:type xform_op_mode: str | None
|
|
5166
5167
|
:param root_prim_path: Root Prim, If set, add a transform primitive with the given path to the stage as the parent of all exported data
|
|
5167
5168
|
:type root_prim_path: str
|
|
5168
|
-
:param export_custom_properties: Custom Properties, Export custom properties as USD attributes
|
|
5169
|
+
:param export_custom_properties: Custom Properties, Export custom properties as USD attributes
|
|
5169
5170
|
:type export_custom_properties: bool | None
|
|
5171
|
+
:param custom_properties_namespace: Namespace, If set, add the given namespace as a prefix to exported custom property names. This only applies to property names that do not already have a prefix (e.g., it would apply to name 'bar' but not 'foo:bar') and does not apply to blender object and data names which are always exported in the 'userProperties:blender' namespace
|
|
5172
|
+
:type custom_properties_namespace: str
|
|
5170
5173
|
:param author_blender_name: Blender Names, Author USD custom attributes containing the original Blender object and object data names
|
|
5171
5174
|
:type author_blender_name: bool | None
|
|
5172
5175
|
:param convert_world_material: Convert World Material, Convert the world material to a USD dome light. Currently works for simple materials, consisting of an environment texture connected to a background shader, with an optional vector multiply of the texture color
|
bpy/types/__init__.pyi
CHANGED
|
@@ -111091,6 +111091,12 @@ class DopeSheet(bpy_struct):
|
|
|
111091
111091
|
:type: str
|
|
111092
111092
|
"""
|
|
111093
111093
|
|
|
111094
|
+
show_all_bindings: bool
|
|
111095
|
+
""" Show all the Action's Bindings
|
|
111096
|
+
|
|
111097
|
+
:type: bool
|
|
111098
|
+
"""
|
|
111099
|
+
|
|
111094
111100
|
show_armatures: bool
|
|
111095
111101
|
""" Include visualization of armature related animation data
|
|
111096
111102
|
|
|
@@ -211,7 +211,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=p2GNDiQaiN6ti8NDWiHfw_DEBoOegGy9HlMcPF-iWU4,2
|
|
|
211
211
|
bpy/ops/ed/__init__.pyi,sha256=uFn4FE7i65AXTZj-spBc7Z_AEpYUMr6iOA6CFj-PCIY,8836
|
|
212
212
|
bpy/ops/export_anim/__init__.pyi,sha256=dqdhbmF-AnFtIIHU5e9aoiWcVjlHYvK5Ys1G1hOMbCo,2150
|
|
213
213
|
bpy/ops/export_scene/__init__.pyi,sha256=PpuB77uBIdpUBJCiQr6BiJv5ddq289n6qRPlxXQKskg,37174
|
|
214
|
-
bpy/ops/extensions/__init__.pyi,sha256=
|
|
214
|
+
bpy/ops/extensions/__init__.pyi,sha256=xW7ktl85yHyvZKYAxlliHjF2_JRIY5bFNTC_fYpTros,18021
|
|
215
215
|
bpy/ops/file/__init__.pyi,sha256=2DNu_Qn5lcL73TWsZ-D1ki8WRRUC_eC-WPAwaV8YY5U,24731
|
|
216
216
|
bpy/ops/fluid/__init__.pyi,sha256=HdnyYnIfdGBLAt4jwfrrYzclX3acnVy-WqjOWjXNjrI,5710
|
|
217
217
|
bpy/ops/font/__init__.pyi,sha256=4YuXh-727IWOADXPEqwd1TY9fGPufDl4GHP3pBFX5Mo,17516
|
|
@@ -263,12 +263,12 @@ bpy/ops/uilist/__init__.pyi,sha256=z0VKr_F-5Ti6hpaLe1ZeYSFR6KuxuWUWPDIoRvkJ7sU,2
|
|
|
263
263
|
bpy/ops/uv/__init__.pyi,sha256=qMudaigvfyQVSE7rB4ZbPOxWJdudOMSaHQkZZoo_fUk,48952
|
|
264
264
|
bpy/ops/view2d/__init__.pyi,sha256=65lZteRvd3dumc8k_2_SNZxyuT5kczgyIKmvC1cXd_E,9331
|
|
265
265
|
bpy/ops/view3d/__init__.pyi,sha256=mHv6PUKP1sEQ0TBPOReLQ1XiiSIUXNyDNRo1m3EUE-E,40582
|
|
266
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
266
|
+
bpy/ops/wm/__init__.pyi,sha256=p6zZOGwpwYgdrciYOzrRMWW-R4vDny8dFSHu5ksn8-4,215355
|
|
267
267
|
bpy/ops/workspace/__init__.pyi,sha256=F2V6EPwYMrOdtpEoCLHOCk2m8KMdTkcHqO2aEVxcg1g,3264
|
|
268
268
|
bpy/ops/world/__init__.pyi,sha256=imGbkOZ4Z_mNMwg2TwfpPf1DeGiige4UE-vc9991_tk,1032
|
|
269
269
|
bpy/path/__init__.pyi,sha256=_sJAmwZHhmcIXbchob_87KT_Nyv6R_qrX76gy9IbDRk,11515
|
|
270
270
|
bpy/props/__init__.pyi,sha256=vJGG9vmfN5MAwjlFMyI6LxKNJAIzPrhgWA4bPz08dQY,29550
|
|
271
|
-
bpy/types/__init__.pyi,sha256=
|
|
271
|
+
bpy/types/__init__.pyi,sha256=HqLx9iD9xdXDaEnTTKgywVsrxAjZeK2jvbS-OifxgTc,5209402
|
|
272
272
|
bpy/utils/__init__.pyi,sha256=pM5IwIMKiO_UHof0phHAbZ5we6Z6ZSh1jS3SbWD4kqs,19147
|
|
273
273
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
274
274
|
bpy/utils/units/__init__.pyi,sha256=VVDH7jM3nup8W0XuPIQ0G3TdWN82Ufaw-Rk5JTHVU60,2694
|
|
@@ -352,7 +352,7 @@ rna_xml/__init__.pyi,sha256=DggMfFZZ2UqOHPcPNpvMOFDSBGUnCegQxcljQIknRNs,639
|
|
|
352
352
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
353
|
sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
|
|
354
354
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
|
-
fake_bpy_module-
|
|
356
|
-
fake_bpy_module-
|
|
357
|
-
fake_bpy_module-
|
|
358
|
-
fake_bpy_module-
|
|
355
|
+
fake_bpy_module-20240705.dist-info/METADATA,sha256=1SIuTnnWwuCW8lbn6FD_05UFnQlUeUGhS5UAmblTm1o,7194
|
|
356
|
+
fake_bpy_module-20240705.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
|
357
|
+
fake_bpy_module-20240705.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
358
|
+
fake_bpy_module-20240705.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|