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

@@ -129,6 +129,49 @@ class ANIM_OT_slot_unassign_from_id(bpy.types.Operator):
129
129
  """
130
130
  ...
131
131
 
132
+ class ANIM_OT_slot_unassign_from_nla_strip(bpy.types.Operator):
133
+ """Un-assign the assigned Action Slot from an NLA strip.Note that _which_ NLA strip should get this slot unassigned must be set in
134
+ the "nla_strip" context pointer, using:
135
+ """
136
+
137
+ bl_description: typing.Any
138
+ bl_idname: typing.Any
139
+ bl_label: typing.Any
140
+ bl_options: typing.Any
141
+ bl_rna: typing.Any
142
+ id_data: typing.Any
143
+
144
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
145
+ """
146
+
147
+ :return: The RNA type or default when not found.
148
+ :rtype: bpy.types.Struct
149
+ """
150
+ ...
151
+
152
+ def bl_rna_get_subclass_py(self) -> typing.Any:
153
+ """
154
+
155
+ :return: The class or default when not found.
156
+ :rtype: typing.Any
157
+ """
158
+ ...
159
+
160
+ def execute(self, context):
161
+ """
162
+
163
+ :param context:
164
+ """
165
+ ...
166
+
167
+ @classmethod
168
+ def poll(cls, context):
169
+ """
170
+
171
+ :param context:
172
+ """
173
+ ...
174
+
132
175
  class ARMATURE_OT_collection_remove_unused(bpy.types.Operator):
133
176
  """Remove all bone collections that have neither bones nor children. This is done recursively, so bone collections that only have unused children are also removed"""
134
177
 
@@ -278,11 +278,11 @@ class _defs_grease_pencil_paint:
278
278
  box: typing.Any
279
279
  circle: typing.Any
280
280
  curve: typing.Any
281
- cutter: typing.Any
282
281
  eyedropper: typing.Any
283
282
  interpolate: typing.Any
284
283
  line: typing.Any
285
284
  polyline: typing.Any
285
+ trim: typing.Any
286
286
 
287
287
  @staticmethod
288
288
  def generate_from_brushes(context):
bpy/app/__init__.pyi CHANGED
@@ -102,7 +102,7 @@ build_linkflags: typing.Any
102
102
  """
103
103
 
104
104
  build_options: typing.Any
105
- """ Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=True, sdl_dynload=False, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_gpencil=True, opencolorio=True, openmp=True, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
105
+ """ Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=False, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_gpencil=True, opencolorio=True, openmp=True, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
106
106
  """
107
107
 
108
108
  build_platform: typing.Any
@@ -234,7 +234,7 @@ render_preview_size: typing.Any
234
234
  """
235
235
 
236
236
  sdl: typing.Any
