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

@@ -20,12 +20,12 @@ 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
- '"CAMERA"',
24
23
  '"OTHER"',
25
- '"LIGHT"',
24
+ '"EMPTY"',
26
25
  '"ARMATURE"',
26
+ '"LIGHT"',
27
27
  '"MESH"',
28
- '"EMPTY"',
28
+ '"CAMERA"',
29
29
  },
30
30
  use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
31
31
  use_mesh_modifiers_render: typing.Optional[typing.Union[bool, typing.Any]] = True,
@@ -84,6 +84,16 @@ def clean_loose(
84
84
 
85
85
  ...
86
86
 
87
+ def copy(override_context=None, execution_context=None, undo=None):
88
+ """Copy the selected Grease Pencil points or strokes to the internal clipboard
89
+
90
+ :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
91
+ :type execution_context: typing.Optional[typing.Union[int, str]]
92
+ :type undo: typing.Optional[bool]
93
+ """
94
+
95
+ ...
96
+
87
97
  def cyclical_set(
88
98
  override_context=None,
89
99
  execution_context=None,
@@ -517,6 +527,24 @@ def move_to_layer(
517
527
 
518
528
  ...
519
529
 
530
+ def paste(
531
+ override_context=None,
532
+ execution_context=None,
533
+ undo=None,
534
+ *,
535
+ paste_back: typing.Optional[typing.Union[bool, typing.Any]] = False,
536
+ ):
537
+ """Paste Grease Pencil points or strokes from the internal clipboard to the active layer
538
+
539
+ :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
540
+ :type execution_context: typing.Optional[typing.Union[int, str]]
541
+ :type undo: typing.Optional[bool]
542
+ :param paste_back: Paste on Back, Add pasted strokes behind all strokes
543
+ :type paste_back: typing.Optional[typing.Union[bool, typing.Any]]
544
+ """
545
+
546
+ ...
547
+
520
548
  def reorder(
521
549
  override_context=None,
522
550
  execution_context=None,
bpy/ops/nla/__init__.pyi CHANGED
@@ -103,10 +103,10 @@ def bake(
103
103
  bake_types: typing.Optional[typing.Any] = {'"POSE"'},
104
104
  channel_types: typing.Optional[typing.Any] = {
105
105
  '"LOCATION"',
106
+ '"ROTATION"',
107
+ '"PROPS"',
106
108
  '"BBONE"',
107
109
  '"SCALE"',
108
- '"PROPS"',
109
- '"ROTATION"',
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"', '"Y"', '"X"'},
54
+ force_axis: typing.Optional[typing.Any] = {'"Y"', '"X"', '"Z"'},
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"', '"Y"', '"X"'},
613
+ deform_axis: typing.Optional[typing.Any] = {'"Y"', '"X"', '"Z"'},
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,138 +92,6 @@ 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
-
227
95
  class bpy_struct:
228
96
  """built-in base class for all classes in bpy.types."""
229
97
 
@@ -538,6 +406,138 @@ class bpy_struct:
538
406
  """
539
407
  ...
540
408
 
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): ...
@@ -3342,7 +3342,7 @@ class BoneCollections(bpy_struct):
3342
3342
  """
3343
3343
 
3344
3344
  is_solo_active: typing.Union[bool, typing.Any]
3345
- """ Read-ony flag that indicates there is at least one bone collection marked as 'solo'
3345
+ """ Read-only flag that indicates there is at least one bone collection marked as 'solo'
3346
3346
 
3347
3347
  :type: typing.Union[bool, typing.Any]
3348
3348
  """
@@ -27537,7 +27537,7 @@ class PreferencesFilePaths(bpy_struct):
27537
27537
  """
27538
27538
 
27539
27539
  temporary_directory: typing.Union[str, typing.Any]
27540
- """ The directory for storing temporary save files
27540
+ """ The directory for storing temporary save files. The path must reference an existing directory or it will be ignored
27541
27541
 
27542
27542
  :type: typing.Union[str, typing.Any]
27543
27543
  """
@@ -44576,7 +44576,7 @@ class UserExtensionRepo(bpy_struct):
44576
44576
  """
44577
44577
 
44578
44578
  use_remote_path: bool
44579
- """ Synchonize the repository with a remote URL/path
44579
+ """ Synchronize the repository with a remote URL/path
44580
44580
 
44581
44581
  :type: bool
44582
44582
  """
@@ -67865,8 +67865,8 @@ class KeyConfigurations(bpy_prop_collection[KeyConfig], bpy_struct):
67865
67865
  include: typing.Optional[typing.Any] = {
67866
67866
  '"KEYBOARD"',
67867
67867
  '"NDOF"',
67868
- '"MOUSE"',
67869
67868
  '"ACTIONZONE"',
67869
+ '"MOUSE"',
67870
67870
  },
67871
67871
  exclude: typing.Optional[typing.Any] = {},
67872
67872
  ):
@@ -68152,8 +68152,8 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
68152
68152
  include: typing.Optional[typing.Any] = {
68153
68153
  '"KEYBOARD"',
68154
68154
  '"NDOF"',
68155
- '"MOUSE"',
68156
68155
  '"ACTIONZONE"',
68156
+ '"MOUSE"',
68157
68157
  },
68158
68158
  exclude: typing.Optional[typing.Any] = {},
68159
68159
  ) -> "KeyMapItem":
@@ -73066,6 +73066,137 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
73066
73066
  """
73067
73067
  ...
73068
73068
 
73069
+ class GreasePencilOutlineModifier(Modifier, bpy_struct):
73070
+ """Outline of Strokes modifier from camera view"""
73071
+
73072
+ invert_layer_filter: bool
73073
+ """ Invert layer filter
73074
+
73075
+ :type: bool
73076
+ """
73077
+
73078
+ invert_layer_pass_filter: bool
73079
+ """ Invert layer pass filter
73080
+
73081
+ :type: bool
73082
+ """
73083
+
73084
+ invert_material_filter: bool
73085
+ """ Invert material filter
73086
+
73087
+ :type: bool
73088
+ """
73089
+
73090
+ invert_material_pass_filter: bool
73091
+ """ Invert material pass filter
73092
+
73093
+ :type: bool
73094
+ """
73095
+
73096
+ layer_filter: typing.Union[str, typing.Any]
73097
+ """ Layer name
73098
+
73099
+ :type: typing.Union[str, typing.Any]
73100
+ """
73101
+
73102
+ layer_pass_filter: int
73103
+ """ Layer pass filter
73104
+
73105
+ :type: int
73106
+ """
73107
+
73108
+ material_filter: "Material"
73109
+ """ Material used for filtering
73110
+
73111
+ :type: 'Material'
73112
+ """
73113
+
73114
+ material_pass_filter: int
73115
+ """ Material pass
73116
+
73117
+ :type: int
73118
+ """
73119
+
73120
+ object: "Object"
73121
+ """ Target object to define stroke start
73122
+
73123
+ :type: 'Object'
73124
+ """
73125
+
73126
+ open_influence_panel: bool
73127
+ """
73128
+
73129
+ :type: bool
73130
+ """
73131
+
73132
+ outline_material: "Material"
73133
+ """ Material used for outline strokes
73134
+
73135
+ :type: 'Material'
73136
+ """
73137
+
73138
+ sample_length: float
73139
+ """
73140
+
73141
+ :type: float
73142
+ """
73143
+
73144
+ subdivision: int
73145
+ """ Number of subdivisions
73146
+
73147
+ :type: int
73148
+ """
73149
+
73150
+ thickness: int
73151
+ """ Thickness of the perimeter stroke
73152
+
73153
+ :type: int
73154
+ """
73155
+
73156
+ use_keep_shape: bool
73157
+ """ Try to keep global shape
73158
+
73159
+ :type: bool
73160
+ """
73161
+
73162
+ use_layer_pass_filter: bool
73163
+ """ Use layer pass filter
73164
+
73165
+ :type: bool
73166
+ """
73167
+
73168
+ use_material_pass_filter: bool
73169
+ """ Use material pass filter
73170
+
73171
+ :type: bool
73172
+ """
73173
+
73174
+ def bl_rna_get_subclass(self, id: typing.Optional[str], default=None) -> "Struct":
73175
+ """
73176
+
73177
+ :param id: The RNA type identifier.
73178
+ :type id: typing.Optional[str]
73179
+ :param default:
73180
+ :type default:
73181
+ :rtype: 'Struct'
73182
+ :return: The RNA type or default when not found.
73183
+ """
73184
+ ...
73185
+
73186
+ def bl_rna_get_subclass_py(
73187
+ self, id: typing.Optional[str], default=None
73188
+ ) -> typing.Any:
73189
+ """
73190
+
73191
+ :param id: The RNA type identifier.
73192
+ :type id: typing.Optional[str]
73193
+ :param default:
73194
+ :type default:
73195
+ :rtype: typing.Any
73196
+ :return: The class or default when not found.
73197
+ """
73198
+ ...
73199
+
73069
73200
  class GreasePencilSmoothModifier(Modifier, bpy_struct):
73070
73201
  """Smooth effect modifier"""
73071
73202
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240303
3
+ Version: 20240305
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=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=gYFGMFjqqZ_uZPirjuRTofCips_uFfBWLgYrYfsDEcI,46435
202
+ bpy/ops/export_scene/__init__.pyi,sha256=HzZimVh74ltnmQrAVsI55CHnjwuDdevM0DXo_8pU718,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
@@ -207,7 +207,7 @@ bpy/ops/geometry/__init__.pyi,sha256=K_S4AJ5d0zn2kloqOYgGoGdiVE-ZSo1nEEZV95ZgDDc
207
207
  bpy/ops/gizmogroup/__init__.pyi,sha256=tROWB4BpraNSF8OctPwb8KgwB_gUB2bernMIOvxN8ts,1877
208
208
  bpy/ops/gpencil/__init__.pyi,sha256=KZiYLMziSCdME4s88DjDrX9TvvbMCNGkG7R1cQawK40,113414
209
209
  bpy/ops/graph/__init__.pyi,sha256=9wdxa-X_mQt4B-hHsh1UKgvViXM-ujUYC00HKSo7aiI,52591
210
- bpy/ops/grease_pencil/__init__.pyi,sha256=l39ewSR-shLeo5kBSldAgLiW9VhlBVSuOkR4PUJS3Yc,28684
210
+ bpy/ops/grease_pencil/__init__.pyi,sha256=HM_ru8aSwyglMbhtu2yOJO0BWgE86WresUdeQv57Zbo,29674
211
211
  bpy/ops/image/__init__.pyi,sha256=tbvDOJbE5Dq3djAGAZinMJv9TJL8QrwhmOLzZsiuGec,51531
212
212
  bpy/ops/import_anim/__init__.pyi,sha256=Mhgal7xKIoXN2cD-OiiU6ZXr0di_Bv-TVygrMcuN9dQ,3379
213
213
  bpy/ops/import_curve/__init__.pyi,sha256=sGC5e7c1NJz9QAiYTp1NLqc5hqX84wZncgIMEPi9jIk,722
@@ -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=r2QBTmM0EKgt8EfL_FeVn84eBZYT8q_unhNKeVEAaJA,24744
223
+ bpy/ops/nla/__init__.pyi,sha256=1h2TD0Chq-ts6GfdXoYcnHePE9SrLLtvsmTN6NJ8sxM,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=QaWUaaLZ8BVqiqad5Av1buJgES-2LvgHu-cNQ_w4I_4,39912
240
+ bpy/ops/sculpt/__init__.pyi,sha256=3xnv9G86QnENOsaW_1yudPSmYZAqsuViDKj6uVnGB8o,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=9H9k7uWoikIgVxPqkqP1V9EEQBTKVblB6xtMdCaTw1Y,3460069
260
+ bpy/types/__init__.pyi,sha256=OfXNW4JcL1Jjdo1S1rVTmzg7zf3p3cpY2iWz3v4u3_s,3462445
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-20240303.dist-info/METADATA,sha256=7bMsGz2SxO15KXF28hc-kkoiSxGeRFdbN8ukzWQzwNs,7008
347
- fake_bpy_module-20240303.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
348
- fake_bpy_module-20240303.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
349
- fake_bpy_module-20240303.dist-info/RECORD,,
346
+ fake_bpy_module-20240305.dist-info/METADATA,sha256=5H3JsKrqN1zk3mdhvCIY3WBbB9mfNVkLMKTCdgaOauc,7008
347
+ fake_bpy_module-20240305.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
348
+ fake_bpy_module-20240305.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
349
+ fake_bpy_module-20240305.dist-info/RECORD,,