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

@@ -291,7 +291,8 @@ def gltf(
291
291
  export_draco_color_quantization: int | None = 10,
292
292
  export_draco_generic_quantization: int | None = 12,
293
293
  export_tangents: bool | None = False,
294
- export_materials: typing.Literal["EXPORT", "PLACEHOLDER", "NONE"] | None = "EXPORT",
294
+ export_materials: typing.Literal["EXPORT", "PLACEHOLDER", "VIEWPORT", "NONE"]
295
+ | None = "EXPORT",
295
296
  export_unused_images: bool | None = False,
296
297
  export_unused_textures: bool | None = False,
297
298
  export_vertex_color: typing.Literal["MATERIAL", "ACTIVE", "NAME", "NONE"]
@@ -498,9 +499,12 @@ def gltf(
498
499
  PLACEHOLDER
499
500
  Placeholder -- Do not export materials, but write multiple primitive groups per mesh, keeping material slot information.
500
501
 
502
+ VIEWPORT
503
+ Viewport -- Export minimal materials as defined in Viewport display properties.
504
+
501
505
  NONE
502
506
  No export -- Do not export materials, and combine mesh primitive groups, losing material slot information.
503
- :type export_materials: typing.Literal['EXPORT','PLACEHOLDER','NONE'] | None
507
+ :type export_materials: typing.Literal['EXPORT','PLACEHOLDER','VIEWPORT','NONE'] | None
504
508
  :param export_unused_images: Unused Images, Export images not assigned to any material
505
509
  :type export_unused_images: bool | None
506
510
  :param export_unused_textures: Prepare Unused Textures, Export image texture nodes not assigned to any material. This feature is not standard and needs an external extension to be included in the glTF file
@@ -131,8 +131,10 @@ def gltf(
131
131
  bone_shape_scale_factor: float | None = 1.0,
132
132
  guess_original_bind_pose: bool | None = True,
133
133
  import_webp_texture: bool | None = False,
134
+ import_unused_materials: bool | None = False,
134
135
  import_select_created_objects: bool | None = True,
135
136
  import_scene_extras: bool | None = True,
137
+ import_scene_as_collection: bool | None = True,
136
138
  ):
137
139
  """Load a glTF 2.0 file
138
140
 
@@ -182,8 +184,12 @@ def gltf(
182
184
  :type guess_original_bind_pose: bool | None
183
185
  :param import_webp_texture: Import WebP Textures, If a texture exists in WebP format, loads the WebP texture instead of the fallback PNG/JPEG one
184
186
  :type import_webp_texture: bool | None
187
+ :param import_unused_materials: Import Unused Materials & Images, Import materials & Images not assigned to any mesh
188
+ :type import_unused_materials: bool | None
185
189
  :param import_select_created_objects: Select Imported Objects, Select created objects at the end of the import
186
190
  :type import_select_created_objects: bool | None
187
191
  :param import_scene_extras: Import Scene Extras, Import scene extras as custom properties. Existing custom properties will be overwritten
188
192
  :type import_scene_extras: bool | None
193
+ :param import_scene_as_collection: Import Scene as Collection, Import the scene as a collection
194
+ :type import_scene_as_collection: bool | None
189
195
  """
bpy/types/__init__.pyi CHANGED
@@ -122066,11 +122066,17 @@ class BlendTexture(Texture, ID, bpy_struct):
122066
122066
  :type: typing.Literal['HORIZONTAL','VERTICAL']
122067
122067
  """
122068
122068
 
122069
- users_material: typing.Any
122070
- """ Materials that use this texture(readonly)"""
122069
+ users_material: tuple[Material, ...]
122070
+ """ Materials that use this texture(readonly)
122071
122071
 
122072
- users_object_modifier: typing.Any
122073
- """ Object modifiers that use this texture(readonly)"""
122072
+ :type: tuple[Material, ...]
122073
+ """
122074
+
122075
+ users_object_modifier: tuple[Object, ...]
122076
+ """ Object modifiers that use this texture(readonly)
122077
+
122078
+ :type: tuple[Object, ...]
122079
+ """
122074
122080
 
122075
122081
  @classmethod
122076
122082
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -128013,11 +128019,17 @@ class CloudsTexture(Texture, ID, bpy_struct):
128013
128019
  :type: typing.Literal['SOFT_NOISE','HARD_NOISE']
128014
128020
  """
128015
128021
 
128016
- users_material: typing.Any
128017
- """ Materials that use this texture(readonly)"""
128022
+ users_material: tuple[Material, ...]
128023
+ """ Materials that use this texture(readonly)
128018
128024
 
128019
- users_object_modifier: typing.Any
128020
- """ Object modifiers that use this texture(readonly)"""
128025
+ :type: tuple[Material, ...]
128026
+ """
128027
+
128028
+ users_object_modifier: tuple[Object, ...]
128029
+ """ Object modifiers that use this texture(readonly)
128030
+
128031
+ :type: tuple[Object, ...]
128032
+ """
128021
128033
 
128022
128034
  @classmethod
128023
128035
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -128153,11 +128165,17 @@ class Collection(ID, bpy_struct):
128153
128165
  :type: bool
128154
128166
  """
128155
128167
 
128156
- children_recursive: typing.Any
128157
- """ A list of all children from this collection.(readonly)"""
128168
+ children_recursive: list[Collection]
128169
+ """ A list of all children from this collection.(readonly)
128170
+
128171
+ :type: list[Collection]
128172
+ """
128158
128173
 
128159
- users_dupli_group: typing.Any
128160
- """ The collection instance objects this collection is used in(readonly)"""
128174
+ users_dupli_group: tuple[Object, ...]
128175
+ """ The collection instance objects this collection is used in(readonly)
128176
+
128177
+ :type: tuple[Object, ...]
128178
+ """
128161
128179
 
128162
128180
  @classmethod
128163
128181
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -129199,19 +129217,19 @@ class CompositorNodeBilateralblur(CompositorNode, NodeInternal, Node, bpy_struct
129199
129217
  """Adaptively blur image, while retaining sharp edges"""
129200
129218
 
129201
129219
  iterations: int
129202
- """
129220
+ """ (Deprecated: Use Size input instead.)
129203
129221
 
129204
129222
  :type: int
129205
129223
  """
129206
129224
 
129207
129225
  sigma_color: float
129208
- """
129226
+ """ (Deprecated: Use Threshold input instead.)
129209
129227
 
129210
129228
  :type: float
129211
129229
  """
129212
129230
 
129213
129231
  sigma_space: float
129214
- """
129232
+ """ (Deprecated: Use Size input instead.)
129215
129233
 
129216
129234
  :type: float
129217
129235
  """
@@ -129339,7 +129357,7 @@ class CompositorNodeBlur(CompositorNode, NodeInternal, Node, bpy_struct):
129339
129357
  """
129340
129358
 
129341
129359
  use_variable_size: bool
129342
- """ Support variable blur per pixel when using an image for size input
129360
+ """ Support variable blur per pixel when using an image for size input. (Deprecated: Unused.)
129343
129361
 
129344
129362
  :type: bool
129345
129363
  """
@@ -129411,7 +129429,7 @@ class CompositorNodeBokehBlur(CompositorNode, NodeInternal, Node, bpy_struct):
129411
129429
  """
129412
129430
 
129413
129431
  use_variable_size: bool
129414
- """ Support variable blur per pixel when using an image for size input
129432
+ """ Support variable blur per pixel when using an image for size input. (Deprecated: Unused.)
129415
129433
 
129416
129434
  :type: bool
129417
129435
  """
@@ -130739,7 +130757,7 @@ class CompositorNodeComposite(CompositorNode, NodeInternal, Node, bpy_struct):
130739
130757
  """Final render output"""
130740
130758
 
130741
130759
  use_alpha: bool
130742
- """ Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1)
130760
+ """ Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1). (Deprecated: Unused.)
130743
130761
 
130744
130762
  :type: bool
130745
130763
  """
@@ -131547,7 +131565,7 @@ class CompositorNodeDefocus(CompositorNode, NodeInternal, Node, bpy_struct):
131547
131565
  """
131548
131566
 
131549
131567
  threshold: float
131550
- """ CoC radius threshold, prevents background bleed on in-focus midground, 0 is disabled
131568
+ """ CoC radius threshold, prevents background bleed on in-focus midground, 0 is disabled. (Deprecated: Unused.)
131551
131569
 
131552
131570
  :type: float
131553
131571
  """
@@ -131559,7 +131577,7 @@ class CompositorNodeDefocus(CompositorNode, NodeInternal, Node, bpy_struct):
131559
131577
  """
131560
131578
 
131561
131579
  use_preview: bool
131562
- """ Enable low quality mode, useful for preview
131580
+ """ Enable low quality mode, useful for preview. (Deprecated: Unused.)
131563
131581
 
131564
131582
  :type: bool
131565
131583
  """
@@ -136396,7 +136414,7 @@ class CompositorNodeViewer(CompositorNode, NodeInternal, Node, bpy_struct):
136396
136414
  """
136397
136415
 
136398
136416
  use_alpha: bool
136399
- """ Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1)
136417
+ """ Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1). (Deprecated: Unused.)
136400
136418
 
