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

@@ -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
@@ -192,6 +192,10 @@ ffmpeg: typing.Any
192
192
  """ Constant value bpy.app.ffmpeg(supported=True, avcodec_version=(60, 31, 102), avcodec_version_string='60, 31, 102', avdevice_version=(60, 3, 100), avdevice_version_string='60, 3, 100', avformat_version=(60, 16, 100), avformat_version_string='60, 16, 100', avutil_version=(58, 29, 100), avutil_version_string='58, 29, 100', swscale_version=(7, 5, 100), swscale_version_string=' 7, 5, 100')
193
193
  """
194
194
 
195
+ module: typing.Any
196
+ """ Boolean, True when running Blender as a python module
197
+ """
198
+
195
199
  ocio: typing.Any
196
200
  """ Constant value bpy.app.ocio(supported=True, version=(2, 3, 2), version_string=' 2, 3, 2')
197
201
  """
@@ -216,6 +220,10 @@ openvdb: typing.Any
216
220
  """ Constant value bpy.app.openvdb(supported=True, version=(11, 0, 0), version_string='11, 0, 0')
217
221
  """
218
222
 
223
+ portable: typing.Any
224
+ """ Boolean, True unless blender was built to reference absolute paths (on UNIX).
225
+ """
226
+
219
227
  python_args: typing.Any
220
228
  """ 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
229
  """
@@ -249,7 +257,7 @@ use_userpref_skip_save_on_exit: typing.Any
249
257
  """
250
258
 
251
259
  version: tuple[int, int, int]
252
- """ The Blender version as a tuple of 3 numbers. eg. (2, 83, 1)
260
+ """ The Blender version as a tuple of 3 numbers (major, minor, micro). eg. (4, 3, 1)
253
261
  """
254
262
 
255
263
  version_cycle: typing.Any
@@ -257,7 +265,7 @@ version_cycle: typing.Any
257
265
  """
258
266
 
259
267
  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
268
+ """ 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
269
  """
262
270
 
263
271
  version_string: typing.Any
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):
@@ -987,6 +987,7 @@ def vertex_paint(
987
987
  | None = None,
988
988
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
989
989
  pen_flip: bool | None = False,
990
+ override_location: bool | None = False,
990
991
  ):
991
992
  """Paint a stroke in the active color attribute layer
992
993
 
@@ -1010,6 +1011,8 @@ def vertex_paint(
1010
1011
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
1011
1012
  :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
1012
1013
  :type pen_flip: bool | None
1014
+ :param override_location: Override Location, Override the given location array by recalculating object space positions from the provided mouse_event positions
1015
+ :type override_location: bool | None
1013
1016
  """
1014
1017
 
1015
1018
  def vertex_paint_toggle(
@@ -1120,6 +1123,7 @@ def weight_paint(
1120
1123
  | None = None,
1121
1124
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
1122
1125
  pen_flip: bool | None = False,
1126
+ override_location: bool | None = False,
1123
1127
  ):
1124
1128
  """Paint a stroke in the current vertex group's weights
1125
1129
 
@@ -1143,6 +1147,8 @@ def weight_paint(
1143
1147
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
1144
1148
  :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
1145
1149
  :type pen_flip: bool | None
1150
+ :param override_location: Override Location, Override the given location array by recalculating object space positions from the provided mouse_event positions
1151
+ :type override_location: bool | None
1146
1152
  """
1147
1153
 
1148
1154
  def weight_paint_toggle(
@@ -13,6 +13,7 @@ def brush_stroke(
13
13
  | None = None,
14
14
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
15
15
  pen_flip: bool | None = False,
16
+ override_location: bool | None = False,
16
17
  ignore_background_click: bool | None = False,
17
18
  ):
18
19
  """Sculpt a stroke into the geometry
@@ -37,6 +38,8 @@ def brush_stroke(
37
38
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
38
39
  :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
39
40
  :type pen_flip: bool | None
41
+ :param override_location: Override Location, Override the given location array by recalculating object space positions from the provided mouse_event positions
42
+ :type override_location: bool | None
40
43
  :param ignore_background_click: Ignore Background Click, Clicks on the background do not start the stroke
41
44
  :type ignore_background_click: bool | None
42
45
  """