fake-bpy-module 20240509__py3-none-any.whl → 20240511__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
- '"MESH"',
25
+ '"CAMERA"',
26
26
  '"LIGHT"',
27
+ '"ARMATURE"',
28
+ '"MESH"',
27
29
  '"EMPTY"',
28
- '"CAMERA"',
29
30
  '"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,
@@ -365,6 +365,25 @@ def layer_group_add(
365
365
 
366
366
  ...
367
367
 
368
+ def layer_group_remove(
369
+ override_context: typing.Optional[
370
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
371
+ ] = None,
372
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
373
+ undo: typing.Optional[bool] = None,
374
+ keep_children: typing.Optional[typing.Union[bool, typing.Any]] = False,
375
+ ):
376
+ """Remove Grease Pencil layer group in the active object
377
+
378
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
379
+ :type execution_context: typing.Optional[typing.Union[str, int]]
380
+ :type undo: typing.Optional[bool]
381
+ :param keep_children: Keep children nodes, Keep the children nodes of the group and only delete the group itself
382
+ :type keep_children: typing.Optional[typing.Union[bool, typing.Any]]
383
+ """
384
+
385
+ ...
386
+
368
387
  def layer_hide(
369
388
  override_context: typing.Optional[
370
389
  typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
bpy/ops/nla/__init__.pyi CHANGED
@@ -113,11 +113,11 @@ def bake(
113
113
  clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
114
114
  bake_types: typing.Optional[typing.Any] = {'"POSE"'},
115
115
  channel_types: typing.Optional[typing.Any] = {
116
- '"SCALE"',
117
116
  '"LOCATION"',
118
- '"PROPS"',
119
117
  '"BBONE"',
120
118
  '"ROTATION"',
119
+ '"PROPS"',
120
+ '"SCALE"',
121
121
  },
122
122
  ):
123
123
  """Bake all selected objects location/scale/rotation animation to an action
@@ -53,7 +53,7 @@ def cloth_filter(
53
53
  bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
54
54
  ] = None,
55
55
  type: typing.Optional[typing.Any] = "GRAVITY",
56
- force_axis: typing.Optional[typing.Any] = {'"Y"', '"Z"', '"X"'},
56
+ force_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
57
57
  orientation: typing.Optional[typing.Any] = "LOCAL",
58
58
  cloth_mass: typing.Optional[typing.Any] = 1.0,
59
59
  cloth_damping: typing.Optional[typing.Any] = 0.0,
@@ -641,7 +641,7 @@ def mesh_filter(
641
641
  bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
642
642
  ] = None,
643
643
  type: typing.Optional[typing.Any] = "INFLATE",
644
- deform_axis: typing.Optional[typing.Any] = {'"Y"', '"Z"', '"X"'},
644
+ deform_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
645
645
  orientation: typing.Optional[typing.Any] = "LOCAL",
646
646
  surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
647
647
  surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
bpy/ops/wm/__init__.pyi CHANGED
@@ -146,9 +146,9 @@ def alembic_export(
146
146
  :type flatten: typing.Optional[typing.Union[bool, typing.Any]]
147
147
  :param collection: Collection
148
148
  :type collection: typing.Union[str, typing.Any]
149
- :param uvs: UVs, Export UVs
149
+ :param uvs: UV Coordinates, Export UV coordinates
150
150
  :type uvs: typing.Optional[typing.Union[bool, typing.Any]]
151
- :param packuv: Pack UV Islands, Export UVs with packed island
151
+ :param packuv: Merge UVs
152
152
  :type packuv: typing.Optional[typing.Union[bool, typing.Any]]
153
153
  :param normals: Normals, Export normals
154
154
  :type normals: typing.Optional[typing.Union[bool, typing.Any]]
@@ -182,7 +182,7 @@ def alembic_export(
182
182
  :type export_custom_properties: typing.Optional[typing.Union[bool, typing.Any]]
183
183
  :param as_background_job: Run as Background Job, Enable this to run the import in the background, disable to block Blender while importing. This option is deprecated; EXECUTE this operator to run in the foreground, and INVOKE it to run as a background job
184
184
  :type as_background_job: typing.Optional[typing.Union[bool, typing.Any]]
185
- :param evaluation_mode: Use Settings for, Determines visibility of objects, modifier settings, and other areas where there are different settings for viewport and rendering
185
+ :param evaluation_mode: Settings, Determines visibility of objects, modifier settings, and other areas where there are different settings for viewport and rendering
186
186
 
187
187
  RENDER
188
188
  Render -- Use Render settings for object visibility, modifier settings, etc.
@@ -3,6 +3,22 @@ import bpy.types
3
3
 
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
+ def convert_volume_to_mesh(
7
+ override_context: typing.Optional[
8
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
9
+ ] = None,
10
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
11
+ undo: typing.Optional[bool] = None,
12
+ ):
13
+ """Convert the volume of a world to a mesh.
14
+
15
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
16
+ :type execution_context: typing.Optional[typing.Union[str, int]]
17
+ :type undo: typing.Optional[bool]
18
+ """
19
+
20
+ ...
21
+
6
22
  def new(
7
23
  override_context: typing.Optional[
8
24
  typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
bpy/props/__init__.pyi CHANGED
@@ -217,7 +217,7 @@ def EnumProperty(
217
217
  name: typing.Optional[str] = "",
218
218
  description: typing.Optional[str] = "",
219
219
  translation_context: typing.Optional[str] = "*",
220
- default: typing.Optional[typing.Union[str, set]] = None,
220
+ default: typing.Optional[typing.Union[str, int, set]] = None,
221
221
  options: typing.Optional[set] = {'"ANIMATABLE"'},
222
222
  override: typing.Optional[set] = None(),
223
223
  tags: typing.Optional[set] = None(),
@@ -276,7 +276,7 @@ def EnumProperty(
276
276
  If the ENUM_FLAG option is used this must be a set of such string identifiers instead.
277
277
  WARNING: Strings cannot be specified for dynamic enums
278
278
  (i.e. if a callback function is given as items parameter).
279
- :type default: typing.Optional[typing.Union[str, set]]
279
+ :type default: typing.Optional[typing.Union[str, int, set]]
280
280
  :param options: Enumerator in `rna_enum_property_flag_enum_items`.
281
281
  :type options: typing.Optional[set]
282
282
  :param override: Enumerator in `rna_enum_property_override_flag_items`.
bpy/types/__init__.pyi CHANGED
@@ -4391,6 +4391,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
4391
4391
 
4392
4392
  * Area.regions
4393
4393
  * Context.region
4394
+ * Context.region_popup
4394
4395
 
4395
4396
  :columns: 2
4396
4397
 
@@ -97783,6 +97784,7 @@ import bl_operators.spreadsheet
97783
97784
  import bl_operators.userpref
97784
97785
  import bl_operators.view3d
97785
97786
  import bl_operators.wm
97787
+ import bl_operators.world
97786
97788
  import bl_ui
97787
97789
  import bl_ui.anim
97788
97790
  import bl_ui.asset_shelf
@@ -111427,7 +111429,7 @@ class CollectionChildren(bpy_struct):
111427
111429
  ...
111428
111430
 
111429
111431
  class CollectionExport(bpy_struct):
111430
- """Exporter configured for the collection"""
111432
+ """ """
111431
111433
 
111432
111434
  export_properties: PropertyGroup
111433
111435
  """ Properties associated with the configured exporter
@@ -111441,6 +111443,12 @@ class CollectionExport(bpy_struct):
111441
111443
  :type: bool
111442
111444
  """
111443
111445
 
111446
+ name: typing.Union[str, typing.Any]
111447
+ """
111448
+
111449
+ :type: typing.Union[str, typing.Any]
111450
+ """
111451
+
111444
111452
  @classmethod
111445
111453
  def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> Struct:
111446
111454
  """
@@ -112564,6 +112572,12 @@ class Context(bpy_struct):
112564
112572
  :type: RegionView3D
112565
112573
  """
112566
112574
 
112575
+ region_popup: Region
112576
+ """ The temporary region for pop-ups (including menus and pop-overs)
112577
+
112578
+ :type: Region
112579
+ """
112580
+
112567
112581
  scene: Scene
112568
112582
  """
112569
112583
 
@@ -112678,6 +112692,12 @@ class Context(bpy_struct):
112678
112692
  :type: RegionView3D
112679
112693
  """
112680
112694
 
112695
+ region_popup: Region
112696
+ """ The temporary region for pop-ups (including menus and pop-overs)
112697
+
112698
+ :type: Region
112699
+ """
112700
+
112681
112701
  scene: Scene
112682
112702
  """
112683
112703
 
@@ -113269,9 +113289,12 @@ class Context(bpy_struct):
113269
113289
  :type: UIList
113270
113290
  """
113271
113291
 
113272
- property: typing.Any
113292
+ property: typing.Tuple[AnyType]
113273
113293
  """ Get the property associated with a hovered button.
113274
- Returns a tuple of the data-block, data path to the property, and array index."""
113294
+ Returns a tuple of the data-block, data path to the property, and array index.
113295
+
113296
+ :type: typing.Tuple[AnyType]
113297
+ """
113275
113298
 
113276
113299
  asset_library_reference: AssetLibraryReference
113277
113300
  """
@@ -124753,10 +124776,10 @@ class KeyConfigurations(bpy_struct):
124753
124776
  context: typing.Optional[typing.Union[str, int]] = "INVOKE_DEFAULT",
124754
124777
  properties: typing.Optional[OperatorProperties] = None,
124755
124778
  include: typing.Optional[typing.Any] = {
124756
- '"KEYBOARD"',
124757
- '"NDOF"',
124758
124779
  '"ACTIONZONE"',
124780
+ '"KEYBOARD"',
124759
124781
  '"MOUSE"',
124782
+ '"NDOF"',
124760
124783
  },
124761
124784
  exclude: typing.Optional[typing.Any] = {},
124762
124785
  ):
@@ -125249,10 +125272,10 @@ class KeyMapItems(bpy_struct):
125249
125272
  idname: typing.Union[str, typing.Any],
125250
125273
  properties: typing.Optional[OperatorProperties] = None,
125251
125274
  include: typing.Optional[typing.Any] = {
125252
- '"KEYBOARD"',
125253
- '"NDOF"',
125254
125275
  '"ACTIONZONE"',
125276
+ '"KEYBOARD"',
125255
125277
  '"MOUSE"',
125278
+ '"NDOF"',
125256
125279
  },
125257
125280
  exclude: typing.Optional[typing.Any] = {},
125258
125281
  ) -> KeyMapItem:
@@ -139241,6 +139264,10 @@ class Region(bpy_struct):
139241
139264
  """tag_redraw"""
139242
139265
  ...
139243
139266
 
139267
+ def tag_refresh_ui(self):
139268
+ """tag_refresh_ui"""
139269
+ ...
139270
+
139244
139271
  @classmethod
139245
139272
  def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> Struct:
139246
139273
  """
@@ -139947,6 +139974,18 @@ class RenderSettings(bpy_struct):
139947
139974
  :type: float
139948
139975
  """
139949
139976
 
139977
+ compositor_device: typing.Union[str, int]
139978
+ """ Set how compositing is executed
139979
+
139980
+ :type: typing.Union[str, int]
139981
+ """
139982
+
139983
+ compositor_precision: typing.Union[str, int]
139984
+ """ The precision of compositor intermediate result
139985
+
139986
+ :type: typing.Union[str, int]
139987
+ """
139988
+
139950
139989
  dither_intensity: float
139951
139990
  """ Amount of dithering noise added to the rendered image to break up banding
139952
139991
 
@@ -147761,7 +147800,7 @@ class ThemeFontStyle(bpy_struct):
147761
147800
  """
147762
147801
 
147763
147802
  shadow: int
147764
- """ Shadow size (0, 3 and 5 supported)
147803
+ """ Shadow type (0 none, 3, 5 blur, 6 outline)
147765
147804
 
147766
147805
  :type: int
147767
147806
  """
@@ -171493,6 +171532,12 @@ class Camera(ID, bpy_struct):
171493
171532
  class Collection(ID, bpy_struct):
171494
171533
  """Collection of Object data-blocks"""
171495
171534
 
171535
+ active_exporter_index: int
171536
+ """ Active index in the exporters list
171537
+
171538
+ :type: int
171539
+ """
171540
+
171496
171541
  all_objects: bpy_prop_collection[Object]
171497
171542
  """ Objects that are in this collection and its child collections
171498
171543
 
@@ -171626,18 +171671,6 @@ class Collection(ID, bpy_struct):
171626
171671
  class CompositorNodeTree(NodeTree, ID, bpy_struct):
171627
171672
  """Node tree consisting of linked nodes used for compositing"""
171628
171673
 
171629
- execution_mode: typing.Union[str, int]
171630
- """ Set how compositing is executed
171631
-
171632
- :type: typing.Union[str, int]
171633
- """
171634
-
171635
- precision: typing.Union[str, int]
171636
- """ The precision of compositor intermediate result
171637
-
171638
- :type: typing.Union[str, int]
171639
- """
171640
-
171641
171674
  use_viewer_border: bool
171642
171675
  """ Use boundaries for viewer nodes and composite backdrop
171643
171676
 
@@ -177417,6 +177450,12 @@ class World(ID, bpy_struct):
177417
177450
  :type: typing.Union[str, int]
177418
177451
  """
177419
177452
 
177453
+ use_eevee_finite_volume: bool
177454
+ """ The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly
177455
+
177456
+ :type: bool
177457
+ """
177458
+
177420
177459
  use_nodes: bool
177421
177460
  """ Use shader nodes to render the world
177422
177461
 
@@ -195420,12 +195459,6 @@ class SunLight(Light, ID, bpy_struct):
195420
195459
  :type: float
195421
195460
  """
195422
195461
 
195423
- shadow_trace_distance: float
195424
- """ Maximum distance a shadow map tracing ray can travel
195425
-
195426
- :type: float
195427
- """
195428
-
195429
195462
  use_contact_shadow: bool
195430
195463
  """ Use screen space ray-tracing to have correct shadowing near occluder, or for small features that does not appear in shadow maps
195431
195464
 
@@ -227011,6 +227044,12 @@ class GeometryNodeToolSetSelection(GeometryNode, NodeInternal, Node, bpy_struct)
227011
227044
  class GeometryNodeTransform(GeometryNode, NodeInternal, Node, bpy_struct):
227012
227045
  """Translate, rotate or scale the geometry"""
227013
227046
 
227047
+ mode: typing.Union[str, int]
227048
+ """ How the transformation is specified
227049
+
227050
+ :type: typing.Union[str, int]
227051
+ """
227052
+
227014
227053
  @classmethod
227015
227054
  def is_registered_node_type(cls) -> bool:
227016
227055
  """True if a registered node type
@@ -238586,6 +238625,10 @@ GREASE_PENCIL_UL_masks: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_UL_mas
238586
238625
  """
238587
238626
  """
238588
238627
 
238628
+ GreasePencil_MT_group_context_menu: bl_ui.properties_data_grease_pencil.GreasePencil_MT_group_context_menu
238629
+ """
238630
+ """
238631
+
238589
238632
  IMAGE_FH_drop_handler: bl_operators.image.IMAGE_FH_drop_handler
238590
238633
  """
238591
238634
  """
@@ -243814,6 +243857,10 @@ WORKSPACE_UL_addons_items: bl_ui.properties_workspace.WORKSPACE_UL_addons_items
243814
243857
  """
243815
243858
  """
243816
243859
 
243860
+ WORLD_OT_convert_volume_to_mesh: bl_operators.world.WORLD_OT_convert_volume_to_mesh
243861
+ """
243862
+ """
243863
+
243817
243864
  WORLD_PT_context_world: bl_ui.properties_world.WORLD_PT_context_world
243818
243865
  """
243819
243866
  """
bpy_types/__init__.pyi CHANGED
@@ -367,6 +367,9 @@ class BoneCollection:
367
367
  class Node:
368
368
  """ """
369
369
 
370
+ bl_rna: typing.Any
371
+ """ """
372
+
370
373
  id_data: typing.Any
371
374
  """ """
372
375
 
@@ -422,6 +425,10 @@ class Node:
422
425
  """ """
423
426
  ...
424
427
 
428
+ def is_registered_node_type(self):
429
+ """ """
430
+ ...
431
+
425
432
  def items(self):
426
433
  """ """
427
434
  ...
@@ -1603,6 +1610,9 @@ class MeshPolygon:
1603
1610
  class NodeSocket:
1604
1611
  """ """
1605
1612
 
1613
+ bl_rna: typing.Any
1614
+ """ """
1615
+
1606
1616
  id_data: typing.Any
1607
1617
  """ """
1608
1618
 
@@ -2611,6 +2621,9 @@ class PoseBone(_GenericBone):
2611
2621
  class NodeInternal(Node):
2612
2622
  """ """
2613
2623
 
2624
+ bl_rna: typing.Any
2625
+ """ """
2626
+
2614
2627
  id_data: typing.Any
2615
2628
  """ """
2616
2629
 
@@ -2666,6 +2679,10 @@ class NodeInternal(Node):
2666
2679
  """ """
2667
2680
  ...
2668
2681
 
2682
+ def is_registered_node_type(self):
2683
+ """ """
2684
+ ...
2685
+
2669
2686
  def items(self):
2670
2687
  """ """
2671
2688
  ...
@@ -3542,6 +3559,9 @@ class RNAMetaPropGroup(RNAMeta):
3542
3559
  class CompositorNode(NodeInternal, Node):
3543
3560
  """ """
3544
3561
 
3562
+ bl_rna: typing.Any
3563
+ """ """
3564
+
3545
3565
  id_data: typing.Any
3546
3566
  """ """
3547
3567
 
@@ -3597,6 +3617,10 @@ class CompositorNode(NodeInternal, Node):
3597
3617
  """ """
3598
3618
  ...
3599
3619
 
3620
+ def is_registered_node_type(self):
3621
+ """ """
3622
+ ...
3623
+
3600
3624
  def items(self):
3601
3625
  """ """
3602
3626
  ...
@@ -3655,6 +3679,9 @@ class CompositorNode(NodeInternal, Node):
3655
3679
  class GeometryNode(NodeInternal, Node):
3656
3680
  """ """
3657
3681
 
3682
+ bl_rna: typing.Any
3683
+ """ """
3684
+
3658
3685
  id_data: typing.Any
3659
3686
  """ """
3660
3687
 
@@ -3710,6 +3737,10 @@ class GeometryNode(NodeInternal, Node):
3710
3737
  """ """
3711
3738
  ...
3712
3739
 
3740
+ def is_registered_node_type(self):
3741
+ """ """
3742
+ ...
3743
+
3713
3744
  def items(self):
3714
3745
  """ """
3715
3746
  ...
@@ -3764,6 +3795,9 @@ class GeometryNode(NodeInternal, Node):
3764
3795
  class ShaderNode(NodeInternal, Node):
3765
3796
  """ """
3766
3797
 
3798
+ bl_rna: typing.Any
3799
+ """ """
3800
+
3767
3801
  id_data: typing.Any
3768
3802
  """ """
3769
3803
 
@@ -3819,6 +3853,10 @@ class ShaderNode(NodeInternal, Node):
3819
3853
  """ """
3820
3854
  ...
3821
3855
 
3856
+ def is_registered_node_type(self):
3857
+ """ """
3858
+ ...
3859
+
3822
3860
  def items(self):
3823
3861
  """ """
3824
3862
  ...
@@ -3873,6 +3911,9 @@ class ShaderNode(NodeInternal, Node):
3873
3911
  class TextureNode(NodeInternal, Node):
3874
3912
  """ """
3875
3913
 
3914
+ bl_rna: typing.Any
3915
+ """ """
3916
+
3876
3917
  id_data: typing.Any
3877
3918
  """ """
3878
3919
 
@@ -3928,6 +3969,10 @@ class TextureNode(NodeInternal, Node):
3928
3969
  """ """
3929
3970
  ...
3930
3971
 
3972
+ def is_registered_node_type(self):
3973
+ """ """
3974
+ ...
3975
+
3931
3976
  def items(self):
3932
3977
  """ """
3933
3978
  ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240509
3
+ Version: 20240511
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
@@ -6,7 +6,7 @@ addon_utils/__init__.pyi,sha256=5vUTfM09g2CQcblaQ2tps-vBsoJQ2sYonYszqW7kr2A,740
6
6
  addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  animsys_refactor/__init__.pyi,sha256=CSzrkz-AQqjE7HWPNIzQV24Uv_2Z1H0IHla2GkMPvXU,657
8
8
  animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- aud/__init__.pyi,sha256=Jz5tT_Kq64nW4ZwBBDA5kB9F52MImF3qXHUnk19XTsE,33018
9
+ aud/__init__.pyi,sha256=wzxZv5WIEndCv6Rj47cieqrAMWm0eH9glyUqX52VP84,33056
10
10
  aud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  bgl/__init__.pyi,sha256=4QgE3YERv__eJjTgySRSPXN_E8fHTbTH-vafK2v7Q_o,121351
12
12
  bgl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -58,7 +58,7 @@ bl_keymap_utils/versioning/__init__.pyi,sha256=ma5O3Uh4QzL1hjLaCCGdEpLx8TIZa0IsS
58
58
  bl_keymap_utils/versioning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
59
  bl_math/__init__.pyi,sha256=cAv_Aq_-Q8S6yqpJsQrEjXf1_P5AOFu_UJ3GRare3Yc,1622
60
60
  bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
- bl_operators/__init__.pyi,sha256=asCidWfjJqJylyiBl5t0Xx0lRLCi65aL8CB1kvQ4_d0,870
61
+ bl_operators/__init__.pyi,sha256=JRtpKmoC6MywUu4B0MUeigNZ_IEFb0afGyv3dS-qtNE,890
62
62
  bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
63
  bl_operators/add_mesh_torus/__init__.pyi,sha256=RoKdCBO0EiDsywrJIDcdoe769gx6XIuH_t9yFKuhvys,2734
64
64
  bl_operators/add_mesh_torus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -120,6 +120,8 @@ bl_operators/view3d/__init__.pyi,sha256=CtrOEo54-Izd6G4KjVgHNy8pI4ACCxsyYvHcjfpD
120
120
  bl_operators/view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
121
  bl_operators/wm/__init__.pyi,sha256=9ttm9paDfHwwhXWDhxso9WfpwgOBpWXygf1XbLQHacw,95068
122
122
  bl_operators/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
+ bl_operators/world/__init__.pyi,sha256=TXl-lkbng0dsPg1vVlyW9P2vk2yQDMQyjVZjer3cBDQ,2105
124
+ bl_operators/world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
125
  bl_previews_utils/__init__.pyi,sha256=p3ziz8G6uAf8yslPB8MclRs0QYdNodhWOytQUjztaFs,92
124
126
  bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
127
  bl_previews_utils/bl_previews_render/__init__.pyi,sha256=PhZF-g5vcybCxV-1aU7Jz408LzbJW4efDzJVeRkvvqY,530
@@ -170,7 +172,7 @@ bl_ui/properties_data_empty/__init__.pyi,sha256=4Gqr6psM0ZEEfTYsQtGTPryEnOanoJDO
170
172
  bl_ui/properties_data_empty/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
171
173
  bl_ui/properties_data_gpencil/__init__.pyi,sha256=DLtAdrRhRJiZpo9pBA89pztdm2YrgMI34HAtHLK1L08,45197
172
174
  bl_ui/properties_data_gpencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
- bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=cy-56YYCT1VREIc-CytarWAU2mZOX5k_ygaL5SHy0Qg,33201
175
+ bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=RaThdUpHmBQmQDH6enJ82FdXJMLkPyAHUN4-x9IUUFI,36040
174
176
  bl_ui/properties_data_grease_pencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
175
177
  bl_ui/properties_data_lattice/__init__.pyi,sha256=4wWnKSosd9LOT76IPwZeB_5s474EZTFKqHefbJc0ljk,7424
176
178
  bl_ui/properties_data_lattice/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -296,13 +298,13 @@ bl_ui_utils/layout/__init__.pyi,sha256=VbNmsUvcumWwy1Fx2T6nRXmXyrddf95ceXvq-AA-A
296
298
  bl_ui_utils/layout/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
299
  blend_render_info/__init__.pyi,sha256=smxScTsZTo-gvrHvAgXvk-J23PpEa2DF-CdnELTa11E,200
298
300
  blend_render_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
- blf/__init__.pyi,sha256=58DO5_Rrlnoa4N34WvHB0aMLnf8QQF3ozAt_qtJlEBg,5827
301
+ blf/__init__.pyi,sha256=-ZEbcsuwLmccQYWMus1Cl2n8BZY_u6LuhWkekIs7lj8,5857
300
302
  blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
303
  bmesh/__init__.pyi,sha256=JHZzU3bVJasGCKpoYlhx2qKcWcyY0n4lJ1VNkOziTbI,1487
302
304
  bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
305
  bmesh/geometry/__init__.pyi,sha256=Wq8J78LNJXk9PMdUofmCD5V4X-e1XTQ844tksTHBZYk,675
304
306
  bmesh/geometry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- bmesh/ops/__init__.pyi,sha256=noFp0qnNs7ZK1SQRF3sB02qfh-BkS02jf8jzMiiVw8Q,73746
307
+ bmesh/ops/__init__.pyi,sha256=c2T9WNp45JeTp1NB6OrmFd0D8q0wxPmBnePDplNXgKE,75548
306
308
  bmesh/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
309
  bmesh/types/__init__.pyi,sha256=C06s2i6a_Yv-rGhOFN0DlbLdJ1KX_FMrBt0UdEmOj1c,40138
308
310
  bmesh/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -366,7 +368,7 @@ bpy/ops/export_anim/__init__.pyi,sha256=8D8_RyToRNb-9gy9p_7OcvOj3CouxJMQvBBH7u2H
366
368
  bpy/ops/export_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
369
  bpy/ops/export_mesh/__init__.pyi,sha256=C7_bUc-vcYvJ9vwpig8U7tSWPR03YKx53ky681QjFLE,3085
368
370
  bpy/ops/export_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
- bpy/ops/export_scene/__init__.pyi,sha256=axzlZCDtg-tpo5tbdCSEcEEdoxRj9GWAntCsA5SiJSA,49164
371
+ bpy/ops/export_scene/__init__.pyi,sha256=lz0z3jxxzG10W5CpU-3w6KeCW5onuW2ohZxbalSjQkk,49164
370
372
  bpy/ops/export_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
371
373
  bpy/ops/file/__init__.pyi,sha256=Botj2G5l4pSrG4mePH62WFrM16bva7SSMx-BpE8XZ6U,33400
372
374
  bpy/ops/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -382,7 +384,7 @@ bpy/ops/gpencil/__init__.pyi,sha256=LgpPFK8RYkAyn6MJKiohGFrqgEbxJ6DvYY-D46Q4mcI,
382
384
  bpy/ops/gpencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
383
385
  bpy/ops/graph/__init__.pyi,sha256=NopynZk8nmW-23Nv0OKE5XQ7tZpsZv9U_e3n9BF9hEE,64350
384
386
  bpy/ops/graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
385
- bpy/ops/grease_pencil/__init__.pyi,sha256=0fSDIaMRtpnIV0BqGucr3nfBwB6NsLrdMINc_Ro04zA,51187
387
+ bpy/ops/grease_pencil/__init__.pyi,sha256=wEWkiPkZOyR71tgLRFxoUQFpXqn7-RQ7uAQ0-x3Q1Xk,52008
386
388
  bpy/ops/grease_pencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
387
389
  bpy/ops/image/__init__.pyi,sha256=Ypn60qQ3M77U3Rb6uhXsD6Xjv01EuNb8rRr_I_C7-Aw,61179
388
390
  bpy/ops/image/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -408,7 +410,7 @@ bpy/ops/mball/__init__.pyi,sha256=J2JsjCmxmZgUC91RJN6OJmu4L42ZeGxVZsnP_V4yuZg,67
408
410
  bpy/ops/mball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
411
  bpy/ops/mesh/__init__.pyi,sha256=ZuNHTarPiycwnhGlSsRJQGVKebQ1_XUTiik3-zH4Ou0,191720
410
412
  bpy/ops/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
411
- bpy/ops/nla/__init__.pyi,sha256=bZe015s0vDWYzPJVznr2E7W4Zha_tGEUL_gAYCOtM2I,31845
413
+ bpy/ops/nla/__init__.pyi,sha256=lZ8ceQ6MUkKQq-kXKm_JyeBEiWul_JERuptdpDGGDFA,31845
412
414
  bpy/ops/nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
415
  bpy/ops/node/__init__.pyi,sha256=4q3MNi9bhQqhWSRULuuU6GBj0qgmr1lgQkCF8wuTGOs,81714
414
416
  bpy/ops/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -442,7 +444,7 @@ bpy/ops/screen/__init__.pyi,sha256=sWJeU7yfpInIo6X-CV7qtN4cqDxoXVqOTWSYhOcK1is,3
442
444
  bpy/ops/screen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
443
445
  bpy/ops/script/__init__.pyi,sha256=E_8BsnqT592yOlYxyMTpaHFt-I48PYxrFlsa-tTLQMs,2046
444
446
  bpy/ops/script/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
445
- bpy/ops/sculpt/__init__.pyi,sha256=6PN1xrddewRjDGzKmu1KOSXdSSx2QXI9rreAxH1D_7o,50152
447
+ bpy/ops/sculpt/__init__.pyi,sha256=QGa1sBPEY0XditnGEpxhVf6s6QpSbOCTfGPKzC7RSc0,50152
446
448
  bpy/ops/sculpt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
447
449
  bpy/ops/sculpt_curves/__init__.pyi,sha256=tNoH0zrMiqCxUa_YEkiktDZV-8AdzHxJhAwyxzM7hEQ,4042
448
450
  bpy/ops/sculpt_curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -472,17 +474,17 @@ bpy/ops/view2d/__init__.pyi,sha256=qX6J7OTN-f_Iq-_1kmg8yec_m9SXG_HaZODWROWBSD8,1
472
474
  bpy/ops/view2d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
473
475
  bpy/ops/view3d/__init__.pyi,sha256=0x2lLY3y5qSxIUiACJPmR69RUAhheMn-D6LG-2kpQR4,53666
474
476
  bpy/ops/view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
475
- bpy/ops/wm/__init__.pyi,sha256=WNaUdUNxMfDD55ajPPNAE3g7ATcRncQOHsJS3xYZliA,287849
477
+ bpy/ops/wm/__init__.pyi,sha256=zrrygv_p5BwQ3m0WUW9jtM_UHliJ3NKmIXqdqu8j4BA,287826
476
478
  bpy/ops/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
477
479
  bpy/ops/workspace/__init__.pyi,sha256=Wbe-ndwbRwxwBtzDXxt1iPXMzpsX2QGW8eEZ9O3pAbI,4270
478
480
  bpy/ops/workspace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
479
- bpy/ops/world/__init__.pyi,sha256=5UEYfkRHl9pwHWWwfGPwngj7Iy3ODiTohEwqXBx6iUc,592
481
+ bpy/ops/world/__init__.pyi,sha256=N78Y-9w1Lki3YPn0auCCUiyQHmh9H-S3B5TmKrUG64U,1138
480
482
  bpy/ops/world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
481
483
  bpy/path/__init__.pyi,sha256=sZMxM2jeuZMbQOzNmFS4jlYHCnr-of5PN8XT5t6vg7M,7169
482
484
  bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
483
- bpy/props/__init__.pyi,sha256=FXgbYoK8g8h7efFV8tL9R7E6tPI1MjJzyRC9rJ_sYnw,31482
485
+ bpy/props/__init__.pyi,sha256=ldeJSJMDgsrYzb0qkkGnAxGMSapRTrv-h2p3UaUOqNY,31492
484
486
  bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
485
- bpy/types/__init__.pyi,sha256=TFZoa9rzBt3MIexGP7MGgunak3yVWgx_AkTgkbwzZUQ,5537666
487
+ bpy/types/__init__.pyi,sha256=YfyECZ6WZqVudf3byIqmldV2roA_Gar-scZb1Xx4GiI,5538655
486
488
  bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
487
489
  bpy/utils/__init__.pyi,sha256=MtlLDnlInvRAEUqg7RVOZ49o6ncgLDgknamY1wr-hyI,13069
488
490
  bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -526,7 +528,7 @@ bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=Aqcr4n91j5Hq7zfIAGeOZXBH
526
528
  bpy_extras/wm_utils/progress_report/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
527
529
  bpy_restrict_state/__init__.pyi,sha256=z0wntJmk-6RiN6gW3oMlFkHOBRPIKGYfC_Q9SIoQRQ4,329
528
530
  bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
529
- bpy_types/__init__.pyi,sha256=wWlIdDYOcY7sHNV5mt6VjeV3Dwq2sUKwfmM1Axor-Zg,58258
531
+ bpy_types/__init__.pyi,sha256=BgsPdgOCSZGYWJjF0ZLQkGrF8aWjJFYrfDT13fbveQM,58918
530
532
  bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
531
533
  console_python/__init__.pyi,sha256=Inm6_DPDVMBeaDI8iLzuxyiUB_hOZ7ekIQ6zVDkmTs0,585
532
534
  console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -542,7 +544,7 @@ freestyle/predicates/__init__.pyi,sha256=t1r8JMa7NFShRIh63Cu2Kp3iEweFFMP9Un-LOFs
542
544
  freestyle/predicates/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
543
545
  freestyle/shaders/__init__.pyi,sha256=r9ApZsDHOt5XpYu2CXLpOjrdMlp1QAY8W_ihOyWBaSU,24805
544
546
  freestyle/shaders/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
545
- freestyle/types/__init__.pyi,sha256=qqwamK9MWrKC7uRY1sYAa3maMP96cDYTU78OZ6RYgDc,101926
547
+ freestyle/types/__init__.pyi,sha256=KmJLMe1BeCNtGGH-N85JzpfbS8BWZRXPYGxvBMwzfW4,101978
546
548
  freestyle/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
547
549
  freestyle/utils/__init__.pyi,sha256=Xqa0uopKq8a81ZY34Yb4TgIukHvF_2XakXHUgWZtDv8,5377
548
550
  freestyle/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -586,11 +588,11 @@ keyingsets_builtins/__init__.pyi,sha256=dqXFWEEtoZ5Qy1cBdF8xNKe5Iu6UWHVecug0VM4F
586
588
  keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
587
589
  keyingsets_utils/__init__.pyi,sha256=29-o4Z0jsPvFzDCgnpVs0X0DsOhnwgBPTLWNqCR7JP4,1018
588
590
  keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
589
- mathutils/__init__.pyi,sha256=WMqM78mo4C_XMHcO5JHaM1sxO68dyA_OG2KgKbQaml4,75381
591
+ mathutils/__init__.pyi,sha256=GSm7rIjxpLBcYfg-tkU7xn6i2hv_teQhplW-chC8RxQ,75441
590
592
  mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
591
593
  mathutils/bvhtree/__init__.pyi,sha256=a1J3pqbuazrNj4d5yeQO4GLXKfJsb9DRQfetHZB36h0,4344
592
594
  mathutils/bvhtree/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
593
- mathutils/geometry/__init__.pyi,sha256=Uv6w0tKZNatNHIrPJWRtc3RuJsZVUY6tRn0gDcxgbVI,21796
595
+ mathutils/geometry/__init__.pyi,sha256=JlKAN7lmBazG4Zp5bFVKHQUX8r9KVM2BR-M2Xlj1IBU,21873
594
596
  mathutils/geometry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
595
597
  mathutils/interpolate/__init__.pyi,sha256=CvBzpVTIf1rwilMUmdREPUSD5aCKxFEId_SwlpJAGCg,307
596
598
  mathutils/interpolate/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -612,7 +614,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
612
614
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
613
615
  sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
614
616
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
615
- fake_bpy_module-20240509.dist-info/METADATA,sha256=LeSWeW6mLxson-eTo2UzmRKAxEmRtzhZqeTmY4n_O-o,7008
616
- fake_bpy_module-20240509.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
617
- fake_bpy_module-20240509.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
618
- fake_bpy_module-20240509.dist-info/RECORD,,
617
+ fake_bpy_module-20240511.dist-info/METADATA,sha256=0u7iSCqnp7N2Om9FVMrlOhud2MHqDVBFG8n_XvyDGGY,7008
618
+ fake_bpy_module-20240511.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
619
+ fake_bpy_module-20240511.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
620
+ fake_bpy_module-20240511.dist-info/RECORD,,