136401
136419
  :type: bool
136402
136420
  """
@@ -140019,11 +140037,17 @@ class DistortedNoiseTexture(Texture, ID, bpy_struct):
140019
140037
  :type: float
140020
140038
  """
140021
140039
 
140022
- users_material: typing.Any
140023
- """ Materials that use this texture(readonly)"""
140040
+ users_material: tuple[Material, ...]
140041
+ """ Materials that use this texture(readonly)
140024
140042
 
140025
- users_object_modifier: typing.Any
140026
- """ Object modifiers that use this texture(readonly)"""
140043
+ :type: tuple[Material, ...]
140044
+ """
140045
+
140046
+ users_object_modifier: tuple[Object, ...]
140047
+ """ Object modifiers that use this texture(readonly)
140048
+
140049
+ :type: tuple[Object, ...]
140050
+ """
140027
140051
 
140028
140052
  @classmethod
140029
140053
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -171653,11 +171677,17 @@ class ImageTexture(Texture, ID, bpy_struct):
171653
171677
  :type: bool
171654
171678
  """
171655
171679
 
171656
- users_material: typing.Any
171657
- """ Materials that use this texture(readonly)"""
171680
+ users_material: tuple[Material, ...]
171681
+ """ Materials that use this texture(readonly)
171682
+
171683
+ :type: tuple[Material, ...]
171684
+ """
171685
+
171686
+ users_object_modifier: tuple[Object, ...]
171687
+ """ Object modifiers that use this texture(readonly)
171658
171688
 
