fake-bpy-module 20250115__py3-none-any.whl → 20250117__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.

@@ -2601,4 +2601,4 @@ class SequencerColorTagPicker:
2601
2601
  """
2602
2602
 
2603
2603
  def draw_color_balance(layout, color_balance): ...
2604
- def selected_sequences_len(context): ...
2604
+ def selected_strips_count(context): ...
@@ -2720,28 +2720,6 @@ type RigidbodyObjectTypeItems = typing.Literal[
2720
2720
  "ACTIVE", # Active.Object is directly controlled by simulation results.
2721
2721
  "PASSIVE", # Passive.Object is directly controlled by animation system.
2722
2722
  ]
2723
- type SequenceModifierTypeItems = typing.Literal[
2724
- "BRIGHT_CONTRAST", # Brightness/Contrast.
2725
- "COLOR_BALANCE", # Color Balance.
2726
- "CURVES", # Curves.
2727
- "HUE_CORRECT", # Hue Correct.
2728
- "MASK", # Mask.
2729
- "TONEMAP", # Tone Map.
2730
- "WHITE_BALANCE", # White Balance.
2731
- "SOUND_EQUALIZER", # Sound Equalizer.
2732
- ]
2733
- type SequenceSoundModifierTypeItems = typing.Literal[
2734
- "SOUND_EQUALIZER", # Sound Equalizer.
2735
- ]
2736
- type SequenceVideoModifierTypeItems = typing.Literal[
2737
- "BRIGHT_CONTRAST", # Brightness/Contrast.
2738
- "COLOR_BALANCE", # Color Balance.
2739
- "CURVES", # Curves.
2740
- "HUE_CORRECT", # Hue Correct.
2741
- "MASK", # Mask.
2742
- "TONEMAP", # Tone Map.
2743
- "WHITE_BALANCE", # White Balance.
2744
- ]
2745
2723
  type ShadingTypeItems = typing.Literal[
2746
2724
  "WIREFRAME", # Wireframe.Display the object as wire edges.
2747
2725
  "SOLID", # Solid.Display in solid mode.
@@ -2859,6 +2837,28 @@ type StripColorItems = typing.Literal[
2859
2837
  "COLOR_08", # Color 08.
2860
2838
  "COLOR_09", # Color 09.
2861
2839
  ]
2840
+ type StripModifierTypeItems = typing.Literal[
2841
+ "BRIGHT_CONTRAST", # Brightness/Contrast.
2842
+ "COLOR_BALANCE", # Color Balance.
2843
+ "CURVES", # Curves.
2844
+ "HUE_CORRECT", # Hue Correct.
2845
+ "MASK", # Mask.
2846
+ "TONEMAP", # Tone Map.
2847
+ "WHITE_BALANCE", # White Balance.
2848
+ "SOUND_EQUALIZER", # Sound Equalizer.
2849
+ ]
2850
+ type StripSoundModifierTypeItems = typing.Literal[
2851
+ "SOUND_EQUALIZER", # Sound Equalizer.
2852
+ ]
2853
+ type StripVideoModifierTypeItems = typing.Literal[
2854
+ "BRIGHT_CONTRAST", # Brightness/Contrast.
2855
+ "COLOR_BALANCE", # Color Balance.
2856
+ "CURVES", # Curves.
2857
+ "HUE_CORRECT", # Hue Correct.
2858
+ "MASK", # Mask.
2859
+ "TONEMAP", # Tone Map.
2860
+ "WHITE_BALANCE", # White Balance.
2861
+ ]
2862
2862
  type SubdivisionBoundarySmoothItems = typing.Literal[
2863
2863
  "PRESERVE_CORNERS", # Keep Corners.Smooth boundaries, but corners are kept sharp.
2864
2864
  "ALL", # All.Smooth boundaries, including corners.
bpy/app/__init__.pyi CHANGED
@@ -216,6 +216,10 @@ openvdb: typing.Any
216
216
  """ Constant value bpy.app.openvdb(supported=True, version=(11, 0, 0), version_string='11, 0, 0')
217
217
  """
218
218
 
219
+ portable: typing.Any
220
+ """ Boolean, True unless blender was built to reference absolute paths (on UNIX).
221
+ """
222
+
219
223
  python_args: typing.Any
220
224
  """ Leading arguments to use when calling Python directly (via sys.executable). These arguments match settings Blender uses to ensure Python runs with a compatible environment (read-only).
221
225
  """
@@ -249,7 +253,7 @@ use_userpref_skip_save_on_exit: typing.Any
249
253
  """
250
254
 
251
255
  version: tuple[int, int, int]
252
- """ The Blender version as a tuple of 3 numbers. eg. (2, 83, 1)
256
+ """ The Blender version as a tuple of 3 numbers (major, minor, micro). eg. (4, 3, 1)
253
257
  """
254
258
 
255
259
  version_cycle: typing.Any
@@ -257,7 +261,7 @@ version_cycle: typing.Any
257
261
  """
