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

@@ -175,6 +175,18 @@ def asset_revert(
175
175
  :type undo: bool | None
176
176
  """
177
177
 
178
+ def asset_save(
179
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
180
+ execution_context: int | str | None = None,
181
+ undo: bool | None = None,
182
+ ):
183
+ """Update the active brush asset in the asset library with current settings
184
+
185
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
186
+ :type execution_context: int | str | None
187
+ :type undo: bool | None
188
+ """
189
+
178
190
  def asset_save_as(
179
191
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
180
192
  execution_context: int | str | None = None,
@@ -197,18 +209,6 @@ def asset_save_as(
197
209
  :type catalog_path: str
198
210
  """
199
211
 
200
- def asset_update(
201
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
202
- execution_context: int | str | None = None,
203
- undo: bool | None = None,
204
- ):
205
- """Update the active brush asset in the asset library with current settings
206
-
207
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
208
- :type execution_context: int | str | None
209
- :type undo: bool | None
210
- """
211
-
212
212
  def curve_preset(
213
213
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
214
214
  execution_context: int | str | None = None,
@@ -646,7 +646,7 @@ def gltf(
646
646
  :type will_save_settings: bool | None
647
647
  :param export_hierarchy_full_collections: Full Collection Hierarchy, Export full hierarchy, including intermediate collections
648
648
  :type export_hierarchy_full_collections: bool | None
649
- :param export_extra_animations: Prepare extra animations, Export additional animationsThis feature is not standard and needs an external extension to be included in the glTF file
649
+ :param export_extra_animations: Prepare extra animations, Export additional animations.This feature is not standard and needs an external extension to be included in the glTF file
650
650
  :type export_extra_animations: bool | None
651
651
  :param filter_glob: filter_glob
652
652
  :type filter_glob: str
@@ -253,7 +253,7 @@ def decimate(
253
253
  ERROR
254
254
  Error Margin -- Use an error margin to specify how much the curve is allowed to deviate from the original path.
255
255
  :type mode: typing.Literal['RATIO','ERROR'] | None
256
- :param factor: Remove, The ratio of remaining keyframes after the operation
256
+ :param factor: Factor, The ratio of keyframes to remove
257
257
  :type factor: float | None
258
258
  :param remove_error_margin: Max Error Margin, How much the new decimated curve is allowed to deviate from the original
259
259
  :type remove_error_margin: float | None
@@ -17,7 +17,7 @@ def active_frame_delete(
17
17
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
18
18
  :type execution_context: int | str | None
19
19
  :type undo: bool | None
20
- :param all: Delete all, Delete active keyframes of all layer
20
+ :param all: Delete all, Delete active keyframes of all layers
21
21
  :type all: bool | None
22
22
  """
23
23
 
@@ -374,6 +374,7 @@ def interpolate(
374
374
  shift: float | None = 0.0,
375
375
  layers: typing.Literal["ACTIVE", "ALL"] | None = "ACTIVE",
376
376
  exclude_breakdowns: bool | None = False,
377
+ use_selection: bool | None = False,
377
378
  flip: typing.Literal["NONE", "FLIP", "AUTO"] | None = "AUTO",
378
379
  smooth_steps: int | None = 1,
379
380
  smooth_factor: float | None = 0.0,
@@ -389,6 +390,8 @@ def interpolate(
389
390
  :type layers: typing.Literal['ACTIVE','ALL'] | None
390
391
  :param exclude_breakdowns: Exclude Breakdowns, Exclude existing Breakdowns keyframes as interpolation extremes
391
392
  :type exclude_breakdowns: bool | None
393
+ :param use_selection: Use Selection, Use only selected strokes for interpolating
394
+ :type use_selection: bool | None
392
395
  :param flip: Flip Mode, Invert destination stroke to match start and end with source stroke
393
396
  :type flip: typing.Literal['NONE','FLIP','AUTO'] | None
394
397
  :param smooth_steps: Iterations, Number of times to smooth newly created strokes
@@ -404,7 +407,6 @@ def interpolate_sequence(
404
407
  *,
405
408
  step: int | None = 1,
406
409
  layers: typing.Literal["ACTIVE", "ALL"] | None = "ACTIVE",
407
- interpolate_selected_only: bool | None = False,
408
410
  exclude_breakdowns: bool | None = False,
409
411
  flip: typing.Literal["NONE", "FLIP", "AUTO"] | None = "AUTO",
410
412
  smooth_steps: int | None = 1,
@@ -438,8 +440,6 @@ def interpolate_sequence(
438
440
  :type step: int | None
439
441
  :param layers: Layer, Layers included in the interpolation
440
442
  :type layers: typing.Literal['ACTIVE','ALL'] | None
441
- :param interpolate_selected_only: Only Selected, Interpolate only selected strokes
442
- :type interpolate_selected_only: bool | None
443
443
  :param exclude_breakdowns: Exclude Breakdowns, Exclude existing Breakdowns keyframes as interpolation extremes
444
444
  :type exclude_breakdowns: bool | None
445
445
  :param flip: Flip Mode, Invert destination stroke to match start and end with source stroke
@@ -624,7 +624,7 @@ def layer_group_color_tag(
624
624
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
625
625
  :type execution_context: int | str | None
626
626
  :type undo: bool | None
627
- :param color_tag: color tag
627
+ :param color_tag: Color Tag
628
628
  :type color_tag: typing.Literal['NONE','COLOR1','COLOR2','COLOR3','COLOR4','COLOR5','COLOR6','COLOR7','COLOR8'] | None
629
629
  """
630
630
 
@@ -186,7 +186,7 @@ def convert_to_mesh_plane(
186
186
  Source Object -- Name after object source with a suffix.
187
187
 
188
188
  IMAGE
189
- Source Image -- name from laoded image.
189
+ Source Image -- Name from loaded image.
190
190
  :type name_from: typing.Literal['OBJECT','IMAGE'] | None
191
191
  :param delete_ref: Delete Reference Object, Delete empty image object once mesh plane is created
192
192
  :type delete_ref: bool | None
@@ -2332,7 +2332,7 @@ def lineart_bake_strokes(
2332
2332
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2333
2333
  :type execution_context: int | str | None
2334
2334
  :type undo: bool | None
2335
- :param bake_all: Bake All, Bake all line art modifiers
2335
+ :param bake_all: Bake All, Bake all Line Art modifiers
2336
2336
  :type bake_all: bool | None
2337
2337
  """
2338
2338
 
@@ -355,7 +355,7 @@ def extension_repo_add(
355
355
  :param type: Type, The kind of repository to add
356
356
 
357
357
  REMOTE
358
- Add Remote Repository -- Add a repository referencing an remote repository with support for listing and updating extensions.
358
+ Add Remote Repository -- Add a repository referencing a remote repository with support for listing and updating extensions.
359
359
 
360
360
  LOCAL
361
361
  Add Local Repository -- Add a repository managed manually without referencing an external repository.
@@ -96,8 +96,8 @@ def area_join(
96
96
  execution_context: int | str | None = None,
97
97
  undo: bool | None = None,
98
98
  *,
99
- source_xy: collections.abc.Iterable[int] | None = (0, 0),
100
- target_xy: collections.abc.Iterable[int] | None = (0, 0),
99
+ source_xy: collections.abc.Iterable[int] | None = (361658787, 32767),
100
+ target_xy: collections.abc.Iterable[int] | None = (361658787, 32767),
101
101
  ):
102
102
  """Join selected areas into new window
103
103
 
@@ -746,7 +746,7 @@ def mesh_filter(
746
746
  "SURFACE_SMOOTH",
747
747
  "SHARPEN",
748
748
  "ENHANCE_DETAILS",
749
- "ERASE_DISCPLACEMENT",
749
+ "ERASE_DISPLACEMENT",
750
750
  ]
751
751
  | None = "INFLATE",
752
752
  deform_axis: set[typing.Literal["X", "Y", "Z"]] | None = {"X", "Y", "Z"},
@@ -803,9 +803,9 @@ def mesh_filter(
803
803
  ENHANCE_DETAILS
804
804
  Enhance Details -- Enhance the high frequency surface detail.
805
805
 
806
- ERASE_DISCPLACEMENT
806
+ ERASE_DISPLACEMENT
807
807
  Erase Displacement -- Deletes the displacement of the Multires Modifier.
808
- :type type: typing.Literal['SMOOTH','SCALE','INFLATE','SPHERE','RANDOM','RELAX','RELAX_FACE_SETS','SURFACE_SMOOTH','SHARPEN','ENHANCE_DETAILS','ERASE_DISCPLACEMENT'] | None
808
+ :type type: typing.Literal['SMOOTH','SCALE','INFLATE','SPHERE','RANDOM','RELAX','RELAX_FACE_SETS','SURFACE_SMOOTH','SHARPEN','ENHANCE_DETAILS','ERASE_DISPLACEMENT'] | None
809
809
  :param deform_axis: Deform Axis, Apply the deformation in the selected axis
810
810
 
811
811
  X
@@ -225,7 +225,7 @@ def mixdown(
225
225
  F64
226
226
  F64 -- 64-bit floating-point.
227
227
  :type format: typing.Literal['U8','S16','S24','S32','F32','F64'] | None
228
- :param mixrate: Samplerate, Samplerate in samples/s
228
+ :param mixrate: Sample Rate, Sample rate in samples/s
229
229
  :type mixrate: int | None
230
230
  :param bitrate: Bitrate, Bitrate in kbit/s
231
231
  :type bitrate: int | None
bpy/ops/wm/__init__.pyi CHANGED
@@ -5269,7 +5269,8 @@ def usd_export(
5269
5269
  Keep -- Use original location of textures.
5270
5270
 
5271
5271
  PRESERVE
5272
- Preserve -- Preserve file paths of textures from already imported USD files.Export remaining textures to a 'textures' folder next to the USD file.
5272
+ Preserve -- Preserve file paths of textures from already imported USD files.
5273
+ Export remaining textures to a 'textures' folder next to the USD file.
5273
5274
 
5274
5275
  NEW
5275
5276
  New Path -- Export textures to a 'textures' folder next to the USD file.
bpy/types/__init__.pyi CHANGED
@@ -80398,6 +80398,7 @@ of the scene and only show nodes of the renderer they are designed for.
80398
80398
  --------------------
80399
80399
 
80400
80400
  * GreasePencilLayer.parent_group
80401
+ * GreasePencilLayerGroup.parent_group
80401
80402
  * GreasePencilv3.layer_groups
80402
80403
  * GreasePencilv3LayerGroup.active
80403
80404
  * GreasePencilv3LayerGroup.move
@@ -113055,7 +113056,8 @@ class ActionSlot(bpy_struct):
113055
113056
  """
113056
113057
 
113057
113058
  handle: int
113058
- """ Number specific to this Slot, unique within the ActionThis is used, for example, on a ActionKeyframeStrip to look up the ActionChannelBag for this Slot
113059
+ """ Number specific to this Slot, unique within the Action.
113060
+ This is used, for example, on a ActionKeyframeStrip to look up the ActionChannelBag for this Slot
113059
113061
 
113060
113062
  :type: int
113061
113063
  """
@@ -118188,7 +118190,7 @@ class Brush(ID, bpy_struct):
118188
118190
  """
118189
118191
 
118190
118192
  use_automasking_view_occlusion: bool
118191
- """ Only affect vertices that are not occluded by other faces (Slower performance)
118193
+ """ Only affect vertices that are not occluded by other faces (slower performance)
118192
118194
 
118193
118195
  :type: bool
118194
118196
  """
@@ -119287,7 +119289,7 @@ class BrushGpencilSettings(bpy_struct):
119287
119289
  """
119288
119290
 
119289
119291
  simplify_pixel_threshold: float
119290
- """ Threashold in screen space used for the simplify algorithm. Points within this threashold are treated as if they were in a straight line.
119292
+ """ Threshold in screen space used for the simplify algorithm. Points within this threshold are treated as if they were in a straight line.
119291
119293
 
119292
119294
  :type: float
119293
119295
  """
@@ -127989,7 +127991,7 @@ class CompositorNodePixelate(CompositorNode, NodeInternal, Node, bpy_struct):
127989
127991
  """
127990
127992
 
127991
127993
  class CompositorNodePlaneTrackDeform(CompositorNode, NodeInternal, Node, bpy_struct):
127992
- """Replace flat planes in footage by another image, dectected by plane tracks from motion tracking"""
127994
+ """Replace flat planes in footage by another image, detected by plane tracks from motion tracking"""
127993
127995
 
127994
127996
  clip: MovieClip | None
127995
127997
  """
@@ -136041,11 +136043,13 @@ class FFmpegSettings(bpy_struct):
136041
136043
 
136042
136044
  codec: typing.Literal[
136043
136045
  "NONE",
136046
+ "AV1",
136047
+ "H264",
136048
+ "WEBM",
136044
136049
  "DNXHD",
136045
136050
  "DV",
136046
136051
  "FFV1",
136047
136052
  "FLASH",
136048
- "H264",
136049
136053
  "HUFFYUV",
136050
136054
  "MPEG1",
136051
136055
  "MPEG2",
@@ -136053,12 +136057,10 @@ class FFmpegSettings(bpy_struct):
136053
136057
  "PNG",
136054
136058
  "QTRLE",
136055
136059
  "THEORA",
136056
- "WEBM",
136057
- "AV1",
136058
136060
  ]
136059
136061
  """ FFmpeg codec to use for video output
136060
136062
 
136061
- :type: typing.Literal['NONE','DNXHD','DV','FFV1','FLASH','H264','HUFFYUV','MPEG1','MPEG2','MPEG4','PNG','QTRLE','THEORA','WEBM','AV1']
136063
+ :type: typing.Literal['NONE','AV1','H264','WEBM','DNXHD','DV','FFV1','FLASH','HUFFYUV','MPEG1','MPEG2','MPEG4','PNG','QTRLE','THEORA']
136062
136064
  """
136063
136065
 
136064
136066
  constant_rate_factor: typing.Literal[
@@ -136083,20 +136085,20 @@ class FFmpegSettings(bpy_struct):
136083
136085
  """
136084
136086
 
136085
136087
  format: typing.Literal[
136086
- "MPEG1",
136087
- "MPEG2",
136088
136088
  "MPEG4",
136089
+ "MKV",
136090
+ "WEBM",
136089
136091
  "AVI",
136090
- "QUICKTIME",
136091
136092
  "DV",
136092
- "OGG",
136093
- "MKV",
136094
136093
  "FLASH",
136095
- "WEBM",
136094
+ "MPEG1",
136095
+ "MPEG2",
136096
+ "OGG",
136097
+ "QUICKTIME",
136096
136098
  ]
136097
136099
  """ Output file container
136098
136100
 
136099
- :type: typing.Literal['MPEG1','MPEG2','MPEG4','AVI','QUICKTIME','DV','OGG','MKV','FLASH','WEBM']
136101
+ :type: typing.Literal['MPEG4','MKV','WEBM','AVI','DV','FLASH','MPEG1','MPEG2','OGG','QUICKTIME']
136100
136102
  """
136101
136103
 
136102
136104
  gopsize: int
@@ -158213,6 +158215,12 @@ class GreasePencilLayerGroup(bpy_struct):
158213
158215
  :type: str
158214
158216
  """
158215
158217
 
158218
+ parent_group: typing_extensions.Self
158219
+ """ The parent group this group is part of
158220
+
158221
+ :type: typing_extensions.Self
158222
+ """
158223
+
158216
158224
  use_masks: bool
158217
158225
  """ The visibility of drawings in the layers in this group is affected by the layers in the masks lists
158218
158226
 
@@ -176135,7 +176143,7 @@ class MovieTrackingTrack(bpy_struct):
176135
176143
  """
176136
176144
 
176137
176145
  use_normalization: bool
176138
- """ Normalize light intensities while tracking (Slower)
176146
+ """ Normalize light intensities while tracking (slower)
176139
176147
 
176140
176148
  :type: bool
176141
176149
  """
@@ -190083,7 +190091,7 @@ class PreferencesExperimental(bpy_struct):
190083
190091
  """
190084
190092
 
190085
190093
  enable_overlay_next: bool
190086
- """ Enable the new Overlay code-base, requires restart
190094
+ """ Enable the new Overlay codebase, requires restart
190087
190095
 
190088
190096
  :type: bool
190089
190097
  """
@@ -197074,7 +197082,7 @@ class Sculpt(Paint, bpy_struct):
197074
197082
  """
197075
197083
 
197076
197084
  use_automasking_view_occlusion: bool
197077
- """ Only affect vertices that are not occluded by other faces (Slower performance)
197085
+ """ Only affect vertices that are not occluded by other faces (slower performance)
197078
197086
 
197079
197087
  :type: bool
197080
197088
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241016
3
+ Version: 20241018
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -202,7 +202,7 @@ bpy/ops/anim/__init__.pyi,sha256=YFwVzrwUyXXNubpsPs1bD4YLxPJqBiB_uhCwqiak96M,344
202
202
  bpy/ops/armature/__init__.pyi,sha256=HvwRtnX0DbGxiFHvyo4qMW736mxUJrKI9QQgDFeHftw,28342
203
203
  bpy/ops/asset/__init__.pyi,sha256=1VaZTErx5Gtv2EQsTDnJ-8-bU5EEy1CfGWC-SlrTYrE,11279
204
204
  bpy/ops/boid/__init__.pyi,sha256=OZTYsYsABxDbsAt5ni7hN1z1KymV_Q4Pll__NQVDezM,3253
205
- bpy/ops/brush/__init__.pyi,sha256=9aOZ5qiX6ZZG2i4TseMWmG_CigypmCT27fQtQXFi8q4,11757
205
+ bpy/ops/brush/__init__.pyi,sha256=bLGox27gIsExbj8k1KnTqEafBvjwahpyTqTyPThK_b8,11755
206
206
  bpy/ops/buttons/__init__.pyi,sha256=8KxoTsxG3Xyu56sfSKKjntI0pGJGUrkHCR3Byz030_s,9909
207
207
  bpy/ops/cachefile/__init__.pyi,sha256=epLtrYV_rXpSNVPa0PQC_dJk8HYJsyhPQAyGYwiEb5I,9680
208
208
  bpy/ops/camera/__init__.pyi,sha256=S_QZcF94MM43nyyZ8Ldkp49ymdMWagFAmxOErczGbqA,1699
@@ -217,7 +217,7 @@ bpy/ops/cycles/__init__.pyi,sha256=YEdJl69mqLmQj_thv25PXLD1ZGEqo3mRn_UkDJ4fJoI,2
217
217
  bpy/ops/dpaint/__init__.pyi,sha256=kWFW1HSoYMgomqCerlMGDmwizG8OBH40HBj9LboKTQI,2326
218
218
  bpy/ops/ed/__init__.pyi,sha256=eCvshg5UshWukVfIBIFZ71KL1q1faZSIOt1kC1s1Nu8,8817
219
219
  bpy/ops/export_anim/__init__.pyi,sha256=MdpU1cY6FvYpVacztZz0uIbQDYHgLx3vs9WLpG9ftKE,2197
220
- bpy/ops/export_scene/__init__.pyi,sha256=KeWNJhzHkirCE5T3bzufjGlDHaDC8TbSjMl4K7E6OKY,39077
220
+ bpy/ops/export_scene/__init__.pyi,sha256=muwROBhDUCMj-ValtQQScvW8v1kDzMj-Z6cmepHwjxg,39078
221
221
  bpy/ops/extensions/__init__.pyi,sha256=zCW9mLu3EIwz3Rrkc1vhQ7zn6zIB72BsLCYfgkMv574,18048
222
222
  bpy/ops/file/__init__.pyi,sha256=JTtbrNEORTNtuauMTwOQkQX1C2JHjQL-bubGccj14rw,25681
223
223
  bpy/ops/fluid/__init__.pyi,sha256=PM7jfvEosHmKpWcBTNwUgExKC5GpPHczHl82bvgTnWs,5516
@@ -225,9 +225,9 @@ bpy/ops/font/__init__.pyi,sha256=cVNVWyyoUAeuHvbrQLNfZbatFnhweBGwh7rS-Zxuc-g,191
225
225
  bpy/ops/geometry/__init__.pyi,sha256=Ix8MGXa5gZBQT3aWGmDfrKPx-MTtmloRflfwiHicuTU,8987
226
226
  bpy/ops/gizmogroup/__init__.pyi,sha256=OFN5NNvr_HFc_L7pvjSWKY_D8nF2_Ue8z6nGjB-_xac,1595
227
227
  bpy/ops/gpencil/__init__.pyi,sha256=xef0m8m4jVKzqncUi9CezsXgqES8iAYJzcEKtDfTXTY,6112
228
- bpy/ops/graph/__init__.pyi,sha256=uH--tIvXthUVXBm5vcmpGw_OgRG5mMZ8ITttZBqUDSo,51543
229
- bpy/ops/grease_pencil/__init__.pyi,sha256=_weJmedsJoTzxJljcHi4BBnU6Co0oFOxjpXHiUa67ZM,74880
230
- bpy/ops/image/__init__.pyi,sha256=dJQe9-vHnpLHxDqXWfx3Yq9CyIHKkCBsxf4-vS1rmu8,59838
228
+ bpy/ops/graph/__init__.pyi,sha256=My3PsXepSrn3TGQ7ePFoYML5sjzTp8LRqsPqqng7iak,51523
229
+ bpy/ops/grease_pencil/__init__.pyi,sha256=gEODEiBglzLM1kzQFtZs8mJnyNJqa5UJqIkdHMQp2Io,74847
230
+ bpy/ops/image/__init__.pyi,sha256=SUn2SBcvRXEHMizauJfTVFY8KBvXV_7M2meGZDxEDu8,59838
231
231
  bpy/ops/import_anim/__init__.pyi,sha256=7BExOyxBpXdbfQQN_foBI0FIfqHte9U1nfWEvNKYH0Y,3216
232
232
  bpy/ops/import_curve/__init__.pyi,sha256=U3eiL0CsWblWZe8O58JOxSXhr2sgHRHKwVzozIMsck4,651
233
233
  bpy/ops/import_scene/__init__.pyi,sha256=2PpUKIKaBa5NVV2eSDFHAOQAjgupZerP1BDwyZHDv90,10119
@@ -240,7 +240,7 @@ bpy/ops/mball/__init__.pyi,sha256=jqOLev5gvBK4fx9CLXj1qxWyTp3z0kqVG1Fxk4Mnzn8,53
240
240
  bpy/ops/mesh/__init__.pyi,sha256=a_x0zfWW8LcwXgWU2yFYE4DXlW3N5XeMrXscL73LOT4,157018
241
241
  bpy/ops/nla/__init__.pyi,sha256=uhpT_iNKbnI3zN0dI3_w4ZuEeBSGy_2Z4eUsTTj3z48,24221
242
242
  bpy/ops/node/__init__.pyi,sha256=3P5RJJLhHtwason9eKv2W9UAU16jKsiipNFstrmKNDQ,69731
243
- bpy/ops/object/__init__.pyi,sha256=iyMPRIB-U81MU8Yk9Ni-A_CQEVMpMR2ZLADmQAVeCG8,203427
243
+ bpy/ops/object/__init__.pyi,sha256=yRRRT_E5Jf3A3ffiejM-JVYelm2xDKGkp5qEc2221S0,203427
244
244
  bpy/ops/outliner/__init__.pyi,sha256=o5OxwPlRmadDEhvCUSmt8u1aJ8euFSCV-UYCknYymdI,38952
245
245
  bpy/ops/paint/__init__.pyi,sha256=CwUI97PIYq0-IiQu9oZBP1cvc62P4wSTDyPbnILs5EI,44921
246
246
  bpy/ops/paintcurve/__init__.pyi,sha256=ej9Ou29-VVY4oHCAsSmdBtOjcO0ZQpQdsBSzfDKYMJw,4261
@@ -248,17 +248,17 @@ bpy/ops/palette/__init__.pyi,sha256=gahGTlUFZDjuWskmV4VwIEtBlBkAAP78lFdypwqEoi4,
248
248
  bpy/ops/particle/__init__.pyi,sha256=z5f5lpxFIGleBDvEAL3Sd8M07g4kw3nFkqE3OfJlo0U,19162
249
249
  bpy/ops/pose/__init__.pyi,sha256=mZNILKiy58dx-YNYXjL-o1Jh3YY4dENOmJgUFEVDzXI,34627
250
250
  bpy/ops/poselib/__init__.pyi,sha256=OfsTzJ1gYLvYd5OGmQjQ6JwQp9UMOKe0m8pIGGLSguU,5250
251
- bpy/ops/preferences/__init__.pyi,sha256=B--ej4NgSwevsHrzn0DGXvZQSa3ZuHZ9olIctybjINQ,24859
251
+ bpy/ops/preferences/__init__.pyi,sha256=5sbdQvV588uvLTF0VjVDxZ_Go2v2woZXguAbdgsoDPo,24858
252
252
  bpy/ops/ptcache/__init__.pyi,sha256=UXfqM90z4atRrWfj-u_OG0wi7OgvMzs0r8usiBp5Sow,2811
253
253
  bpy/ops/render/__init__.pyi,sha256=qgjTSltZ5-pvjFibfkbuahh5PPzPKe1Feo1lRzuxUMQ,9427
254
254
  bpy/ops/rigidbody/__init__.pyi,sha256=kH3fZft8NevNiVP44o_RMGUqx0bj4e1k3ADbJYM3_90,8647
255
255
  bpy/ops/scene/__init__.pyi,sha256=ZCDXo6ygGlCoFNgXs5BixfFTalKQJk48Tn5JKFK4EN4,19445
256
- bpy/ops/screen/__init__.pyi,sha256=brjCQalre8Km7BxXPI6t0j3NBggA1IrsiOwNZ9AmhKc,26004
256
+ bpy/ops/screen/__init__.pyi,sha256=LbfMDdj1eurzDTkFKHtHlAVvzDPIhHXJcc1-KcjuOTw,26028
257
257
  bpy/ops/script/__init__.pyi,sha256=qJGs4LY_-NgCKFwGkOBwvig0LFr5v72A9nL-LQ21HrY,1460
258
- bpy/ops/sculpt/__init__.pyi,sha256=s4QH5ISS9KMBMQ7vCjHP1U7GbC_Pu-pyvNeqB5OftC0,52345
258
+ bpy/ops/sculpt/__init__.pyi,sha256=rx6Cwe39UDt57ekD4u3CsfjrbBIGmGxNGHY7I4St0zg,52342
259
259
  bpy/ops/sculpt_curves/__init__.pyi,sha256=h9WZL7nJe6THcD9vxr7_qxeHb3s9dLuE-GSqd5s8dac,3310
260
260
  bpy/ops/sequencer/__init__.pyi,sha256=m6kIyyDbiXxHpFjA8VpqwZMDmcUZgfehHIFF625hJpE,86908
261
- bpy/ops/sound/__init__.pyi,sha256=wxDDo9nBG2YwbAnOKMemcIJvk42mmHatbDkEU5h9Z7c,17938
261
+ bpy/ops/sound/__init__.pyi,sha256=4j-hBCD71S55-TJ9r6307tdu4s_VRLhq_RdpdgXbako,17940
262
262
  bpy/ops/spreadsheet/__init__.pyi,sha256=Nmr0N99wGYPusUlQC4WGJf2E3WETSGDLjnyGZ9yHQUc,2003
263
263
  bpy/ops/surface/__init__.pyi,sha256=hWXTtX4irgUJXJzgBqM5aHqV04qpu6h0pN0YMGJKE2c,11250
264
264
  bpy/ops/text/__init__.pyi,sha256=iOIrpyZwmzcCkOcEE1pu4MfJr9ucWkOTcuzPnd3fm6E,27727
@@ -270,12 +270,12 @@ bpy/ops/uilist/__init__.pyi,sha256=L4xQFB8gZEK8eR2tymJBIVwALoVQLh9gwGkIjDzORyI,2
270
270
  bpy/ops/uv/__init__.pyi,sha256=ociGOFaeH4aChcVFMtC167ZWtM4roFQveDgKiqbAK3c,52706
271
271
  bpy/ops/view2d/__init__.pyi,sha256=UWYslz64I_HIULKVyiYd9bVK38ypxss_9EZySgQkyuI,9137
272
272
  bpy/ops/view3d/__init__.pyi,sha256=2lr2OOlmYao1DxhG3UugV_WXB8IViYGBL5WXvxHUXOE,41228
273
- bpy/ops/wm/__init__.pyi,sha256=g26a1xh5Yzzbdx4KjqQ5Ib9bMWI4MBmOl39wSQP7FJI,230860
273
+ bpy/ops/wm/__init__.pyi,sha256=EW3yAasqPJTycypXsoger-oi7pHORhP0nedTfPlkhnQ,230865
274
274
  bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
275
275
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
276
276
  bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
277
277
  bpy/props/__init__.pyi,sha256=eVVh1KTFtNf6c-4uSWt4wANzTv1RvN2I2FQ7ewdrKCQ,31045
278
- bpy/types/__init__.pyi,sha256=9rwzJneiIGdsDXj39MANS96W5ftIzkeWoY0Pkp0zZoA,5368456
278
+ bpy/types/__init__.pyi,sha256=lS7qlNHIMoPXoSglOCcs1aCPO10qeP_opHaxfIxYDQM,5368624
279
279
  bpy/typing/__init__.pyi,sha256=l9zIo04M9gyNPPOCFAvFDOwgWgd-dyKCv5yGV6bx41Y,138523
280
280
  bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
281
281
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
358
358
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
359
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
360
360
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- fake_bpy_module-20241016.dist-info/METADATA,sha256=d6CIsqAWugSR6AVXRJcJvuevJPutR9nCoBndZXHRTWc,7204
362
- fake_bpy_module-20241016.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
363
- fake_bpy_module-20241016.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
- fake_bpy_module-20241016.dist-info/RECORD,,
361
+ fake_bpy_module-20241018.dist-info/METADATA,sha256=lzX9VxVd0KrlLqY6NFCDPDdyvKCdqcWT15v0l-meogE,7204
362
+ fake_bpy_module-20241018.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
363
+ fake_bpy_module-20241018.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
+ fake_bpy_module-20241018.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5