171659
- users_object_modifier: typing.Any
171660
- """ Object modifiers that use this texture(readonly)"""
171689
+ :type: tuple[Object, ...]
171690
+ """
171661
171691
 
171662
171692
  @classmethod
171663
171693
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -173614,8 +173644,11 @@ class Library(ID, bpy_struct):
173614
173644
  :type: bpy_prop_array[int]
173615
173645
  """
173616
173646
 
173617
- users_id: typing.Any
173618
- """ ID data blocks which use this library(readonly)"""
173647
+ users_id: tuple[ID, ...]
173648
+ """ ID data-blocks that use this library(readonly)
173649
+
173650
+ :type: tuple[ID, ...]
173651
+ """
173619
173652
 
173620
173653
  def reload(self):
173621
173654
  """Reload this library and all its linked data-blocks"""
@@ -178521,11 +178554,17 @@ class MagicTexture(Texture, ID, bpy_struct):
178521
178554
  :type: float
178522
178555
  """
178523
178556
 
178524
- users_material: typing.Any
178525
- """ Materials that use this texture(readonly)"""
178557
+ users_material: tuple[Material, ...]
178558
+ """ Materials that use this texture(readonly)
178559
+
178560
+ :type: tuple[Material, ...]
178561
+ """
178526
178562
 
178527
- users_object_modifier: typing.Any
178528
- """ Object modifiers that use this texture(readonly)"""
178563
+ users_object_modifier: tuple[Object, ...]
178564
+ """ Object modifiers that use this texture(readonly)
178565
+
178566
+ :type: tuple[Object, ...]
178567
+ """
178529
178568
 
178530
178569
  @classmethod
178531
178570
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178654,11 +178693,17 @@ class MarbleTexture(Texture, ID, bpy_struct):
178654
178693
  :type: float
178655
178694
  """