237
- """ Constant value bpy.app.sdl(supported=True, version=(2, 28, 2), version_string='2.28.2', available=True)
237
+ """ Constant value bpy.app.sdl(supported=False, version=(0, 0, 0), version_string='Unknown')
238
238
  """
239
239
 
240
240
  tempdir: typing.Any
bpy/ops/anim/__init__.pyi CHANGED
@@ -992,6 +992,20 @@ def slot_unassign_from_id(
992
992
 
993
993
  ...
994
994
 
995
+ def slot_unassign_from_nla_strip(
996
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
997
+ execution_context: int | str | None = None,
998
+ undo: bool | None = None,
999
+ ):
1000
+ """Un-assign the action slot from this NLA strip, effectively making it non-animated
1001
+
1002
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1003
+ :type execution_context: int | str | None
1004
+ :type undo: bool | None
1005
+ """
1006
+
1007
+ ...
1008
+
995
1009
  def start_frame_set(
996
1010
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
997
1011
  execution_context: int | str | None = None,
@@ -1382,33 +1382,6 @@ def snap_to_grid(
1382
1382
 
1383
1383
  ...
1384
1384
 
1385
- def stroke_cutter(
1386
- override_context: bpy.types.Context | dict[str, typing.Any] = None,
1387
- execution_context: int | str | None = None,
1388
- undo: bool | None = None,
1389
- *,
1390
- path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1391
- use_smooth_stroke: bool | None = False,
1392
- smooth_stroke_factor: float | None = 0.75,
1393
- smooth_stroke_radius: int | None = 35,
1394
- ):
1395
- """Delete stroke points in between intersecting strokes
1396
-
1397
- :type override_context: bpy.types.Context | dict[str, typing.Any]
1398
- :type execution_context: int | str | None
1399
- :type undo: bool | None
1400
- :param path: Path
1401
- :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1402
- :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
1403
- :type use_smooth_stroke: bool | None
1404
- :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
1405
- :type smooth_stroke_factor: float | None
1406
- :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
1407
- :type smooth_stroke_radius: int | None
1408
- """
1409
-
1410
- ...
1411
-
1412
1385
  def stroke_material_set(
1413
1386
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
1414
1387
  execution_context: int | str | None = None,
@@ -1448,6 +1421,24 @@ def stroke_merge_by_distance(
1448
1421
 
1449
1422
  ...
1450
1423
 
1424
+ def stroke_reset_vertex_color(
1425
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1426
+ execution_context: int | str | None = None,
1427
+ undo: bool | None = None,
1428
+ *,
1429
+ mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
1430
+ ):
1431
+ """Reset vertex color for all or selected strokes
1432
+
1433
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1434
+ :type execution_context: int | str | None
1435
+ :type undo: bool | None
1436
+ :param mode: Mode
1437
+ :type mode: typing.Literal['STROKE','FILL','BOTH'] | None
1438
+ """
1439
+
1440
+ ...
1441
+
1451
1442
  def stroke_simplify(
1452
1443
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
1453
1444
  execution_context: int | str | None = None,
@@ -1558,6 +1549,33 @@ def stroke_switch_direction(
1558
1549
 
1559
1550
  ...
1560
1551
 
1552
+ def stroke_trim(
1553
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1554
+ execution_context: int | str | None = None,
1555
+ undo: bool | None = None,
1556
+ *,
1557
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1558
+ use_smooth_stroke: bool | None = False,
1559
+ smooth_stroke_factor: float | None = 0.75,
1560
+ smooth_stroke_radius: int | None = 35,
1561
+ ):
1562
+ """Delete stroke points in between intersecting strokes
1563
+
1564
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1565
+ :type execution_context: int | str | None
1566
+ :type undo: bool | None
1567
+ :param path: Path
1568
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1569
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
1570
+ :type use_smooth_stroke: bool | None
1571
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
1572
+ :type smooth_stroke_factor: float | None
1573
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
1574
+ :type smooth_stroke_radius: int | None
1575
+ """
1576
+
1577
+ ...
1578
+
1561
1579
  def trace_image(
1562
1580
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
1563
1581
  execution_context: int | str | None = None,
@@ -1658,6 +1676,152 @@ def vertex_brush_stroke(
1658
1676
 
1659
1677
  ...
1660
1678
 
1679
+ def vertex_color_brightness_contrast(
1680
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1681
+ execution_context: int | str | None = None,
1682
+ undo: bool | None = None,
1683
+ *,
1684
+ mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
1685
+ brightness: float | None = 0.0,
1686
+ contrast: float | None = 0.0,
1687
+ ):
1688
+ """Adjust vertex color brightness/contrast
1689
+
1690
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1691
+ :type execution_context: int | str | None
1692
+ :type undo: bool | None
1693
+ :param mode: Mode
1694
+ :type mode: typing.Literal['STROKE','FILL','BOTH'] | None
1695
+ :param brightness: Brightness
1696
+ :type brightness: float | None
1697
+ :param contrast: Contrast
1698
+ :type contrast: float | None
1699
+ """
1700
+
1701
+ ...
1702
+
1703
+ def vertex_color_hsv(
1704
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1705
+ execution_context: int | str | None = None,
1706
+ undo: bool | None = None,
1707
+ *,
1708
+ mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
1709
+ h: float | None = 0.5,
1710
+ s: float | None = 1.0,
1711
+ v: float | None = 1.0,
1712
+ ):
1713
+ """Adjust vertex color HSV values
1714
+
1715
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1716
+ :type execution_context: int | str | None
1717
+ :type undo: bool | None
1718
+ :param mode: Mode
1719
+ :type mode: typing.Literal['STROKE','FILL','BOTH'] | None
1720
+ :param h: Hue
1721
+ :type h: float | None
1722
+ :param s: Saturation
1723
+ :type s: float | None
1724
+ :param v: Value
1725
+ :type v: float | None
1726
+ """
1727
+
1728
+ ...
1729
+
1730
+ def vertex_color_invert(
1731
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1732
+ execution_context: int | str | None = None,
1733
+ undo: bool | None = None,
1734
+ *,
1735
+ mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
1736
+ ):
1737
+ """Invert RGB values
1738
+
1739
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1740
+ :type execution_context: int | str | None
1741
+ :type undo: bool | None
1742
+ :param mode: Mode
1743
+ :type mode: typing.Literal['STROKE','FILL','BOTH'] | None
1744
+ """
1745
+
1746
+ ...
1747
+
1748
+ def vertex_color_levels(
1749
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1750
+ execution_context: int | str | None = None,
1751
+ undo: bool | None = None,
1752
+ *,
1753
+ mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
1754
+ offset: float | None = 0.0,
1755
+ gain: float | None = 1.0,
1756
+ ):
1757
+ """Adjust levels of vertex colors
1758
+
1759
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1760
+ :type execution_context: int | str | None
1761
+ :type undo: bool | None
1762
+ :param mode: Mode
1763
+ :type mode: typing.Literal['STROKE','FILL','BOTH'] | None
1764
+ :param offset: Offset, Value to add to colors
1765
+ :type offset: float | None
1766
+ :param gain: Gain, Value to multiply colors by
1767
+ :type gain: float | None
1768
+ """
1769
+
1770
+ ...
1771
+
1772
+ def vertex_color_set(
1773
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1774
+ execution_context: int | str | None = None,
1775
+ undo: bool | None = None,
1776
+ *,
1777
+ mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
1778
+ factor: float | None = 1.0,
1779
+ ):
1780
+ """Set active color to all selected vertex
1781
+
1782
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1783
+ :type execution_context: int | str | None
1784
+ :type undo: bool | None
1785
+ :param mode: Mode
1786
+ :type mode: typing.Literal['STROKE','FILL','BOTH'] | None
1787
+ :param factor: Factor, Mix Factor
1788
+ :type factor: float | None
1789
+ """
1790
+
1791
+ ...
1792
+
1793
+ def vertex_group_normalize(
1794
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1795
+ execution_context: int | str | None = None,
1796
+ undo: bool | None = None,
1797
+ ):
1798
+ """Normalize weights of the active vertex group
1799
+
1800
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1801
+ :type execution_context: int | str | None
1802
+ :type undo: bool | None
1803
+ """
1804
+
1805
+ ...
1806
+
1807
+ def vertex_group_normalize_all(
1808
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1809
+ execution_context: int | str | None = None,
1810
+ undo: bool | None = None,
1811
+ *,
1812
+ lock_active: bool | None = True,
1813
+ ):
1814
+ """Normalize the weights of all vertex groups, so that for each vertex, the sum of all weights is 1.0
1815
+
1816
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1817
+ :type execution_context: int | str | None
1818
+ :type undo: bool | None
1819
+ :param lock_active: Lock Active, Keep the values of the active group while normalizing others
1820
+ :type lock_active: bool | None
1821
+ """
1822
+
1823
+ ...
1824
+
1661
1825
  def vertex_group_smooth(
1662
1826
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
1663
1827
  execution_context: int | str | None = None,
@@ -12,16 +12,12 @@ def change_effect_input(
12
12
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
13
13
  execution_context: int | str | None = None,
14
14
  undo: bool | None = None,
15
- *,
16
- swap: typing.Literal["A_B", "B_C", "A_C"] | None = "A_B",
17
15
  ):
18
16
  """Undocumented, consider contributing.
