fake-bpy-module-latest 20260128__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.
@@ -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: Optional[str] = None, email: Optional[str] = None)"""
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 succesfully, a tuple (file,
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
  """
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,
@@ -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
 
@@ -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).