178656
178695
 
178657
- users_material: typing.Any
178658
- """ Materials that use this texture(readonly)"""
178696
+ users_material: tuple[Material, ...]
178697
+ """ Materials that use this texture(readonly)
178698
+
178699
+ :type: tuple[Material, ...]
178700
+ """
178659
178701
 
178660
- users_object_modifier: typing.Any
178661
- """ Object modifiers that use this texture(readonly)"""
178702
+ users_object_modifier: tuple[Object, ...]
178703
+ """ Object modifiers that use this texture(readonly)
178704
+
178705
+ :type: tuple[Object, ...]
178706
+ """
178662
178707
 
178663
178708
  @classmethod
178664
178709
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -184401,11 +184446,17 @@ class MusgraveTexture(Texture, ID, bpy_struct):
184401
184446
  :type: float
184402
184447
  """
184403
184448
 
184404
- users_material: typing.Any
184405
- """ Materials that use this texture(readonly)"""
184449
+ users_material: tuple[Material, ...]
184450
+ """ Materials that use this texture(readonly)
184451
+
184452
+ :type: tuple[Material, ...]
184453
+ """
184454
+
184455
+ users_object_modifier: tuple[Object, ...]
184456
+ """ Object modifiers that use this texture(readonly)
184406
184457
 
184407
- users_object_modifier: typing.Any
184408
- """ Object modifiers that use this texture(readonly)"""
184458
+ :type: tuple[Object, ...]
184459
+ """
184409
184460
 
184410
184461
  @classmethod
184411
184462
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -191395,11 +191446,17 @@ class NodesModifierWarning(bpy_struct):
191395
191446
  class NoiseTexture(Texture, ID, bpy_struct):
191396
191447
  """Procedural noise texture"""
191397
191448
 
191398
- users_material: typing.Any
191399
- """ Materials that use this texture(readonly)"""
191449
+ users_material: tuple[Material, ...]
191450
+ """ Materials that use this texture(readonly)
191400
191451
 
191401
- users_object_modifier: typing.Any
191402
- """ Object modifiers that use this texture(readonly)"""
191452
+ :type: tuple[Material, ...]
191453
+ """
191454
+
191455
+ users_object_modifier: tuple[Object, ...]
191456
+ """ Object modifiers that use this texture(readonly)
191457
+
191458
+ :type: tuple[Object, ...]
191459
+ """
191403
191460
 
191404
191461
  @classmethod
191405
191462
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -192226,10 +192283,10 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
192226
192283
  :type: tuple[Object, ...]
192227
192284
  """
192228
192285
 
192229
- children_recursive: tuple[Object, ...]
192286
+ children_recursive: list[Object]
192230
192287
  """ A list of all children from this object.(readonly)
192231
192288
 
192232
- :type: tuple[Object, ...]
192289
+ :type: list[Object]
192233
192290
  """
192234
192291
 
192235
192292
  users_collection: tuple[Collection, ...]
@@ -220320,11 +220377,17 @@ class StucciTexture(Texture, ID, bpy_struct):
220320
220377
  :type: float
220321
220378
  """
220322
220379
 
220323
- users_material: typing.Any
220324
- """ Materials that use this texture(readonly)"""
220380
+ users_material: tuple[Material, ...]
220381
+ """ Materials that use this texture(readonly)
220325
220382
 
220326
- users_object_modifier: typing.Any
220327
- """ Object modifiers that use this texture(readonly)"""
220383
+ :type: tuple[Material, ...]
220384
+ """
220385
+
220386
+ users_object_modifier: tuple[Object, ...]
220387
+ """ Object modifiers that use this texture(readonly)
220388
+
220389
+ :type: tuple[Object, ...]
220390
+ """
220328
220391
 
220329
220392
  @classmethod
220330
220393
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -221814,11 +221877,17 @@ class Texture(ID, bpy_struct):
221814
221877
  :type: bool
221815
221878
  """
221816
221879
 