19
17
 
20
18
  :type override_context: bpy.types.Context | dict[str, typing.Any]
21
19
  :type execution_context: int | str | None
22
20
  :type undo: bool | None
23
- :param swap: Swap, The effect inputs to swap
24
- :type swap: typing.Literal['A_B','B_C','A_C'] | None
25
21
  """
26
22
 
27
23
  ...
@@ -2471,7 +2467,7 @@ def swap_inputs(
2471
2467
  execution_context: int | str | None = None,
2472
2468
  undo: bool | None = None,
2473
2469
  ):
2474
- """Swap the first two inputs for the effect strip
2470
+ """Swap the two inputs of the effect strip
2475
2471
 
2476
2472
  :type override_context: bpy.types.Context | dict[str, typing.Any]
2477
2473
  :type execution_context: int | str | None
bpy/types/__init__.pyi CHANGED
@@ -68926,7 +68926,6 @@ FileHandler
68926
68926
  * SequencesMeta.new_effect
68927
68927
  * SequencesMeta.new_effect
68928
68928
  * SequencesMeta.new_effect
68929
- * SequencesMeta.new_effect
68930
68929
  * SequencesMeta.new_image
68931
68930
  * SequencesMeta.new_mask
68932
68931
  * SequencesMeta.new_meta
@@ -68938,7 +68937,6 @@ FileHandler
68938
68937
  * SequencesTopLevel.new_effect
68939
68938
  * SequencesTopLevel.new_effect
68940
68939
  * SequencesTopLevel.new_effect
68941
- * SequencesTopLevel.new_effect
68942
68940
  * SequencesTopLevel.new_image
68943
68941
  * SequencesTopLevel.new_mask
68944
68942
  * SequencesTopLevel.new_meta
@@ -91195,6 +91193,8 @@ example of how to create/use filtering/reordering callbacks.
91195
91193
  * AnimData.action_slot
91196
91194
  * AnimData.action_slots
91197
91195
  * KeyframeActionStrip.key_insert
91196
+ * NlaStrip.action_slot
91197
+ * NlaStrip.action_slots
91198
91198
 
91199
91199
  :columns: 2
91200
91200
 
@@ -111003,7 +111003,6 @@ class SequencesMeta(bpy_prop_collection[Sequence], bpy_struct):
111003
111003
  frame_end: int | None = 0,
111004
111004
  seq1: Sequence | None = None,
111005
111005
  seq2: Sequence | None = None,
111006
- seq3: Sequence | None = None,
111007
111006
  ) -> Sequence:
111008
111007
  """Add a new effect sequence