258
262
 
259
263
  version_file: typing.Any
260
- """ The Blender version, as a tuple, last used to save a .blend file, compatible with bpy.data.version. This value should be used for handling compatibility changes between Blender versions
264
+ """ The Blender File version, as a tuple of 3 numbers (major, minor, file sub-version), that will be used to save a .blend file. The last item in this tuple indicates the file sub-version, which is different from the release micro version (the last item of the bpy.app.version tuple). The file sub-version can be incremented multiple times while a Blender version is under development. This value is, and should be, used for handling compatibility changes between Blender versions
261
265
  """
262
266
 
263
267
  version_string: typing.Any
@@ -76,7 +76,7 @@ def objects_add_active(
76
76
  *,
77
77
  collection: str | None = "",
78
78
  ):
79
- """Add the object to an object collection that contains the active object
79
+ """Add selected objects to one of the collections the active-object is part of. Optionally add to "All Collections" to ensure selected objects are included in the same collections as the active object
80
80
 
81
81
  :type execution_context: int | str | None
82
82
  :type undo: bool | None
bpy/ops/ed/__init__.pyi CHANGED
@@ -147,6 +147,15 @@ def lib_id_override_editable_toggle(
147
147
  :type undo: bool | None
148
148
  """
149
149
 
150
+ def lib_id_remove_preview(
151
+ execution_context: int | str | None = None, undo: bool | None = None
152
+ ):
153
+ """Remove the preview of this data-block
154
+
155
+ :type execution_context: int | str | None
156
+ :type undo: bool | None
157
+ """
158
+
150
159
  def lib_id_unlink(execution_context: int | str | None = None, undo: bool | None = None):
151
160
  """Remove a usage of a data-block, clearing the assignment
152
161
 
@@ -263,6 +263,7 @@ def gltf(
263
263
  export_gltfpack_vpi: typing.Literal["Integer", "Normalized", "Floating-point"]
264
264
  | None = "Integer",
265
265
  export_gltfpack_noq: bool | None = True,
266
+ export_gltfpack_kn: bool | None = False,
266
267
  export_format: str | None = "",
267
268
  ui_tab: typing.Literal["GENERAL", "MESHES", "OBJECTS", "ANIMATION"]
268
269
  | None = "GENERAL",
@@ -413,6 +414,8 @@ def gltf(
413
414
  :type export_gltfpack_vpi: typing.Literal['Integer','Normalized','Floating-point'] | None
414
415
  :param export_gltfpack_noq: Disable Quantization, Disable quantization; produces much larger glTF files with no extensions
415
416
  :type export_gltfpack_noq: bool | None
417
+ :param export_gltfpack_kn: Keep Named Nodes, Restrict some optimization to keep named nodes and meshes attached to named nodes so that named nodes can be transformed externally
418
+ :type export_gltfpack_kn: bool | None
416
419
  :param export_format: Format, Output format. Binary is most efficient, but JSON may be easier to edit later
417
420
  :type export_format: str | None
418
421
  :param ui_tab: ui_tab, Export setting categories
@@ -158,6 +158,7 @@ def cyclical_set(
158
158
  /,
159
159
  *,
160
160
  type: typing.Literal["CLOSE", "OPEN", "TOGGLE"] | None = "TOGGLE",
161
+ subdivide_cyclic_segment: bool | None = True,
161
162
  ):
162
163
  """Close or open the selected stroke adding a segment from last to first point
163
164
 
@@ -165,6 +166,8 @@ def cyclical_set(
165
166
  :type undo: bool | None
166
167
  :param type: Type
167
168
  :type type: typing.Literal['CLOSE','OPEN','TOGGLE'] | None
169
+ :param subdivide_cyclic_segment: Match Point Density, Add point in the new segment to keep the same density
170
+ :type subdivide_cyclic_segment: bool | None
168
171
  """
169
172
 
170
173
  def delete(execution_context: int | str | None = None, undo: bool | None = None):
@@ -1021,6 +1021,7 @@ def resize(
1021
1021
  /,
1022
1022
  *,
1023
1023
  size: collections.abc.Iterable[int] | None = (0, 0),
1024
+ all_udims: bool | None = False,
1024
1025
  ):
1025
1026
  """Resize the image
1026
1027
 
@@ -1028,6 +1029,8 @@ def resize(
1028
1029
  :type undo: bool | None
1029
1030
  :param size: Size
1030
1031
  :type size: collections.abc.Iterable[int] | None
1032
+ :param all_udims: All UDIM Tiles, Scale all the image's UDIM tiles
1033
+ :type all_udims: bool | None
1031
1034
  """
1032
1035
 
1033
1036
  def rotate_orthogonal(