221817
- users_material: typing.Any
221818
- """ Materials that use this texture(readonly)"""
221880
+ users_material: tuple[Material, ...]
221881
+ """ Materials that use this texture(readonly)
221819
221882
 
221820
- users_object_modifier: typing.Any
221821
- """ Object modifiers that use this texture(readonly)"""
221883
+ :type: tuple[Material, ...]
221884
+ """
221885
+
221886
+ users_object_modifier: tuple[Object, ...]
221887
+ """ Object modifiers that use this texture(readonly)
221888
+
221889
+ :type: tuple[Object, ...]
221890
+ """
221822
221891
 
221823
221892
  def evaluate(
221824
221893
  self, value: collections.abc.Sequence[float] | mathutils.Vector | None
@@ -228495,7 +228564,7 @@ class ToolSettings(bpy_struct):
228495
228564
  """
228496
228565
 
228497
228566
  use_auto_normalize: bool
228498
- """ Ensure all bone-deforming vertex groups add up to 1.0 while weight painting
228567
+ """ Ensure all bone-deforming vertex groups add up to 1.0 while weight painting or assigning to vertices
228499
228568
 
228500
228569
  :type: bool
228501
228570
  """
@@ -234598,6 +234667,12 @@ class View3DOverlay(bpy_struct):
234598
234667
  :type: bool
234599
234668
  """
234600
234669
 
234670
+ use_gpencil_onion_skin_active_object: bool
234671
+ """ Show only the onion skins of the active object
234672
+
234673
+ :type: bool
234674
+ """
234675
+
234601
234676
  use_gpencil_show_directions: bool
234602
234677
  """ Show stroke drawing direction with a bigger green dot (start) and smaller red dot (end) points
234603
234678
 
@@ -236018,11 +236093,17 @@ class VoronoiTexture(Texture, ID, bpy_struct):
236018
236093
  :type: float
236019
236094
  """
236020
236095
 
236021
- users_material: typing.Any
236022
- """ Materials that use this texture(readonly)"""
236096
+ users_material: tuple[Material, ...]
236097
+ """ Materials that use this texture(readonly)
236023
236098
 
236024
- users_object_modifier: typing.Any
236025
- """ Object modifiers that use this texture(readonly)"""
236099
+ :type: tuple[Material, ...]
236100
+ """
236101
+
236102
+ users_object_modifier: tuple[Object, ...]
236103
+ """ Object modifiers that use this texture(readonly)
236104
+
236105
+ :type: tuple[Object, ...]
236106
+ """
236026
236107
 
236027
236108
  @classmethod
236028
236109
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -237491,11 +237572,17 @@ class WoodTexture(Texture, ID, bpy_struct):
237491
237572
  :type: typing.Literal['BANDS','RINGS','BANDNOISE','RINGNOISE']
237492
237573
  """
237493
237574
 
237494
- users_material: typing.Any
237495
- """ Materials that use this texture(readonly)"""
237575
+ users_material: tuple[Material, ...]
237576
+ """ Materials that use this texture(readonly)
237496
237577
 
237497
- users_object_modifier: typing.Any
237498
- """ Object modifiers that use this texture(readonly)"""
237578
+ :type: tuple[Material, ...]
237579
+ """
237580
+
237581
+ users_object_modifier: tuple[Object, ...]
237582
+ """ Object modifiers that use this texture(readonly)
237583
+
237584
+ :type: tuple[Object, ...]
237585
+ """
237499
237586
 
237500
237587
  @classmethod
237501
237588
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250501
3
+ Version: 20250503
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
@@ -220,7 +220,7 @@ bpy/ops/cycles/__init__.pyi,sha256=wpr-6dy_yQc7R4mF-e3sPK67nR2X6hMnbLevI6xHozk,1
220
220
  bpy/ops/dpaint/__init__.pyi,sha256=9c4iWq0b5rd_bwy132hZ0puT1b6MYsQFD9Gsuy9IFR8,1582
221
221
  bpy/ops/ed/__init__.pyi,sha256=ToAbK51M0V5uEjpG4ENeXLfzqqzt0RBPpqD7-cP_ddI,7129
222
222
  bpy/ops/export_anim/__init__.pyi,sha256=vMJtrDBdESAFGNAyzK3vKVdjfhzjbaS5I3qqGFZatS4,2054
223
- bpy/ops/export_scene/__init__.pyi,sha256=WQxTBro7MQ0JY4rMtRCHocmBfBMc2iEG7aF5zBXdPgE,40452
223
+ bpy/ops/export_scene/__init__.pyi,sha256=5gnAaKEPBw_7vM2XiCNpKjAbCsXP-0hF4OJso4-elDA,40577
224
224
  bpy/ops/extensions/__init__.pyi,sha256=9L0hxUtZuQoelKZWm8KxnOXP_D9GlK4anzAcHDFZOCw,12503
225
225
  bpy/ops/file/__init__.pyi,sha256=RcQ7PXPKaFvA5XNsUbGrovqFjvjlvJ3LsEdp8k9MkCM,19287
226
226
  bpy/ops/fluid/__init__.pyi,sha256=lJDfm8cfRkm9S42vutMzeAeZBezIPIheRrMVaYpr4cY,3218
@@ -233,7 +233,7 @@ bpy/ops/grease_pencil/__init__.pyi,sha256=i2YanaDA0kzc5vCXupQ7V1bW0MMKpfoL4fXVE2
233
233
  bpy/ops/image/__init__.pyi,sha256=mBK-uC_UY3pesucvwHPdNNTf092_QxGPCYb38Pj-C24,52493
234
234
  bpy/ops/import_anim/__init__.pyi,sha256=ZyT-zjTRWvhOapP9D8G_eHO09JJNlT-ofF1SCC0rrOk,3073
235
235
  bpy/ops/import_curve/__init__.pyi,sha256=_4ievJ9zQxVxcyTkZ1exj42uAPD_WZUN5iM-ZfRsptw,741
236
- bpy/ops/import_scene/__init__.pyi,sha256=bC9xthxc0aJ57QN0gkSaK2hilWW6umPwkqmE_koyiI4,10309
236
+ bpy/ops/import_scene/__init__.pyi,sha256=q3qWtOyLuKSV3DvlpsgRkeSvLylvHUtqMwvR70eKbfw,10745
237
237
  bpy/ops/info/__init__.pyi,sha256=QtQXU2Ik1oPvylqz_Yzwgl8ZXdb6WTHBykyfuohoASw,3117
238
238
  bpy/ops/lattice/__init__.pyi,sha256=euuQEIeUigpNjo0boVKO5q6A5byqBDe-s-hutflsDbg,3606
239
239
  bpy/ops/marker/__init__.pyi,sha256=enjr5gKs8BHGiz8vFW4xNK6CA-WJJI_FgF3sRdAUzLA,5403
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuN
279
279
  bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
280
280
  bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
281
281
  bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
282
- bpy/types/__init__.pyi,sha256=G-cNi3XDxI8AlgGa4TUEKTdQD-cKofkSaZMmAvTEf78,5597835
282
+ bpy/types/__init__.pyi,sha256=X0upls2ta_qZKo-zqw4zY9Pq127wkxRgBEQN1hiDUyg,5599453
283
283
  bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
284
284
  bpy/utils/previews/__init__.pyi,sha256=Pji8UKqvI3AJTk5v3nCK92URlJfehxuoaaJW6n9L7XU,2342
285
285
  bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
361
361
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
362
  rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
363
363
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
- fake_bpy_module-20250501.dist-info/METADATA,sha256=y5867qZmx0BXAZ_L38ibFdHiZ4Gp18GIj8oKen3kWOQ,7429
365
- fake_bpy_module-20250501.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
366
- fake_bpy_module-20250501.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250501.dist-info/RECORD,,
364
+ fake_bpy_module-20250503.dist-info/METADATA,sha256=dMZKMlIMQN8oTnEg-1qZESpPgZPOQbZetpV_o3sR0mo,7429
365
+ fake_bpy_module-20250503.dist-info/WHEEL,sha256=7ciDxtlje1X8OhobNuGgi1t-ACdFSelPnSmDPrtlobY,91
366
+ fake_bpy_module-20250503.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250503.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.1.0)
2
+ Generator: setuptools (80.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5