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

@@ -417,6 +417,7 @@ class VIEW3D_PT_sculpt_symmetry_for_topbar(bpy_types.Panel, bpy_types._GenericUI
417
417
  bl_region_type: typing.Any
418
418
  bl_rna: typing.Any
419
419
  bl_space_type: typing.Any
420
+ bl_ui_units_x: typing.Any
420
421
  id_data: typing.Any
421
422
 
422
423
  def append(self, draw_func): ...
@@ -20,11 +20,11 @@ def fbx(
20
20
  use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
21
21
  bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
22
22
  object_types: typing.Optional[typing.Any] = {
23
- '"MESH"',
24
- '"EMPTY"',
23
+ '"OTHER"',
25
24
  '"LIGHT"',
25
+ '"MESH"',
26
26
  '"CAMERA"',
27
- '"OTHER"',
27
+ '"EMPTY"',
28
28
  '"ARMATURE"',
29
29
  },
30
30
  use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
bpy/ops/nla/__init__.pyi CHANGED
@@ -102,11 +102,11 @@ def bake(
102
102
  clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
103
103
  bake_types: typing.Optional[typing.Any] = {'"POSE"'},
104
104
  channel_types: typing.Optional[typing.Any] = {
105
- '"ROTATION"',
106
- '"SCALE"',
107
- '"LOCATION"',
108
105
  '"BBONE"',
106
+ '"LOCATION"',
109
107
  '"PROPS"',
108
+ '"ROTATION"',
109
+ '"SCALE"',
110
110
  },
111
111
  ):
112
112
  """Bake all selected objects location/scale/rotation animation to an action
@@ -51,7 +51,7 @@ def cloth_filter(
51
51
  bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
52
52
  ] = None,
53
53
  type: typing.Optional[typing.Any] = "GRAVITY",
54
- force_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
54
+ force_axis: typing.Optional[typing.Any] = {'"Y"', '"Z"', '"X"'},
55
55
  orientation: typing.Optional[typing.Any] = "LOCAL",
56
56
  cloth_mass: typing.Optional[typing.Any] = 1.0,
57
57
  cloth_damping: typing.Optional[typing.Any] = 0.0,
@@ -610,7 +610,7 @@ def mesh_filter(
610
610
  bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
611
611
  ] = None,
612
612
  type: typing.Optional[typing.Any] = "INFLATE",
613
- deform_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
613
+ deform_axis: typing.Optional[typing.Any] = {'"Y"', '"Z"', '"X"'},
614
614
  orientation: typing.Optional[typing.Any] = "LOCAL",
615
615
  surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
616
616
  surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
bpy/types/__init__.pyi CHANGED
@@ -92,6 +92,138 @@ import mathutils
92
92
 
93
93
  GenericType = typing.TypeVar("GenericType")
94
94
 
95
+ class bpy_prop_collection(typing.Generic[GenericType]):
96
+ """built-in class used for all collections."""
97
+
98
+ def find(self, key: typing.Optional[str]) -> int:
99
+ """Returns the index of a key in a collection or -1 when not found
100
+ (matches Python's string find function of the same name).
101
+
102
+ :param key: The identifier for the collection member.
103
+ :type key: typing.Optional[str]
104
+ :rtype: int
105
+ :return: index of the key.
106
+ """
107
+ ...
108
+
109
+ def foreach_get(self, attr, seq):
110
+ """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
111
+ Multi-dimensional arrays (like array of vectors) will be flattened into seq.
112
+
113
+ :param attr:
114
+ :type attr:
115
+ :param seq:
116
+ :type seq:
117
+ """
118
+ ...
119
+
120
+ def foreach_set(self, attr, seq):
121
+ """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
122
+ seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
123
+
124
+ :param attr:
125
+ :type attr:
126
+ :param seq:
127
+ :type seq:
128
+ """
129
+ ...
130
+
131
+ def get(
132
+ self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
133
+ ):
134
+ """Returns the value of the item assigned to key or default when not found
135
+ (matches Python's dictionary function of the same name).
136
+
137
+ :param key: The identifier for the collection member.
138
+ :type key: typing.Optional[str]
139
+ :param default: Optional argument for the value to return if
140
+ key is not found.
141
+ :type default: typing.Optional[typing.Any]
142
+ """
143
+ ...
144
+
145
+ def items(self) -> typing.List:
146
+ """Return the identifiers of collection members
147
+ (matching Python's dict.items() functionality).
148
+
149
+ :rtype: typing.List
150
+ :return: (key, value) pairs for each member of this collection.
151
+ """
152
+ ...
153
+
154
+ def keys(self) -> typing.List[str]:
155
+ """Return the identifiers of collection members
156
+ (matching Python's dict.keys() functionality).
157
+
158
+ :rtype: typing.List[str]
159
+ :return: the identifiers for each member of this collection.
160
+ """
161
+ ...
162
+
163
+ def values(self) -> typing.List:
164
+ """Return the values of collection
165
+ (matching Python's dict.values() functionality).
166
+
167
+ :rtype: typing.List
168
+ :return: the members of this collection.
169
+ """
170
+ ...
171
+
172
+ def __getitem__(
173
+ self, key: typing.Optional[typing.Union[int, str]]
174
+ ) -> "GenericType":
175
+ """
176
+
177
+ :param key:
178
+ :type key: typing.Optional[typing.Union[int, str]]
179
+ :rtype: 'GenericType'
180
+ """
181
+ ...
182
+
183
+ def __setitem__(
184
+ self, key: typing.Optional[typing.Union[int, str]], value: "GenericType"
185
+ ):
186
+ """
187
+
188
+ :param key:
189
+ :type key: typing.Optional[typing.Union[int, str]]
190
+ :param value:
191
+ :type value: 'GenericType'
192
+ """
193
+ ...
194
+
195
+ def __delitem__(
196
+ self, key: typing.Optional[typing.Union[int, str]]
197
+ ) -> "GenericType":
198
+ """
199
+
200
+ :param key:
201
+ :type key: typing.Optional[typing.Union[int, str]]
202
+ :rtype: 'GenericType'
203
+ """
204
+ ...
205
+
206
+ def __iter__(self) -> typing.Iterator["GenericType"]:
207
+ """
208
+
209
+ :rtype: typing.Iterator['GenericType']
210
+ """
211
+ ...
212
+
213
+ def __next__(self) -> "GenericType":
214
+ """
215
+
216
+ :rtype: 'GenericType'
217
+ """
218
+ ...
219
+
220
+ def __len__(self) -> int:
221
+ """
222
+
223
+ :rtype: int
224
+ """
225
+ ...
226
+
95
227
  class bpy_struct:
96
228
  """built-in base class for all classes in bpy.types."""
97
229
 
@@ -406,138 +538,6 @@ class bpy_struct:
406
538
  """
407
539
  ...
408
540
 
409
- class bpy_prop_collection(typing.Generic[GenericType]):
410
- """built-in class used for all collections."""
411
-
412
- def find(self, key: typing.Optional[str]) -> int:
413
- """Returns the index of a key in a collection or -1 when not found
414
- (matches Python's string find function of the same name).
415
-
416
- :param key: The identifier for the collection member.
417
- :type key: typing.Optional[str]
418
- :rtype: int
419
- :return: index of the key.
420
- """
421
- ...
422
-
423
- def foreach_get(self, attr, seq):
424
- """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
425
- Multi-dimensional arrays (like array of vectors) will be flattened into seq.
426
-
427
- :param attr:
428
- :type attr:
429
- :param seq:
430
- :type seq:
431
- """
432
- ...
433
-
434
- def foreach_set(self, attr, seq):
435
- """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
436
- seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
437
-
438
- :param attr:
439
- :type attr:
440
- :param seq:
441
- :type seq:
442
- """
443
- ...
444
-
445
- def get(
446
- self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
447
- ):
448
- """Returns the value of the item assigned to key or default when not found
449
- (matches Python's dictionary function of the same name).
450
-
451
- :param key: The identifier for the collection member.
452
- :type key: typing.Optional[str]
453
- :param default: Optional argument for the value to return if
454
- key is not found.
455
- :type default: typing.Optional[typing.Any]
456
- """
457
- ...
458
-
459
- def items(self) -> typing.List:
460
- """Return the identifiers of collection members
461
- (matching Python's dict.items() functionality).
462
-
463
- :rtype: typing.List
464
- :return: (key, value) pairs for each member of this collection.
465
- """
466
- ...
467
-
468
- def keys(self) -> typing.List[str]:
469
- """Return the identifiers of collection members
470
- (matching Python's dict.keys() functionality).
471
-
472
- :rtype: typing.List[str]
473
- :return: the identifiers for each member of this collection.
474
- """
475
- ...
476
-
477
- def values(self) -> typing.List:
478
- """Return the values of collection
479
- (matching Python's dict.values() functionality).
480
-
481
- :rtype: typing.List
482
- :return: the members of this collection.
483
- """
484
- ...
485
-
486
- def __getitem__(
487
- self, key: typing.Optional[typing.Union[int, str]]
488
- ) -> "GenericType":
489
- """
490
-
491
- :param key:
492
- :type key: typing.Optional[typing.Union[int, str]]
493
- :rtype: 'GenericType'
494
- """
495
- ...
496
-
497
- def __setitem__(
498
- self, key: typing.Optional[typing.Union[int, str]], value: "GenericType"
499
- ):
500
- """
501
-
502
- :param key:
503
- :type key: typing.Optional[typing.Union[int, str]]
504
- :param value:
505
- :type value: 'GenericType'
506
- """
507
- ...
508
-
509
- def __delitem__(
510
- self, key: typing.Optional[typing.Union[int, str]]
511
- ) -> "GenericType":
512
- """
513
-
514
- :param key:
515
- :type key: typing.Optional[typing.Union[int, str]]
516
- :rtype: 'GenericType'
517
- """
518
- ...
519
-
520
- def __iter__(self) -> typing.Iterator["GenericType"]:
521
- """
522
-
523
- :rtype: typing.Iterator['GenericType']
524
- """
525
- ...
526
-
527
- def __next__(self) -> "GenericType":
528
- """
529
-
530
- :rtype: 'GenericType'
531
- """
532
- ...
533
-
534
- def __len__(self) -> int:
535
- """
536
-
537
- :rtype: int
538
- """
539
- ...
540
-
541
541
  class bpy_prop_array(typing.Generic[GenericType]):
542
542
  def foreach_get(self, attr, seq): ...
543
543
  def foreach_set(self, attr, seq): ...
@@ -22878,6 +22878,12 @@ class NodeLink(bpy_struct):
22878
22878
  :type: bool
22879
22879
  """
22880
22880
 
22881
+ multi_input_sort_id: int
22882
+ """ Used to sort multiple links coming into the same input. The highest ID is at the top
22883
+
22884
+ :type: int
22885
+ """
22886
+
22881
22887
  to_node: "Node"
22882
22888
  """
22883
22889
 
@@ -22890,6 +22896,14 @@ class NodeLink(bpy_struct):
22890
22896
  :type: 'NodeSocket'
22891
22897
  """
22892
22898
 
22899
+ def swap_multi_input_sort_id(self, other: "NodeLink"):
22900
+ """Swap the order of two links connected to the same multi-input socket
22901
+
22902
+ :param other: Other, The other link. Must link to the same multi input socket
22903
+ :type other: 'NodeLink'
22904
+ """
22905
+ ...
22906
+
22893
22907
  def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
22894
22908
  """
22895
22909
 
@@ -67849,10 +67863,10 @@ class KeyConfigurations(bpy_prop_collection[KeyConfig], bpy_struct):
67849
67863
  context: typing.Optional[typing.Any] = "INVOKE_DEFAULT",
67850
67864
  properties: typing.Optional["OperatorProperties"] = None,
67851
67865
  include: typing.Optional[typing.Any] = {
67852
- '"NDOF"',
67853
67866
  '"ACTIONZONE"',
67854
67867
  '"MOUSE"',
67855
67868
  '"KEYBOARD"',
67869
+ '"NDOF"',
67856
67870
  },
67857
67871
  exclude: typing.Optional[typing.Any] = {},
67858
67872
  ):
@@ -68136,10 +68150,10 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
68136
68150
  idname: typing.Union[str, typing.Any],
68137
68151
  properties: typing.Optional["OperatorProperties"] = None,
68138
68152
  include: typing.Optional[typing.Any] = {
68139
- '"NDOF"',
68140
68153
  '"ACTIONZONE"',
68141
68154
  '"MOUSE"',
68142
68155
  '"KEYBOARD"',
68156
+ '"NDOF"',
68143
68157
  },
68144
68158
  exclude: typing.Optional[typing.Any] = {},
68145
68159
  ) -> "KeyMapItem":
@@ -71205,6 +71219,149 @@ class GreasePencilDashModifierData(Modifier, bpy_struct):
71205
71219
  """
71206
71220
  ...
71207
71221
 
71222
+ class GreasePencilEnvelopeModifier(Modifier, bpy_struct):
71223
+ """AEnvelope stroke effect modifier"""
71224
+
71225
+ invert_layer_filter: bool
71226
+ """ Invert layer filter
71227
+
71228
+ :type: bool
71229
+ """
71230
+
71231
+ invert_layer_pass_filter: bool
71232
+ """ Invert layer pass filter
71233
+
71234
+ :type: bool
71235
+ """
71236
+
71237
+ invert_material_filter: bool
71238
+ """ Invert material filter
71239
+
71240
+ :type: bool
71241
+ """
71242
+
71243
+ invert_material_pass_filter: bool
71244
+ """ Invert material pass filter
71245
+
71246
+ :type: bool
71247
+ """
71248
+
71249
+ invert_vertex_group: bool
71250
+ """ Invert vertex group weights
71251
+
71252
+ :type: bool
71253
+ """
71254
+
71255
+ layer_filter: typing.Union[str, typing.Any]
71256
+ """ Layer name
71257
+
71258
+ :type: typing.Union[str, typing.Any]
71259
+ """
71260
+
71261
+ layer_pass_filter: int
71262
+ """ Layer pass filter
71263
+
71264
+ :type: int
71265
+ """
71266
+
71267
+ mat_nr: int
71268
+ """ The material to use for the new strokes
71269
+
71270
+ :type: int
71271
+ """
71272
+
71273
+ material_filter: "Material"
71274
+ """ Material used for filtering
71275
+
71276
+ :type: 'Material'
71277
+ """
71278
+
71279
+ material_pass_filter: int
71280
+ """ Material pass
71281
+
71282
+ :type: int
71283
+ """
71284
+
71285
+ mode: typing.Union[int, str]
71286
+ """ Algorithm to use for generating the envelope
71287
+
71288
+ :type: typing.Union[int, str]
71289
+ """
71290
+
71291
+ open_influence_panel: bool
71292
+ """
71293
+
71294
+ :type: bool
71295
+ """
71296
+
71297
+ skip: int
71298
+ """ The number of generated segments to skip to reduce complexity
71299
+
71300
+ :type: int
71301
+ """
71302
+
71303
+ spread: int
71304
+ """ The number of points to skip to create straight segments
71305
+
71306
+ :type: int
71307
+ """
71308
+
71309
+ strength: float
71310
+ """ Multiplier for the strength of the new strokes
71311
+
71312
+ :type: float
71313
+ """
71314
+
71315
+ thickness: float
71316
+ """ Multiplier for the thickness of the new strokes
71317
+
71318
+ :type: float
71319
+ """
71320
+
71321
+ use_layer_pass_filter: bool
71322
+ """ Use layer pass filter
71323
+
71324
+ :type: bool
71325
+ """
71326
+
71327
+ use_material_pass_filter: bool
71328
+ """ Use material pass filter
71329
+
71330
+ :type: bool
71331
+ """
71332
+
71333
+ vertex_group_name: typing.Union[str, typing.Any]
71334
+ """ Vertex group name for modulating the deform
71335
+
71336
+ :type: typing.Union[str, typing.Any]
71337
+ """
71338
+
71339
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
71340
+ """
71341
+
71342
+ :param id: The RNA type identifier.
71343
+ :type id: typing.Optional[str]
71344
+ :param default:
71345
+ :type default:
71346
+ :rtype: 'Struct'
71347
+ :return: The RNA type or default when not found.
71348
+ """
71349
+ ...
71350
+
71351
+ def bl_rna_get_subclass_py(
71352
+ self, id: typing.Optional[str], default=None
71353
+ ) -> typing.Any:
71354
+ """
71355
+
71356
+ :param id: The RNA type identifier.
71357
+ :type id: typing.Optional[str]
71358
+ :param default:
71359
+ :type default:
71360
+ :rtype: typing.Any
71361
+ :return: The class or default when not found.
71362
+ """
71363
+ ...
71364
+
71208
71365
  class GreasePencilHookModifier(Modifier, bpy_struct):
71209
71366
  """Hook modifier to modify the location of stroke points"""
71210
71367
 
@@ -114203,14 +114360,14 @@ class FunctionNodeReplaceString(FunctionNode, NodeInternal, Node, bpy_struct):
114203
114360
  ...
114204
114361
 
114205
114362
  class FunctionNodeRotateEuler(FunctionNode, NodeInternal, Node, bpy_struct):
114206
- space: typing.Union[int, str]
114207
- """ Base orientation for rotation
114363
+ rotation_type: typing.Union[int, str]
114364
+ """ Method used to describe the rotation
114208
114365
 
114209
114366
  :type: typing.Union[int, str]
114210
114367
  """
114211
114368
 
114212
- type: typing.Union[int, str]
114213
- """ Method used to describe the rotation
114369
+ space: typing.Union[int, str]
114370
+ """ Base orientation for rotation
114214
114371
 
114215
114372
  :type: typing.Union[int, str]
114216
114373
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240301
3
+ Version: 20240302
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
@@ -153,7 +153,7 @@ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=4nIzU1cK742eSlB61nKWVQBm9_QSP
153
153
  bl_ui/space_topbar/__init__.pyi,sha256=lsxQV6Ik2PHWkO4tuZsf3tOLNunCMZ1L_07upcnBtBA,36748
154
154
  bl_ui/space_userpref/__init__.pyi,sha256=f3Slw8knKVcvzc6WcAdgcmMxK9Lca3Fuaw--F6Ouqzg,119274
155
155
  bl_ui/space_view3d/__init__.pyi,sha256=jW_FqEO2XqOFLPrEvbUZqdb1gWFrYacg7Z8naLfMHYM,366073
156
- bl_ui/space_view3d_toolbar/__init__.pyi,sha256=t36JZkzSCSvRXjmsxCtCC2vXzKBhnSKtSpR9kzkP3kc,145903
156
+ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=jf1pItkauwYqQkSYiLEc-5XH15TvbJBwMSunNx5YIiA,145933
157
157
  bl_ui/utils/__init__.pyi,sha256=UgYKsf9qhxnfPseqVMkVdauihyMV3O02WDk-3Q_M7iw,501
158
158
  bl_ui_utils/__init__.pyi,sha256=bnl92Tdgw6pXneG59u9jRoZQPxVGHfX3vepFfj3xlAU,109
159
159
  bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -199,7 +199,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=f68AefeI15BnIR_tf5mVbfrAbaly83_RIBznTGmrTSo,2
199
199
  bpy/ops/ed/__init__.pyi,sha256=O354iq6Wg0tNzTDiLkXU7agqD6e6DoywuAKuAajDLGE,9974
200
200
  bpy/ops/export_anim/__init__.pyi,sha256=AnV2l6UH64F1xxXF9rWLXZv3EJmSzI6WsP0ICv0j6Sc,2420
201
201
  bpy/ops/export_mesh/__init__.pyi,sha256=agxQTGbW405r7WZOu-bBgNDJbahufUvBqfBSqLVKGe0,2913
202
- bpy/ops/export_scene/__init__.pyi,sha256=w-GZ-rQ6q2zvPQoaOzrEs6hRLOHfh7zgz2GA7WAAlQY,46435
202
+ bpy/ops/export_scene/__init__.pyi,sha256=11sHrdCrJk8Wlsjb_UcKe8uEiL_YJfoE-gTdz7K7qog,46435
203
203
  bpy/ops/file/__init__.pyi,sha256=AOLAU6yIqsVvw4Ga9h77DvKdn0o-kOyAnG5Lmib1vI0,26137
204
204
  bpy/ops/fluid/__init__.pyi,sha256=LIkJyMJMAC5WH1ZKJ6eZGu7cB42FRLLiTeUAXy9j9cU,5094
205
205
  bpy/ops/font/__init__.pyi,sha256=5kN9cQw9Mcc2sUNRR8_9sHbFLswfyEcJ4Dg2EgcwR1M,20180
@@ -220,7 +220,7 @@ bpy/ops/mask/__init__.pyi,sha256=idXFdZ4Bfm4hF3-C0cPFDh5DUMGfDL-Zwc0LzmRG0DU,222
220
220
  bpy/ops/material/__init__.pyi,sha256=4u36fuqh_UeA9ZHX6lZp1yrcxvdPRjKjcEOzN2LX9F0,1049
221
221
  bpy/ops/mball/__init__.pyi,sha256=qpO_MAD_wUFIdb6Ky2lMrdVNsufZNfDRnuaixg6tVCw,5313
222
222
  bpy/ops/mesh/__init__.pyi,sha256=nDN8oKLTEOs1ZR-XMyVMg0Uni4slWy460dVzajXAJKE,162497
223
- bpy/ops/nla/__init__.pyi,sha256=Xc1rCpLVBUO7d5uJtBm-JI3sl-fsYkgBA8H7SkGgfbE,24744
223
+ bpy/ops/nla/__init__.pyi,sha256=n-TFFZuGHUW1xjDz6LhYpCJUiJvBKUsAjzjmZkyLPOw,24744
224
224
  bpy/ops/node/__init__.pyi,sha256=NEtaFcYvlfH5BhYR1JdYR-4Jpb1AuzOgWMTtrxLpfKY,63060
225
225
  bpy/ops/object/__init__.pyi,sha256=514I-XR8WQNWR21EV7Thzeh9nRAeDzNubaSZoohTsXY,205750
226
226
  bpy/ops/outliner/__init__.pyi,sha256=ohgJm1n2tBnSU88O5FyXNUp9dTB_Sqb28_86gFjp79s,35759
@@ -237,7 +237,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=Gs2OZGl4NUXQ0wLPQImK9sVSg4FNHckHSfBnqKoyE8
237
237
  bpy/ops/scene/__init__.pyi,sha256=ZEpwgRw6gc6dWCIEsVFMAJK5gOsWGKWb8dOi2EItBuY,19495
238
238
  bpy/ops/screen/__init__.pyi,sha256=QwLMLVzQGagLKPPhBCZRH7xUeQcb2oLuY97zwTh2qt4,28074
239
239
  bpy/ops/script/__init__.pyi,sha256=pn2CKXaea19HjHsrF-SdWrDLfO9yDo0StYYhFYnYmTI,1508
240
- bpy/ops/sculpt/__init__.pyi,sha256=VXnB-0y_UHrJIWMQJE9mkLtVNyk1ZLcx6Q_aFwDOPHo,39912
240
+ bpy/ops/sculpt/__init__.pyi,sha256=lQG7iw4CL5aEZlLcaaYYvwM_NY_MNWiLEAJutGgSYI4,39912
241
241
  bpy/ops/sculpt_curves/__init__.pyi,sha256=VSftg3xozMLjVm43j51TDfEIvglcC_TlN2BZ1MMbh8E,3336
242
242
  bpy/ops/sequencer/__init__.pyi,sha256=4g6lIr_5oWw71xMdnCCpSHWXVRllvD9dNl3Qehhqank,93251
243
243
  bpy/ops/sound/__init__.pyi,sha256=jsnI0SFHoBtnf73dJwNl79fFScHjOhUWr2tcq2ymyzY,21562
@@ -257,7 +257,7 @@ bpy/ops/workspace/__init__.pyi,sha256=cfTHpfhZok-9W-Cv6xpLYIh1LaqCQB4RAeZNnNev_H
257
257
  bpy/ops/world/__init__.pyi,sha256=Jex-4HYHQCGb1L18edEx0_Bi6LLewdSOK0FRSMfR4a8,398
258
258
  bpy/path/__init__.pyi,sha256=QxWy6N5-7KFQWppjuhDhEV-3XNodrAcFXA6JvbbTbXQ,6388
259
259
  bpy/props/__init__.pyi,sha256=vG0dYQzpuh5QnOwqNwz8W-2yKdclHbNkC2jtXkgx4rQ,29405
260
- bpy/types/__init__.pyi,sha256=NUZrGOhnBJgBey5nxweWHE3q65WCVrL6CzEPqTpS5xc,3456959
260
+ bpy/types/__init__.pyi,sha256=XA8H9NsHtS8FGkm_WF1s1-xR3WaP_Ol2-mI7cxVuywI,3460069
261
261
  bpy/utils/__init__.pyi,sha256=tXg7jhIyeJmLMHrU85XbRTSYex_YJi8siXMvAiWamd0,10365
262
262
  bpy/utils/previews/__init__.pyi,sha256=gOgnSWVc0SRdn5n768T2WxDNYhJgTZdNwQnrSQv2D_0,2159
263
263
  bpy/utils/units/__init__.pyi,sha256=AzFFYMVq6akTZ3AHGW4GzA_n6jfeKV7O9qvqvBasBgY,2684
@@ -343,7 +343,7 @@ rna_xml/__init__.pyi,sha256=oMdXh2K4vb_KNNhyhehXJPH20RJkrUExWFoGX6_8IoI,471
343
343
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
344
  sys_info/__init__.pyi,sha256=8dAUaATaRsjhkMMCN8lWAlnEo_Z0qzeYMjashL-525k,93
345
345
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
- fake_bpy_module-20240301.dist-info/METADATA,sha256=SZ9I6LcrxcP6bSdDn9gNa3fGdijtdJx4E9b5RJL5yYk,7008
347
- fake_bpy_module-20240301.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
348
- fake_bpy_module-20240301.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
349
- fake_bpy_module-20240301.dist-info/RECORD,,
346
+ fake_bpy_module-20240302.dist-info/METADATA,sha256=5f7Kk2RCcZOBW_tO5Gf0oZRbFJWsV9qmLbW5wKabhv4,7008
347
+ fake_bpy_module-20240302.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
348
+ fake_bpy_module-20240302.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
349
+ fake_bpy_module-20240302.dist-info/RECORD,,