111009
111008
 
@@ -111021,8 +111020,6 @@ class SequencesMeta(bpy_prop_collection[Sequence], bpy_struct):
111021
111020
  :type seq1: Sequence | None
111022
111021
  :param seq2: Sequence 2 for effect
111023
111022
  :type seq2: Sequence | None
111024
- :param seq3: Sequence 3 for effect
111025
- :type seq3: Sequence | None
111026
111023
  :return: New Sequence
111027
111024
  :rtype: Sequence
111028
111025
  """
@@ -111256,7 +111253,6 @@ class SequencesTopLevel(bpy_prop_collection[Sequence], bpy_struct):
111256
111253
  frame_end: int | None = 0,
111257
111254
  seq1: Sequence | None = None,
111258
111255
  seq2: Sequence | None = None,
111259
- seq3: Sequence | None = None,
111260
111256
  ) -> Sequence:
111261
111257
  """Add a new effect sequence
111262
111258
 
@@ -111274,8 +111270,6 @@ class SequencesTopLevel(bpy_prop_collection[Sequence], bpy_struct):
111274
111270
  :type seq1: Sequence | None
111275
111271
  :param seq2: Sequence 2 for effect
111276
111272
  :type seq2: Sequence | None
111277
- :param seq3: Sequence 3 for effect
111278
- :type seq3: Sequence | None
111279
111273
  :return: New Sequence
111280
111274
  :rtype: Sequence
111281
111275
  """
@@ -161802,6 +161796,12 @@ class GreasePencilLayer(bpy_struct):
161802
161796
  :type: bool
161803
161797
  """
161804
161798
 
161799
+ ignore_locked_materials: bool
161800
+ """ Allow editing strokes even if they use locked materials
161801
+
161802
+ :type: bool
161803
+ """
161804
+
161805
161805
  lock: bool
161806
161806
  """ Protect layer from further editing and/or frame changes
161807
161807
 
@@ -161898,12 +161898,6 @@ class GreasePencilLayer(bpy_struct):
161898
161898
  :type: bool
161899
161899
  """
161900
161900
 
161901
- use_locked_material: bool
161902
- """ Allow editing locked materials in the layer
161903
-
161904
- :type: bool
161905
- """
161906
-
161907
161901
  use_masks: bool
161908
161902
  """ The visibility of drawings on this layer is affected by the layers in its masks list
161909
161903
 
@@ -182203,6 +182197,30 @@ class NlaStrip(bpy_struct):
182203
182197
  :type: float
182204
182198
  """
182205
182199
 
