fake-bpy-module-latest 20260125__py3-none-any.whl → 20260201__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_operators/node/__init__.pyi +14 -0
- bl_ui/node_add_menu/__init__.pyi +3 -2
- bpy/ops/extensions/__init__.pyi +5 -5
- 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/ops/sequencer/__init__.pyi +0 -2
- bpy/stub_internal/rna_enums/__init__.pyi +3 -0
- bpy/types/__init__.pyi +1564 -408
- bpy/utils/__init__.pyi +5 -1
- {fake_bpy_module_latest-20260125.dist-info → fake_bpy_module_latest-20260201.dist-info}/METADATA +4 -1
- {fake_bpy_module_latest-20260125.dist-info → fake_bpy_module_latest-20260201.dist-info}/RECORD +18 -18
- {fake_bpy_module_latest-20260125.dist-info → fake_bpy_module_latest-20260201.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module_latest-20260125.dist-info → fake_bpy_module_latest-20260201.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
|
"""
|
bl_operators/node/__init__.pyi
CHANGED
|
@@ -530,6 +530,13 @@ class NODE_OT_swap_node(NodeSwapOperator, _bpy_types.Operator):
|
|
|
530
530
|
:param context:
|
|
531
531
|
"""
|
|
532
532
|
|
|
533
|
+
@staticmethod
|
|
534
|
+
def get_node_sockets(node) -> None:
|
|
535
|
+
"""
|
|
536
|
+
|
|
537
|
+
:param node:
|
|
538
|
+
"""
|
|
539
|
+
|
|
533
540
|
@staticmethod
|
|
534
541
|
def get_zone_pair(tree, node) -> None:
|
|
535
542
|
"""
|
|
@@ -538,6 +545,13 @@ class NODE_OT_swap_node(NodeSwapOperator, _bpy_types.Operator):
|
|
|
538
545
|
:param node:
|
|
539
546
|
"""
|
|
540
547
|
|
|
548
|
+
def transfer_node_sockets(self, old_node, new_node) -> None:
|
|
549
|
+
"""
|
|
550
|
+
|
|
551
|
+
:param old_node:
|
|
552
|
+
:param new_node:
|
|
553
|
+
"""
|
|
554
|
+
|
|
541
555
|
class NODE_OT_swap_zone(NodeSwapOperator, ZoneOperator, _bpy_types.Operator):
|
|
542
556
|
bl_idname: typing.Any
|
|
543
557
|
bl_label: typing.Any
|
bl_ui/node_add_menu/__init__.pyi
CHANGED
|
@@ -32,11 +32,12 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
34
|
@classmethod
|
|
35
|
-
def color_mix_node(cls, context, layout) -> None:
|
|
35
|
+
def color_mix_node(cls, context, layout, search_weight=0.0) -> None:
|
|
36
36
|
"""The Mix Color node, with its different blend modes available while in search.
|
|
37
37
|
|
|
38
38
|
:param context:
|
|
39
39
|
:param layout:
|
|
40
|
+
:param search_weight:
|
|
40
41
|
"""
|
|
41
42
|
|
|
42
43
|
@classmethod
|
|
@@ -283,7 +284,7 @@ class SwapNodeMenu(NodeMenu):
|
|
|
283
284
|
"""
|
|
284
285
|
|
|
285
286
|
def add_closure_zone(layout, label) -> None: ...
|
|
286
|
-
def add_color_mix_node(context, layout) -> None: ...
|
|
287
|
+
def add_color_mix_node(context, layout, search_weight=0.0) -> None: ...
|
|
287
288
|
def add_empty_group(layout) -> None: ...
|
|
288
289
|
def add_foreach_geometry_element_zone(layout, label) -> None: ...
|
|
289
290
|
def add_node_type(
|
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -173,7 +173,7 @@ def package_theme_disable(
|
|
|
173
173
|
pkg_id: str = "",
|
|
174
174
|
repo_index: int | None = -1,
|
|
175
175
|
) -> None:
|
|
176
|
-
"""
|
|
176
|
+
"""Reset to the default theme if this theme is active
|
|
177
177
|
|
|
178
178
|
:param pkg_id: Package ID
|
|
179
179
|
:param repo_index: Repo Index
|
|
@@ -187,7 +187,7 @@ def package_theme_enable(
|
|
|
187
187
|
pkg_id: str = "",
|
|
188
188
|
repo_index: int | None = -1,
|
|
189
189
|
) -> None:
|
|
190
|
-
"""Turn
|
|
190
|
+
"""Turn on this theme
|
|
191
191
|
|
|
192
192
|
:param pkg_id: Package ID
|
|
193
193
|
:param repo_index: Repo Index
|
|
@@ -230,9 +230,9 @@ def package_upgrade_all(
|
|
|
230
230
|
*,
|
|
231
231
|
use_active_only: bool | None = False,
|
|
232
232
|
) -> None:
|
|
233
|
-
"""Upgrade
|
|
233
|
+
"""Upgrade installed extensions to their latest version from remote repositories
|
|
234
234
|
|
|
235
|
-
:param use_active_only: Active Only, Only
|
|
235
|
+
:param use_active_only: Active Only, Only upgrade the active repository
|
|
236
236
|
"""
|
|
237
237
|
|
|
238
238
|
def repo_enable_from_drop(
|
|
@@ -261,7 +261,7 @@ def repo_refresh_all(
|
|
|
261
261
|
*,
|
|
262
262
|
use_active_only: bool | None = False,
|
|
263
263
|
) -> None:
|
|
264
|
-
"""
|
|
264
|
+
"""Refresh extension & legacy add-ons, reloading modules & meta-data (similar to restarting)
|
|
265
265
|
|
|
266
266
|
:param use_active_only: Active Only, Only refresh the active repository
|
|
267
267
|
"""
|
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(
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1135,12 +1135,10 @@ def retiming_segment_speed_set(
|
|
|
1135
1135
|
/,
|
|
1136
1136
|
*,
|
|
1137
1137
|
speed: float | None = 100.0,
|
|
1138
|
-
keep_retiming: bool | None = True,
|
|
1139
1138
|
) -> None:
|
|
1140
1139
|
"""Set speed of retimed segment
|
|
1141
1140
|
|
|
1142
1141
|
:param speed: Speed, New speed of retimed segment
|
|
1143
|
-
:param keep_retiming: Preserve Current Retiming, Keep speed of other segments unchanged, change strip length instead
|
|
1144
1142
|
"""
|
|
1145
1143
|
|
|
1146
1144
|
def retiming_show(
|
|
@@ -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).
|
|
@@ -770,6 +771,7 @@ type FmodifierTypeItems = typing.Literal[
|
|
|
770
771
|
"NOISE", # Noise.Add pseudo-random noise on top of F-Curves.
|
|
771
772
|
"LIMITS", # Limits.Restrict maximum and minimum values of F-Curve.
|
|
772
773
|
"STEPPED", # Stepped Interpolation.Snap values to nearest grid step, e.g. for a stop-motion look.
|
|
774
|
+
"SMOOTH", # Gaussian Smoothing.Smooth curve using Gaussian smoothing.
|
|
773
775
|
]
|
|
774
776
|
type GeometryComponentTypeItems = typing.Literal[
|
|
775
777
|
"MESH", # Mesh.Mesh component containing point, corner, edge and face data.
|
|
@@ -2303,6 +2305,7 @@ type NodeVecMathItems = typing.Literal[
|
|
|
2303
2305
|
"SIGN", # Sign.Entry-wise sign.
|
|
2304
2306
|
"MINIMUM", # Minimum.Entry-wise minimum.
|
|
2305
2307
|
"MAXIMUM", # Maximum.Entry-wise maximum.
|
|
2308
|
+
"ROUND", # Round.Entry-wise round to the nearest integer. Round upward if the fraction part is 0.5.
|
|
2306
2309
|
"FLOOR", # Floor.Entry-wise floor.
|
|
2307
2310
|
"CEIL", # Ceil.Entry-wise ceil.
|
|
2308
2311
|
"FRACTION", # Fraction.The fraction part of A entry-wise.
|