fake-bpy-module-latest 20260127__py3-none-any.whl → 20260129__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_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +1 -1
- _bpy_internal/filesystem/locking/__init__.pyi +1 -1
- bl_ui/generic_ui_list/__init__.pyi +1 -1
- bpy/ops/node/__init__.pyi +14 -0
- bpy/ops/object/__init__.pyi +1 -1
- bpy/ops/pose/__init__.pyi +2 -2
- bpy/ops/sculpt/__init__.pyi +2 -0
- bpy/stub_internal/rna_enums/__init__.pyi +1 -0
- bpy/types/__init__.pyi +785 -32
- bpy/utils/__init__.pyi +5 -1
- {fake_bpy_module_latest-20260127.dist-info → fake_bpy_module_latest-20260129.dist-info}/METADATA +4 -1
- {fake_bpy_module_latest-20260127.dist-info → fake_bpy_module_latest-20260129.dist-info}/RECORD +15 -15
- mathutils/bvhtree/__init__.pyi +1 -2
- {fake_bpy_module_latest-20260127.dist-info → fake_bpy_module_latest-20260129.dist-info}/WHEEL +0 -0
- {fake_bpy_module_latest-20260127.dist-info → fake_bpy_module_latest-20260129.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@ class AssetLibraryMeta:
|
|
|
7
7
|
"""AssetLibraryMeta(api_versions: dict[str, str], name: str, contact: Contact)"""
|
|
8
8
|
|
|
9
9
|
class Contact:
|
|
10
|
-
"""Contact(name: str, url:
|
|
10
|
+
"""Contact(name: str, url: str | None = None, email: str | None = None)"""
|
|
11
11
|
|
|
12
12
|
email: typing.Any
|
|
13
13
|
url: typing.Any
|
|
@@ -12,7 +12,7 @@ def mutex_lock_and_open(file_path, mode) -> None:
|
|
|
12
12
|
"""Obtain an exclusive lock on a file.Create a file on disk, and immediately lock it for exclusive use by this
|
|
13
13
|
process.
|
|
14
14
|
|
|
15
|
-
:return: If the file was opened & locked
|
|
15
|
+
:return: If the file was opened & locked successfully, a tuple (file,
|
|
16
16
|
unlocker) is returned. Otherwise returns None. The caller should call
|
|
17
17
|
unlocker(file) to unlock the mutex.
|
|
18
18
|
"""
|
|
@@ -114,7 +114,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, _bpy_types.Operator):
|
|
|
114
114
|
|
|
115
115
|
def draw_ui_list(
|
|
116
116
|
layout: bpy.types.UILayout,
|
|
117
|
-
context:
|
|
117
|
+
context: bpy.types.Context,
|
|
118
118
|
class_name: str = "UI_UL_list",
|
|
119
119
|
*,
|
|
120
120
|
unique_id: str,
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -708,6 +708,20 @@ def delete(
|
|
|
708
708
|
) -> None:
|
|
709
709
|
"""Remove selected nodes"""
|
|
710
710
|
|
|
711
|
+
def delete_copy_reconnect(
|
|
712
|
+
execution_context: int | str | None = None,
|
|
713
|
+
undo: bool | None = None,
|
|
714
|
+
/,
|
|
715
|
+
*,
|
|
716
|
+
NODE_OT_clipboard_copy: clipboard_copy | None = None,
|
|
717
|
+
NODE_OT_delete_reconnect: delete_reconnect | None = None,
|
|
718
|
+
) -> None:
|
|
719
|
+
"""Copy nodes to clipboard, remove and reconnect them.
|
|
720
|
+
|
|
721
|
+
:param NODE_OT_clipboard_copy: Copy to Clipboard, Copy the selected nodes to the internal clipboard
|
|
722
|
+
:param NODE_OT_delete_reconnect: Delete with Reconnect, Remove nodes and reconnect nodes as if deletion was muted
|
|
723
|
+
"""
|
|
724
|
+
|
|
711
725
|
def delete_reconnect(
|
|
712
726
|
execution_context: int | str | None = None,
|
|
713
727
|
undo: bool | None = None,
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -655,7 +655,7 @@ def data_transfer(
|
|
|
655
655
|
"SMOOTH",
|
|
656
656
|
"FREESTYLE_FACE",
|
|
657
657
|
]
|
|
658
|
-
| None = "",
|
|
658
|
+
| None = "VGROUP_WEIGHTS",
|
|
659
659
|
use_create: bool | None = True,
|
|
660
660
|
vert_mapping: bpy.stub_internal.rna_enums.DtMethodVertexItems | None = "NEAREST",
|
|
661
661
|
edge_mapping: bpy.stub_internal.rna_enums.DtMethodEdgeItems | None = "NEAREST",
|
bpy/ops/pose/__init__.pyi
CHANGED
|
@@ -195,7 +195,7 @@ def constraint_add(
|
|
|
195
195
|
undo: bool | None = None,
|
|
196
196
|
/,
|
|
197
197
|
*,
|
|
198
|
-
type: bpy.stub_internal.rna_enums.ConstraintTypeItems | None = "",
|
|
198
|
+
type: bpy.stub_internal.rna_enums.ConstraintTypeItems | None = "CHILD_OF",
|
|
199
199
|
) -> None:
|
|
200
200
|
"""Add a constraint to the active bone
|
|
201
201
|
|
|
@@ -207,7 +207,7 @@ def constraint_add_with_targets(
|
|
|
207
207
|
undo: bool | None = None,
|
|
208
208
|
/,
|
|
209
209
|
*,
|
|
210
|
-
type: bpy.stub_internal.rna_enums.ConstraintTypeItems | None = "",
|
|
210
|
+
type: bpy.stub_internal.rna_enums.ConstraintTypeItems | None = "CHILD_OF",
|
|
211
211
|
) -> None:
|
|
212
212
|
"""Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones
|
|
213
213
|
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -273,6 +273,7 @@ def face_set_change_visibility(
|
|
|
273
273
|
/,
|
|
274
274
|
*,
|
|
275
275
|
mode: typing.Literal["TOGGLE", "SHOW_ACTIVE", "HIDE_ACTIVE"] | None = "TOGGLE",
|
|
276
|
+
active_face_set: int | None = 0,
|
|
276
277
|
) -> None:
|
|
277
278
|
"""Change the visibility of the face sets of the sculpt
|
|
278
279
|
|
|
@@ -286,6 +287,7 @@ def face_set_change_visibility(
|
|
|
286
287
|
|
|
287
288
|
HIDE_ACTIVE
|
|
288
289
|
Hide Active Face Set -- Hide the active face set.
|
|
290
|
+
:param active_face_set: Active Face Set
|
|
289
291
|
"""
|
|
290
292
|
|
|
291
293
|
def face_set_edit(
|
|
@@ -736,6 +736,7 @@ type ExrCodecItems = typing.Literal[
|
|
|
736
736
|
"PIZ", # PIZ.Lossless wavelet compression, effective for noisy/grainy images.
|
|
737
737
|
"DWAA", # DWAA (lossy).JPEG-like lossy compression on 32 row image blocks.
|
|
738
738
|
"DWAB", # DWAB (lossy).JPEG-like lossy compression on 256 row image blocks.
|
|
739
|
+
"HTJ2K", # HTJ2K.Lossless compression based on high throughput JPEG 2000 encoding. It produces smaller files, but it is new and not widely supported by other software yet..
|
|
739
740
|
"ZIPS", # ZIPS.Lossless zip compression, each image row compressed separately.
|
|
740
741
|
"RLE", # RLE.Lossless run length encoding compression.
|
|
741
742
|
"PXR24", # Pxr24 (lossy).Lossy compression for 32 bit float images (stores 24 bits of each float).
|