182200
+ action_slot: ActionSlot | None
182201
+ """ The slot identifies which sub-set of the Action is considered to be for this strip, and its name is used to find the right slot when assigning another Action
182202
+
182203
+ :type: ActionSlot | None
182204
+ """
182205
+
182206
+ action_slot_handle: int
182207
+ """ A number that identifies which sub-set of the Action is considered to be for this NLA strip
182208
+
182209
+ :type: int
182210
+ """
182211
+
182212
+ action_slot_name: str
182213
+ """ The name of the action slot. The slot identifies which sub-set of the Action is considered to be for this strip, and its name is used to find the right slot when assigning an Action.
182214
+
182215
+ :type: str
182216
+ """
182217
+
182218
+ action_slots: bpy_prop_collection[ActionSlot]
182219
+ """ The list action slots suitable for this NLA strip
182220
+
182221
+ :type: bpy_prop_collection[ActionSlot]
182222
+ """
182223
+
182206
182224
  active: bool | None
182207
182225
  """ NLA Strip is active
182208
182226
 
@@ -257537,6 +257555,8 @@ ANIM_OT_slot_new_for_id: bl_operators.anim.ANIM_OT_slot_new_for_id
257537
257555
 
257538
257556
  ANIM_OT_slot_unassign_from_id: bl_operators.anim.ANIM_OT_slot_unassign_from_id
257539
257557
 
257558
+ ANIM_OT_slot_unassign_from_nla_strip: bl_operators.anim.ANIM_OT_slot_unassign_from_nla_strip
257559
+
257540
257560
  ARMATURE_MT_collection_context_menu: bl_ui.properties_data_armature.ARMATURE_MT_collection_context_menu
257541
257561
 
257542
257562
  ARMATURE_MT_collection_tree_context_menu: bl_ui.properties_data_armature.ARMATURE_MT_collection_tree_context_menu
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240912
3
+ Version: 20240914
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
@@ -54,7 +54,7 @@ bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
54
  bl_operators/__init__.pyi,sha256=-qcbLKmWzQQO-_y-xU8-eSElH4LBqRYMyOhHGCpuKOo,1574
55
55
  bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  bl_operators/add_mesh_torus/__init__.pyi,sha256=m2hhJ8mqapeXt0l2GuNdbRKFvStRzgLDYG2PRKQhq2E,1323
57
- bl_operators/anim/__init__.pyi,sha256=Ly-a2X3i7E4y76u95tx_u6S0zHQU4crZ8TpGIXyPQyI,8973
57
+ bl_operators/anim/__init__.pyi,sha256=LGHHVyCCJbptRsh2f04Cs5nyT9bjcC4cbIyEnXVCDKc,9937
58
58
  bl_operators/assets/__init__.pyi,sha256=THac4Ge5gEQFPIq-D_vUeBX0F2kDNxv_lHY7rfGIACI,2966
59
59
  bl_operators/bmesh/__init__.pyi,sha256=-a6Tfl9k1DQ1bd2p5-X7OmVBGt_zaBMj9E98HON_kYc,200
60
60
  bl_operators/bmesh/find_adjacent/__init__.pyi,sha256=GaTKWwdsYqXkDSr6GNrTgK7yFj8xia_vLcfhtRWLWbI,701
@@ -170,7 +170,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=idjVMqEm8Ii23DepGztLWz_ej7BhUFUAm70M9t
170
170
  bl_ui/space_text/__init__.pyi,sha256=annaaQ2DnK_uyp0JgpG1WB_B_3thoyih2t61_gbKXvY,9480
171
171
  bl_ui/space_time/__init__.pyi,sha256=mWzdU9svYFdx_vTkJGkewEvJcxBQx4DySCKk-CdrFdQ,5116
172
172
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=rQ5gwLEW3BUASONIAYcsV-8iY_-nzY-zeMqqP1skBIk,3383
173
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=XxH0STafGjO_CzYcFlwNEk0nzH3PF6rbaSSdCe1Y98U,11957
173
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=Wv1YEFmNVcbRUzBEFmTBP_ui4FMNrPfTqEYxo-0RnU4,11955
174
174
  bl_ui/space_topbar/__init__.pyi,sha256=JeTpm65HjAyvi6cGk4DlhlrErnmaMi4Ko5u0RyeV0lU,16553
175
175
  bl_ui/space_userpref/__init__.pyi,sha256=YNHpotZVSCJqa8pm8lfJgWfbH6DEkQORdLTAALizTrU,83531
176
176
  bl_ui/space_view3d/__init__.pyi,sha256=Mw3Nz1_L0nl_0wA67NbKYsddwEvLgFo6XtSvrusBz1c,177027
@@ -191,7 +191,7 @@ bmesh/types/__init__.pyi,sha256=fz-J0btO_WGmxkE1BRWslGXnF7yE9vPs8AY2AM3Ll7k,4160
191
191
  bmesh/utils/__init__.pyi,sha256=0uLRVNx3hdiu5sRbSRSbdMH0s6PyoA56zHG1HXZkjGc,6122
192
192
  bpy/__init__.pyi,sha256=eXsyepoLE5nmJxFkMi3FDD9JhvnefoiPG1eYmE3k0p4,556
193
193
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
- bpy/app/__init__.pyi,sha256=UumxWmIkJNFyHOSyMZAqXdUaqU04_aLPWdThFQcqZ-Q,8300
194
+ bpy/app/__init__.pyi,sha256=F6FISBzRQHmH19-sQcb00cd6M4xTKvJimytNnhhteDM,8267
195
195
  bpy/app/handlers/__init__.pyi,sha256=zxasMfExElECjUyHGx5qDKAvS_Q3XvZZSHQE_8Cn6J0,6642
196
196
  bpy/app/icons/__init__.pyi,sha256=sRFCWEBekacCpdyef0vl7-Z53eU5UUzG0n6Qj70soc8,1140
197
197
  bpy/app/timers/__init__.pyi,sha256=lYUyorTjJRVqOJphUS0Gxwnagg1wBCXoYQSsj-rPvq8,2246
@@ -199,7 +199,7 @@ bpy/app/translations/__init__.pyi,sha256=W3L2ZN2l8DDUs84vlmsH1FxbBZTuesKGN02nB0K
199
199
  bpy/msgbus/__init__.pyi,sha256=klT8MEBSFA8gRXuaS8sJ2DMNtcTfb0O9lhpYh6hr6Ac,2717
200
200
  bpy/ops/__init__.pyi,sha256=lkepW1mLex8wS958nZDk_xDJ2FL-U3VXu1NbDIbhdrw,5489
201
201
  bpy/ops/action/__init__.pyi,sha256=dzqlbHa_pnoQzTBYT4au5jn_BsVnxpMpZxD6L5pyQfQ,24982
202
- bpy/ops/anim/__init__.pyi,sha256=kN80zUL5Tevx22inlEduCPER4OrEDdvPpgym5wOqWNY,32299
202
+ bpy/ops/anim/__init__.pyi,sha256=1xikjFrUrdeM1Z4nbNKqGqKcwzcOAzkBR0w3t3L4fgI,32738
203
203
  bpy/ops/armature/__init__.pyi,sha256=IMxUV8wah7kDDXKXXgvhTQx1M646Mbxo2Ql-jKE3r44,28195
204
204
  bpy/ops/asset/__init__.pyi,sha256=eLklWs7neJnC34omhMUTduX2fKL8dUrft72_QjFgAow,11292
205
205
  bpy/ops/boid/__init__.pyi,sha256=ftfvtWhSLFXZxyW2uamL0KGUYPgURwFIJRr-BJVUTA4,3535
@@ -227,7 +227,7 @@ bpy/ops/geometry/__init__.pyi,sha256=Z6e6ctOiWc9_8nWzMaxaSQkxy6YPz0sM81FUzuuPpD4
227
227
  bpy/ops/gizmogroup/__init__.pyi,sha256=RpAYYMScoOxyEA-BN0DTCct_xo4ReHHMTG3TusJQdRE,1678
228
228
  bpy/ops/gpencil/__init__.pyi,sha256=E1l2ZC9Uilh8ckBwsdrbuDge-BYwwdvtwcQID3a2sIQ,107384
229
229
  bpy/ops/graph/__init__.pyi,sha256=-Wfh00juJx-90J2qsTdLdSILhwoBduZ_QGa8dZmGH74,53254
230
- bpy/ops/grease_pencil/__init__.pyi,sha256=hmPt8poG5gVTwxXactNSIVbyf7v51ClZKk3lp7oClAk,55120
230
+ bpy/ops/grease_pencil/__init__.pyi,sha256=i0eNWoKGVHhnyjBF3EOzhQ_SdP3Hi8vbOxfrCrSPeow,60155
231
231
  bpy/ops/image/__init__.pyi,sha256=dZJXm98jnr6e6114JyNl8gXrqNNfpxjXPV9g99O356c,59886
232
232
  bpy/ops/import_anim/__init__.pyi,sha256=8HRyzhoN2h0G838B4-wlqqjS75fB_o9fw5Vh0Pbtb9w,3304
233
233
  bpy/ops/import_curve/__init__.pyi,sha256=6RgVI-JGcPMXaLQtzilYTDy1meCPZLY5OYzgFB3UgC0,739
@@ -258,7 +258,7 @@ bpy/ops/screen/__init__.pyi,sha256=Cv7gOhL68H8q4X5bS06qLbEZRV_FdSDxlXb8jYfJm4E,2
258
258
  bpy/ops/script/__init__.pyi,sha256=MP-ZoWZtY-r6qw448PnoNho9gOBvMhERzMNfTWmGamY,1538
259
259
  bpy/ops/sculpt/__init__.pyi,sha256=smk8nwVnyGJHK6RFL1N48lGvItzawaxmBQsMIL3MzUI,50583
260
260
  bpy/ops/sculpt_curves/__init__.pyi,sha256=YkGNNTIRvlwR29BytfR_0gFQrMumWwhen2wefyfuje4,3383
261
- bpy/ops/sequencer/__init__.pyi,sha256=bMbkr19j1Z0YWUO38va11Ejaf9rUf65odYbZfWfudDA,87187
261
+ bpy/ops/sequencer/__init__.pyi,sha256=n5GjzDU_xh0lrZZ2UmqBQHEB2Svy-m96Eugm8JZc_dw,87005
262
262
  bpy/ops/sound/__init__.pyi,sha256=I2k7jfAgYMsD1uWEt2Kr6U8MpLyPmcz038x4X9KySQE,18112
263
263
  bpy/ops/spreadsheet/__init__.pyi,sha256=BQwMDj0Kt7RK7yrELBl6n7HSMxxtbeL54LZTHzQqXVU,2076
264
264
  bpy/ops/surface/__init__.pyi,sha256=4N1a_58EO_pJUu_Rsya9_r3CMlGiJjlGY8v1-j8gQTg,11313
@@ -276,7 +276,7 @@ bpy/ops/workspace/__init__.pyi,sha256=ouILPZIQntnAJtoyo0MeMfD7p4MX6XX__5nxQuJaVb
276
276
  bpy/ops/world/__init__.pyi,sha256=fNifYrJKsxpJb6jqQHCJTlf7iNR5fzV1saFRILtDZOE,1029
277
277
  bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
278
278
  bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
279
- bpy/types/__init__.pyi,sha256=3tQdJvuhl2JXVwyP9-ggoYy8XWJP5ownPudCNWSR3ko,6357681
279
+ bpy/types/__init__.pyi,sha256=NvEXTgixOk-4iaec20fO0IwueSkFCkjDi0dhMG1sjVw,6358342
280
280
  bpy/utils/__init__.pyi,sha256=--TTIvXJlO1WRjJS4Jv_EM-XWCp_952xAm3M_O4L5O4,13537
281
281
  bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
282
282
  bpy/utils/units/__init__.pyi,sha256=Rdhm-yBFBRp5tGXLRkMjGaQ_LB9GQA3PbvcgGFieCl4,2742
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=Hikjpdi827dJUxkRwRWsTfrhggSL1OmQ7yql-xWh268,1407
358
358
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
359
  rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
360
360
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- fake_bpy_module-20240912.dist-info/METADATA,sha256=nPygURdx0MQi2m3kjvUJwiiSFJmHqG8V4jmxI5GZee0,7289
362
- fake_bpy_module-20240912.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
363
- fake_bpy_module-20240912.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
- fake_bpy_module-20240912.dist-info/RECORD,,
361
+ fake_bpy_module-20240914.dist-info/METADATA,sha256=4c-dzw5C6ZTy3y-ok4_0m9JoVjD9lkkINSJLr2pXbVQ,7289
362
+ fake_bpy_module-20240914.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
363
+ fake_bpy_module-20240914.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
+ fake_bpy_module-20240914.dist-info/RECORD,,