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

@@ -22,12 +22,12 @@ def fbx(
22
22
  use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
23
23
  bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
24
24
  object_types: typing.Optional[typing.Any] = {
25
- '"ARMATURE"',
26
- '"EMPTY"',
27
- '"OTHER"',
28
25
  '"LIGHT"',
29
- '"MESH"',
30
26
  '"CAMERA"',
27
+ '"MESH"',
28
+ '"EMPTY"',
29
+ '"OTHER"',
30
+ '"ARMATURE"',
31
31
  },
32
32
  use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
33
33
  use_mesh_modifiers_render: typing.Optional[typing.Union[bool, typing.Any]] = True,
bpy/ops/mesh/__init__.pyi CHANGED
@@ -2673,7 +2673,7 @@ def primitive_cube_add(
2673
2673
  rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
2674
2674
  scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
2675
2675
  ):
2676
- """Construct a cube mesh
2676
+ """Construct a cube mesh that consists of six square faces
2677
2677
 
2678
2678
  :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2679
2679
  :type execution_context: typing.Optional[typing.Union[int, str]]
@@ -2839,7 +2839,7 @@ def primitive_grid_add(
2839
2839
  rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
2840
2840
  scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
2841
2841
  ):
2842
- """Construct a grid mesh
2842
+ """Construct a subdivided plane mesh
2843
2843
 
2844
2844
  :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2845
2845
  :type execution_context: typing.Optional[typing.Union[int, str]]
@@ -2891,7 +2891,7 @@ def primitive_ico_sphere_add(
2891
2891
  rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
2892
2892
  scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
2893
2893
  ):
2894
- """Construct an Icosphere mesh
2894
+ """Construct a spherical mesh that consists of equally sized triangles
2895
2895
 
2896
2896
  :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2897
2897
  :type execution_context: typing.Optional[typing.Union[int, str]]
@@ -3101,7 +3101,7 @@ def primitive_uv_sphere_add(
3101
3101
  rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
3102
3102
  scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
3103
3103
  ):
3104
- """Construct a UV sphere mesh
3104
+ """Construct a spherical mesh with quad faces, except for triangle faces at the top and bottom
3105
3105
 
3106
3106
  :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
3107
3107
  :type execution_context: typing.Optional[typing.Union[int, str]]
bpy/ops/nla/__init__.pyi CHANGED
@@ -119,10 +119,10 @@ def bake(
119
119
  bake_types: typing.Optional[typing.Any] = {'"POSE"'},
120
120
  channel_types: typing.Optional[typing.Any] = {
121
121
  '"PROPS"',
122
- '"SCALE"',
123
122
  '"LOCATION"',
124
- '"BBONE"',
125
123
  '"ROTATION"',
124
+ '"SCALE"',
125
+ '"BBONE"',
126
126
  },
127
127
  ):
128
128
  """Bake all selected objects location/scale/rotation animation to an action
@@ -341,7 +341,6 @@ def hide_show(
341
341
  action: typing.Optional[typing.Any] = "HIDE",
342
342
  area: typing.Optional[typing.Any] = "Inside",
343
343
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
344
- use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
345
344
  ):
346
345
  """Hide/show some vertices
347
346
 
@@ -376,8 +375,6 @@ def hide_show(
376
375
  :type area: typing.Optional[typing.Any]
377
376
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
378
377
  :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
379
- :param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
380
- :type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
381
378
  """
382
379
 
383
380
  ...
@@ -421,7 +418,6 @@ def hide_show_lasso_gesture(
421
418
  action: typing.Optional[typing.Any] = "HIDE",
422
419
  area: typing.Optional[typing.Any] = "Inside",
423
420
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
424
- use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
425
421
  ):
426
422
  """Hide/show some vertices
427
423
 
@@ -448,8 +444,6 @@ def hide_show_lasso_gesture(
448
444
  :type area: typing.Optional[typing.Any]
449
445
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
450
446
  :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
451
- :param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
452
- :type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
453
447
  """
454
448
 
455
449
  ...
@@ -547,7 +541,6 @@ def mask_box_gesture(
547
541
  ymax: typing.Optional[typing.Any] = 0,
548
542
  wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
549
543
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
550
- use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
551
544
  mode: typing.Optional[typing.Any] = "VALUE",
552
545
  value: typing.Optional[typing.Any] = 1.0,
553
546
  ):
@@ -568,8 +561,6 @@ def mask_box_gesture(
568
561
  :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
569
562
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
570
563
  :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
571
- :param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
572
- :type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
573
564
  :param mode: Mode
574
565
 
575
566
  VALUE
@@ -630,7 +621,6 @@ def mask_lasso_gesture(
630
621
  bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
631
622
  ] = None,
632
623
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
633
- use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
634
624
  mode: typing.Optional[typing.Any] = "VALUE",
635
625
  value: typing.Optional[typing.Any] = 1.0,
636
626
  ):
@@ -643,8 +633,6 @@ def mask_lasso_gesture(
643
633
  :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
644
634
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
645
635
  :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
646
- :param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
647
- :type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
648
636
  :param mode: Mode
649
637
 
650
638
  VALUE
@@ -55,7 +55,7 @@ def cloth_filter(
55
55
  bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
56
56
  ] = None,
57
57
  type: typing.Optional[typing.Any] = "GRAVITY",
58
- force_axis: typing.Optional[typing.Any] = {'"Y"', '"X"', '"Z"'},
58
+ force_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
59
59
  orientation: typing.Optional[typing.Any] = "LOCAL",
60
60
  cloth_mass: typing.Optional[typing.Any] = 1.0,
61
61
  cloth_damping: typing.Optional[typing.Any] = 0.0,
@@ -304,7 +304,6 @@ def face_set_box_gesture(
304
304
  ymax: typing.Optional[typing.Any] = 0,
305
305
  wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
306
306
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
307
- use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
308
307
  ):
309
308
  """Add face set within the box as you move the brush
310
309
 
@@ -323,8 +322,6 @@ def face_set_box_gesture(
323
322
  :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
324
323
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
325
324
  :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
326
- :param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
327
- :type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
328
325
  """
329
326
 
330
327
  ...
@@ -413,7 +410,6 @@ def face_set_lasso_gesture(
413
410
  bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
414
411
  ] = None,
415
412
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
416
- use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
417
413
  ):
418
414
  """Add face set within the lasso as you move the brush
419
415
 
@@ -424,8 +420,6 @@ def face_set_lasso_gesture(
424
420
  :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
425
421
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
426
422
  :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
427
- :param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
428
- :type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
429
423
  """
430
424
 
431
425
  ...
@@ -662,7 +656,7 @@ def mesh_filter(
662
656
  bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
663
657
  ] = None,
664
658
  type: typing.Optional[typing.Any] = "INFLATE",
665
- deform_axis: typing.Optional[typing.Any] = {'"Y"', '"X"', '"Z"'},
659
+ deform_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
666
660
  orientation: typing.Optional[typing.Any] = "LOCAL",
667
661
  surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
668
662
  surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
@@ -963,7 +957,6 @@ def trim_box_gesture(
963
957
  ymax: typing.Optional[typing.Any] = 0,
964
958
  wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
965
959
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
966
- use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
967
960
  trim_mode: typing.Optional[typing.Any] = "DIFFERENCE",
968
961
  use_cursor_depth: typing.Optional[typing.Union[bool, typing.Any]] = False,
969
962
  trim_orientation: typing.Optional[typing.Any] = "VIEW",
@@ -986,8 +979,6 @@ def trim_box_gesture(
986
979
  :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
987
980
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
988
981
  :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
989
- :param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
990
- :type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
991
982
  :param trim_mode: Trim Mode
992
983
 
993
984
  DIFFERENCE
@@ -1032,7 +1023,6 @@ def trim_lasso_gesture(
1032
1023
  bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
1033
1024
  ] = None,
1034
1025
  use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
1035
- use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
1036
1026
  trim_mode: typing.Optional[typing.Any] = "DIFFERENCE",
1037
1027
  use_cursor_depth: typing.Optional[typing.Union[bool, typing.Any]] = False,
1038
1028
  trim_orientation: typing.Optional[typing.Any] = "VIEW",
@@ -1047,8 +1037,6 @@ def trim_lasso_gesture(
1047
1037
  :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
1048
1038
  :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
1049
1039
  :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
1050
- :param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
1051
- :type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
1052
1040
  :param trim_mode: Trim Mode
1053
1041
 
1054
1042
  DIFFERENCE
bpy/types/__init__.pyi CHANGED
@@ -473,7 +473,7 @@ class bpy_struct(typing.Generic[GenericType]):
473
473
 
474
474
  INSERTKEY_VISUAL Insert keyframes based on 'visual transforms'.
475
475
 
476
- INSERTKEY_XYZ_TO_RGB Color for newly added transformation F-Curves (Location, Rotation, Scale) is based on the transform axis.
476
+ INSERTKEY_XYZ_TO_RGB This flag is no longer in use, and is here so that code that uses it doesn't break. The XYZ=RGB coloring is determined by the animation preferences.
477
477
 
478
478
  INSERTKEY_REPLACE Only replace already existing keyframes.
479
479
 
@@ -26291,10 +26291,10 @@ class KeyConfigurations(bpy_struct):
26291
26291
  context: typing.Optional[typing.Any] = "INVOKE_DEFAULT",
26292
26292
  properties: typing.Optional["OperatorProperties"] = None,
26293
26293
  include: typing.Optional[typing.Any] = {
26294
- '"KEYBOARD"',
26294
+ '"NDOF"',
26295
26295
  '"ACTIONZONE"',
26296
+ '"KEYBOARD"',
26296
26297
  '"MOUSE"',
26297
- '"NDOF"',
26298
26298
  },
26299
26299
  exclude: typing.Optional[typing.Any] = {},
26300
26300
  ):
@@ -26787,10 +26787,10 @@ class KeyMapItems(bpy_struct):
26787
26787
  idname: typing.Union[str, typing.Any],
26788
26788
  properties: typing.Optional["OperatorProperties"] = None,
26789
26789
  include: typing.Optional[typing.Any] = {
26790
- '"KEYBOARD"',
26790
+ '"NDOF"',
26791
26791
  '"ACTIONZONE"',
26792
+ '"KEYBOARD"',
26792
26793
  '"MOUSE"',
26793
- '"NDOF"',
26794
26794
  },
26795
26795
  exclude: typing.Optional[typing.Any] = {},
26796
26796
  ) -> "KeyMapItem":
@@ -43406,6 +43406,12 @@ class SceneEEVEE(bpy_struct):
43406
43406
  :type: float
43407
43407
  """
43408
43408
 
43409
+ horizon_resolution: typing.Union[int, str]
43410
+ """ Control the quality of the horizon scan lighting (lower size increase vram usage and quality)
43411
+
43412
+ :type: typing.Union[int, str]
43413
+ """
43414
+
43409
43415
  horizon_thickness: float
43410
43416
  """ Constant thickness of the surfaces considered when doing horizon scan and by extension ambient occlusion
43411
43417
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240319
3
+ Version: 20240320
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
@@ -199,7 +199,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=JK1oXEg64Z5HoUxsWkFB0UbPHk-TYw6JqdPKW6m0ysc,2
199
199
  bpy/ops/ed/__init__.pyi,sha256=Bu154w3wNOVIT3fRD6FfMzNU2BBBeOBODL8dUvXYmLQ,11885
200
200
  bpy/ops/export_anim/__init__.pyi,sha256=s_r8HrQaKIrO3KQNl_q8-JAz4YZgouDrpYmIkPbUNrE,2569
201
201
  bpy/ops/export_mesh/__init__.pyi,sha256=JJT35uzm6qwEVoUbMvU73oR4l_J2t-62yJnJlVEVl4o,3062
202
- bpy/ops/export_scene/__init__.pyi,sha256=YVwWfErkG80hy93nXNPEnPKRRWp4XJAXOS_bV_Clq30,47968
202
+ bpy/ops/export_scene/__init__.pyi,sha256=WW7Tc43EghC67Gi8n0VNVFzbvZ4QTByaj0AVlNec-CQ,47968
203
203
  bpy/ops/file/__init__.pyi,sha256=ulAQDVx9dJ8kVZt7fGgbNMbAqp3m5m0J-LDA9rikm6w,32487
204
204
  bpy/ops/fluid/__init__.pyi,sha256=09VqJ77uFDpBysvCCwpSe9ccUjt1LiRXW8lMKzJe6l4,7375
205
205
  bpy/ops/font/__init__.pyi,sha256=yXGodwhuzsK0DNjOLi7yYuedpIX7zNVC80RQn-h5cLs,23757
@@ -219,12 +219,12 @@ bpy/ops/marker/__init__.pyi,sha256=7aYf5TxbpXLMNccnoIAByv2QtzOGH9xNjjtq90pi2_s,9
219
219
  bpy/ops/mask/__init__.pyi,sha256=7dlMRSKQUAIEdKrpHhWpuuDAztqUmNDVQThZcWViMtk,28311
220
220
  bpy/ops/material/__init__.pyi,sha256=2iXVbIoIub2IIEu_9Gt8_dfbd8wbb1ZsqA9o4BEuno8,1541
221
221
  bpy/ops/mball/__init__.pyi,sha256=c3De2eArRnxlIaHT5eRd3gaUuH3wovr2egvXOZ0ZV-E,6520
222
- bpy/ops/mesh/__init__.pyi,sha256=gQtfIXh7J-DiLG7gJ_rNgkUYCmt6o4eHdW4ATmdET3U,187201
223
- bpy/ops/nla/__init__.pyi,sha256=G3etPwhjCTuVpWJV1M8w222hun071GqY2cMsZHDT_aQ,30840
222
+ bpy/ops/mesh/__init__.pyi,sha256=Xg1PzsSEKjWwgwyX3hpHThRNK7Thrvh4bd5y1JTmf5M,187352
223
+ bpy/ops/nla/__init__.pyi,sha256=aWeT-P3jYFX5AlR4bhglHAFR5wsSpWWus3BE8q-xkf0,30840
224
224
  bpy/ops/node/__init__.pyi,sha256=HGEDSU_YvtfqrUn7Dm-J2_Cp7eP0JSCITc3Wwwu_ZMY,78871
225
225
  bpy/ops/object/__init__.pyi,sha256=KYnh07AnQ-jOa5q7Pi0b3tyeMutyhacCDlZ2vI6ug7c,246152
226
226
  bpy/ops/outliner/__init__.pyi,sha256=eejglls9cRj6tlaCedIHnCJVOQnJjigFCxJS1WoYkUI,46670
227
- bpy/ops/paint/__init__.pyi,sha256=ORHp8Rm_BktNZTizKV-uPLo2kzTbWUCUj7rXA-KTF9A,49578
227
+ bpy/ops/paint/__init__.pyi,sha256=BuWaKr_F7nPSlwKMtJlrmPrinVmwFKF-yvvmwAftyTg,48182
228
228
  bpy/ops/paintcurve/__init__.pyi,sha256=C3mdEe5gGTn9aT0IX2E7Olxif-TSBziECRrwFd7beJM,5510
229
229
  bpy/ops/palette/__init__.pyi,sha256=xj7SawJTGE0F7mmyXRq6RqHLWP9I_v0ysMjPS_k-waM,4055
230
230
  bpy/ops/particle/__init__.pyi,sha256=JOZwOnnKqJ65J1-dBdx1W8zndFdhArYHD_FX_1qMFyo,24078
@@ -237,7 +237,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=nzZNVoag8k21BuUn0gdW9aR2nXKKD_J7qZMhFUCBgm
237
237
  bpy/ops/scene/__init__.pyi,sha256=TtTUP8kEHMs7JYqpU14jsZ0aiLYH2LA7F-x1UbPbkUw,25609
238
238
  bpy/ops/screen/__init__.pyi,sha256=GlEjbT5_05EW2mR34HM9BJMyl_punGT2b2E0hbqk4fo,34155
239
239
  bpy/ops/script/__init__.pyi,sha256=oWsjwLhotBc4ZVAtYLf9OV3duvkvsp3m2uEICHZ_sVM,1970
240
- bpy/ops/sculpt/__init__.pyi,sha256=RuPVREOhmrKMmvVbH_Eexk3fEgVXT1KIscl4lmUQQLY,44496
240
+ bpy/ops/sculpt/__init__.pyi,sha256=EuDRsB6SvbwCk_L4QMa1AdN8xAXM9eoQZGHg5EYm-cU,43116
241
241
  bpy/ops/sculpt_curves/__init__.pyi,sha256=XfDaclN9t_WK8qm-2Mp6vwk8ISV85cdV-YfZLQI1q04,3947
242
242
  bpy/ops/sequencer/__init__.pyi,sha256=T4PiOxPr9u_lY8u1gihQe75Bv1R9kFPZPGMNHjx89R8,106330
243
243
  bpy/ops/sound/__init__.pyi,sha256=ZLlmsAaYwo5lK7-2Fbgqk0FjI1hGj3Q4freA1jzTIEg,22650
@@ -257,7 +257,7 @@ bpy/ops/workspace/__init__.pyi,sha256=56wV5tByTDtpoCnuUehXNFBWhAxPmrFdg9T4HfZlxh
257
257
  bpy/ops/world/__init__.pyi,sha256=n1XRkfqhLYz0BEoSDjAfJU7VLKv8sEpfwUHFRxaLIl0,562
258
258
  bpy/path/__init__.pyi,sha256=gJN-fM4VZ721LjlYA4Lm7Us7xsagpVlQEYqjpIxizXE,6869
259
259
  bpy/props/__init__.pyi,sha256=vG0dYQzpuh5QnOwqNwz8W-2yKdclHbNkC2jtXkgx4rQ,29405
260
- bpy/types/__init__.pyi,sha256=bJr8EyUC1enjxuCMJ1CSRYExAhnFNxupVWr-q9jriKY,3471433
260
+ bpy/types/__init__.pyi,sha256=Z-Dp5qJcBKEkp9ddXRPiGUqHrkc0GfW58ihs92z7apU,3471669
261
261
  bpy/utils/__init__.pyi,sha256=KFA7tUV9s_xP-t6xTiCtejFvcdTKET1LsOW4twJHREk,12934
262
262
  bpy/utils/previews/__init__.pyi,sha256=i5FXncn7xLba6BVLdB0hWLRaYp7cVvTfEiAhrXuv-lU,3581
263
263
  bpy/utils/units/__init__.pyi,sha256=AzFFYMVq6akTZ3AHGW4GzA_n6jfeKV7O9qvqvBasBgY,2684
@@ -337,7 +337,7 @@ rna_xml/__init__.pyi,sha256=oMdXh2K4vb_KNNhyhehXJPH20RJkrUExWFoGX6_8IoI,471
337
337
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
338
  sys_info/__init__.pyi,sha256=8dAUaATaRsjhkMMCN8lWAlnEo_Z0qzeYMjashL-525k,93
339
339
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
- fake_bpy_module-20240319.dist-info/METADATA,sha256=WuEbZiIp-cLHsJkLiFUG0_ed9dPmpUz3f3E2yXcqAHE,7008
341
- fake_bpy_module-20240319.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
342
- fake_bpy_module-20240319.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
343
- fake_bpy_module-20240319.dist-info/RECORD,,
340
+ fake_bpy_module-20240320.dist-info/METADATA,sha256=cPgNf2Ga0QKlEEt26zgGmXuopHxzHKwRvM0az4wbEVg,7008
341
+ fake_bpy_module-20240320.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
342
+ fake_bpy_module-20240320.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
343
+ fake_bpy_module-20240320.dist-info/RECORD,,