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

@@ -19,12 +19,12 @@ def fbx(
19
19
  use_space_transform: typing.Union[bool, typing.Any] = True,
20
20
  bake_space_transform: typing.Union[bool, typing.Any] = False,
21
21
  object_types: typing.Any = {
22
- '"EMPTY"',
23
- '"OTHER"',
24
- '"LIGHT"',
25
22
  '"CAMERA"',
26
- '"ARMATURE"',
27
23
  '"MESH"',
24
+ '"OTHER"',
25
+ '"ARMATURE"',
26
+ '"EMPTY"',
27
+ '"LIGHT"',
28
28
  },
29
29
  use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
30
30
  use_mesh_modifiers_render: typing.Union[bool, typing.Any] = True,
bpy/ops/nla/__init__.pyi CHANGED
@@ -100,11 +100,11 @@ def bake(
100
100
  clean_curves: typing.Union[bool, typing.Any] = False,
101
101
  bake_types: typing.Any = {'"POSE"'},
102
102
  channel_types: typing.Any = {
103
- '"PROPS"',
104
103
  '"LOCATION"',
105
- '"BBONE"',
104
+ '"PROPS"',
106
105
  '"SCALE"',
107
106
  '"ROTATION"',
107
+ '"BBONE"',
108
108
  },
109
109
  ):
110
110
  """Bake all selected objects location/scale/rotation animation to an action
@@ -47,7 +47,7 @@ def cloth_filter(
47
47
  bpy.types.OperatorStrokeElement
48
48
  ] = None,
49
49
  type: typing.Any = "GRAVITY",
50
- force_axis: typing.Any = {'"X"', '"Y"', '"Z"'},
50
+ force_axis: typing.Any = {'"Y"', '"Z"', '"X"'},
51
51
  orientation: typing.Any = "LOCAL",
52
52
  cloth_mass: typing.Any = 1.0,
53
53
  cloth_damping: typing.Any = 0.0,
@@ -599,7 +599,7 @@ def mesh_filter(
599
599
  bpy.types.OperatorStrokeElement
600
600
  ] = None,
601
601
  type: typing.Any = "INFLATE",
602
- deform_axis: typing.Any = {'"X"', '"Y"', '"Z"'},
602
+ deform_axis: typing.Any = {'"Y"', '"Z"', '"X"'},
603
603
  orientation: typing.Any = "LOCAL",
604
604
  surface_smooth_shape_preservation: typing.Any = 0.5,
605
605
  surface_smooth_current_vertex: typing.Any = 0.5,
bpy/types/__init__.pyi CHANGED
@@ -164,6 +164,128 @@ class bpy_prop_array(typing.Generic[GenericType]):
164
164
  """
165
165
  ...
166
166
 
167
+ class bpy_prop_collection(typing.Generic[GenericType]):
168
+ """built-in class used for all collections."""
169
+
170
+ def find(self, key: str) -> str:
171
+ """Returns the index of a key in a collection or -1 when not found
172
+ (matches Python's string find function of the same name).
173
+
174
+ :param key: The identifier for the collection member.
175
+ :type key: str
176
+ :return: index of the key.
177
+ """
178
+ ...
179
+
180
+ def foreach_get(self, attr, seq):
181
+ """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
182
+ Multi-dimensional arrays (like array of vectors) will be flattened into seq.
183
+
184
+ :param attr:
185
+ :param seq:
186
+ """
187
+ ...
188
+
189
+ def foreach_set(self, attr, seq):
190
+ """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
191
+ seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
192
+
193
+ :param attr:
194
+ :param seq:
195
+ """
196
+ ...
197
+
198
+ def get(self, key: str, default=None):
199
+ """Returns the value of the item assigned to key or default when not found
200
+ (matches Python's dictionary function of the same name).
201
+
202
+ :param key: The identifier for the collection member.
203
+ :type key: str
204
+ :param default: Optional argument for the value to return if
205
+ key is not found.
206
+ """
207
+ ...
208
+
209
+ def items(self):
210
+ """Return the identifiers of collection members
211
+ (matching Python's dict.items() functionality).
212
+
213
+ :return: (key, value) pairs for each member of this collection.
214
+ """
215
+ ...
216
+
217
+ def keys(self):
218
+ """Return the identifiers of collection members
219
+ (matching Python's dict.keys() functionality).
220
+
221
+ :return: the identifiers for each member of this collection.
222
+ :rtype: typing.List[str]
223
+ """
224
+ ...
225
+
226
+ def values(self) -> typing.List[str]:
227
+ """Return the values of collection
228
+ (matching Python's dict.values() functionality).
229
+
230
+ :return: the members of this collection.
231
+ :rtype: list
232
+ """
233
+ ...
234
+
235
+ def __getitem__(self, key: typing.Union[int, str]) -> typing.Union[int, str]:
236
+ """
237
+
238
+ :param key:
239
+ :type key: typing.Union[int, str]
240
+ :return:
241
+ :rtype: GenericType
242
+ """
243
+ ...
244
+
245
+ def __setitem__(self, key: typing.Union[int, str], value: GenericType):
246
+ """
247
+
248
+ :param key:
249
+ :type key: typing.Union[int, str]
250
+ :param value:
251
+ :type value: GenericType
252
+ """
253
+ ...
254
+
255
+ def __delitem__(self, key: typing.Union[int, str]) -> typing.Union[int, str]:
256
+ """
257
+
258
+ :param key:
259
+ :type key: typing.Union[int, str]
260
+ :return:
261
+ :rtype: GenericType
262
+ """
263
+ ...
264
+
265
+ def __iter__(self) -> GenericType:
266
+ """
267
+
268
+ :return:
269
+ :rtype: typing.Iterator[GenericType]
270
+ """
271
+ ...
272
+
273
+ def __next__(self) -> typing.Iterator[GenericType]:
274
+ """
275
+
276
+ :return:
277
+ :rtype: GenericType
278
+ """
279
+ ...
280
+
281
+ def __len__(self) -> GenericType:
282
+ """
283
+
284
+ :return:
285
+ :rtype: int
286
+ """
287
+ ...
288
+
167
289
  class bpy_struct(typing.Generic[GenericType]):
168
290
  """built-in base class for all classes in bpy.types."""
169
291
 
@@ -435,128 +557,6 @@ class bpy_struct(typing.Generic[GenericType]):
435
557
  """
436
558
  ...
437
559
 
438
- class bpy_prop_collection(typing.Generic[GenericType]):
439
- """built-in class used for all collections."""
440
-
441
- def find(self, key: str) -> str:
442
- """Returns the index of a key in a collection or -1 when not found
443
- (matches Python's string find function of the same name).
444
-
445
- :param key: The identifier for the collection member.
446
- :type key: str
447
- :return: index of the key.
448
- """
449
- ...
450
-
451
- def foreach_get(self, attr, seq):
452
- """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
453
- Multi-dimensional arrays (like array of vectors) will be flattened into seq.
454
-
455
- :param attr:
456
- :param seq:
457
- """
458
- ...
459
-
460
- def foreach_set(self, attr, seq):
461
- """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
462
- seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
463
-
464
- :param attr:
465
- :param seq:
466
- """
467
- ...
468
-
469
- def get(self, key: str, default=None):
470
- """Returns the value of the item assigned to key or default when not found
471
- (matches Python's dictionary function of the same name).
472
-
473
- :param key: The identifier for the collection member.
474
- :type key: str
475
- :param default: Optional argument for the value to return if
476
- key is not found.
477
- """
478
- ...
479
-
480
- def items(self):
481
- """Return the identifiers of collection members
482
- (matching Python's dict.items() functionality).
483
-
484
- :return: (key, value) pairs for each member of this collection.
485
- """
486
- ...
487
-
488
- def keys(self):
489
- """Return the identifiers of collection members
490
- (matching Python's dict.keys() functionality).
491
-
492
- :return: the identifiers for each member of this collection.
493
- :rtype: typing.List[str]
494
- """
495
- ...
496
-
497
- def values(self) -> typing.List[str]:
498
- """Return the values of collection
499
- (matching Python's dict.values() functionality).
500
-
501
- :return: the members of this collection.
502
- :rtype: list
503
- """
504
- ...
505
-
506
- def __getitem__(self, key: typing.Union[int, str]) -> typing.Union[int, str]:
507
- """
508
-
509
- :param key:
510
- :type key: typing.Union[int, str]
511
- :return:
512
- :rtype: GenericType
513
- """
514
- ...
515
-
516
- def __setitem__(self, key: typing.Union[int, str], value: GenericType):
517
- """
518
-
519
- :param key:
520
- :type key: typing.Union[int, str]
521
- :param value:
522
- :type value: GenericType
523
- """
524
- ...
525
-
526
- def __delitem__(self, key: typing.Union[int, str]) -> typing.Union[int, str]:
527
- """
528
-
529
- :param key:
530
- :type key: typing.Union[int, str]
531
- :return:
532
- :rtype: GenericType
533
- """
534
- ...
535
-
536
- def __iter__(self) -> GenericType:
537
- """
538
-
539
- :return:
540
- :rtype: typing.Iterator[GenericType]
541
- """
542
- ...
543
-
544
- def __next__(self) -> typing.Iterator[GenericType]:
545
- """
546
-
547
- :return:
548
- :rtype: GenericType
549
- """
550
- ...
551
-
552
- def __len__(self) -> GenericType:
553
- """
554
-
555
- :return:
556
- :rtype: int
557
- """
558
- ...
559
-
560
560
  class Depsgraph:
561
561
  """ """
562
562
 
@@ -62363,7 +62363,7 @@ class KeyConfigurations(bpy_struct):
62363
62363
  idname: typing.Union[str, typing.Any],
62364
62364
  context: typing.Union[str, int] = "INVOKE_DEFAULT",
62365
62365
  properties: typing.Union[OperatorProperties, typing.Any] = None,
62366
- include: typing.Any = {'"NDOF"', '"MOUSE"', '"ACTIONZONE"', '"KEYBOARD"'},
62366
+ include: typing.Any = {'"KEYBOARD"', '"MOUSE"', '"ACTIONZONE"', '"NDOF"'},
62367
62367
  exclude: typing.Any = {},
62368
62368
  ) -> typing.Any:
62369
62369
  """find_item_from_operator
@@ -62846,7 +62846,7 @@ class KeyMapItems(bpy_struct):
62846
62846
  self,
62847
62847
  idname: typing.Union[str, typing.Any],
62848
62848
  properties: typing.Union[OperatorProperties, typing.Any] = None,
62849
- include: typing.Any = {'"NDOF"', '"MOUSE"', '"ACTIONZONE"', '"KEYBOARD"'},
62849
+ include: typing.Any = {'"KEYBOARD"', '"MOUSE"', '"ACTIONZONE"', '"NDOF"'},
62850
62850
  exclude: typing.Any = {},
62851
62851
  ) -> typing.Any:
62852
62852
  """find_from_operator
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240407
3
+ Version: 20240408
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
@@ -360,7 +360,7 @@ bpy/ops/export_anim/__init__.pyi,sha256=K6ll7RWxlG8Frqjjlv4iXOsoU1nc0jsGZuKxlVNf
360
360
  bpy/ops/export_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
361
  bpy/ops/export_mesh/__init__.pyi,sha256=GJhrJezT6_-Z7BDAThJvvP73C9DG4ilTmnO7lHAZqMo,2543
362
362
  bpy/ops/export_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
363
- bpy/ops/export_scene/__init__.pyi,sha256=RTCrlaD1wJJFc3HW8TBLrbXUAcw1KTh0F51c5O18jV0,42387
363
+ bpy/ops/export_scene/__init__.pyi,sha256=wjYNKxwC4226fhzovBRYtSZUD9c7Pu95KNK1lX6wFok,42387
364
364
  bpy/ops/export_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
365
  bpy/ops/file/__init__.pyi,sha256=jxCrURW6yr27-_rjXIfY1_ziXEAlpkIp1zOz5tgHTFM,23620
366
366
  bpy/ops/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -402,7 +402,7 @@ bpy/ops/mball/__init__.pyi,sha256=WeJtlcvbNyt_RGsLAX2_1j7MxyZ92mW57-ACUxnBC6I,46
402
402
  bpy/ops/mball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
403
403
  bpy/ops/mesh/__init__.pyi,sha256=XONTsEA-ZnUwI1Us-OPTGUasTRP5LkBQF_un2LLTseQ,140802
404
404
  bpy/ops/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
- bpy/ops/nla/__init__.pyi,sha256=ebeKtF_wgqeHN9o4PLhfDv_OWEQsG31IEGPGI_JcPLc,22280
405
+ bpy/ops/nla/__init__.pyi,sha256=Q9-aqC2fB0gECIHem7LJ_VvVokXb07kmjF40cco40SU,22280
406
406
  bpy/ops/nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
407
  bpy/ops/node/__init__.pyi,sha256=-ShkC7hZR9jCIG06Y7pW-EPtts-lJhPw7LnJQj-Dzx4,56637
408
408
  bpy/ops/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -436,7 +436,7 @@ bpy/ops/screen/__init__.pyi,sha256=wzeP_aViQAhQi_mRZnVsiDs5CtNhJ3i746bv_V9bwP0,2
436
436
  bpy/ops/screen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
437
  bpy/ops/script/__init__.pyi,sha256=W_jD0mvJZHtBqp1q8GGR7UrFY8VEN_ORymc_ZvsV0u0,1440
438
438
  bpy/ops/script/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
439
- bpy/ops/sculpt/__init__.pyi,sha256=AQcOFYgoupEWvhxxTSmQP5sti3XGIy3jDVsbP9hfayI,34542
439
+ bpy/ops/sculpt/__init__.pyi,sha256=Qjsd2hVTZYNiGQMBaGAgj5ls4Mv404TR6bsD1Q3uegI,34542
440
440
  bpy/ops/sculpt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
441
441
  bpy/ops/sculpt_curves/__init__.pyi,sha256=GWcQmCf7s6Zco6Mx5qUN7Y4aYlv1O-sfSCDh8Qc4zDo,2948
442
442
  bpy/ops/sculpt_curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -476,7 +476,7 @@ bpy/path/__init__.pyi,sha256=JdAATG1YvG3YPT3N8efWnwmPlxVR_xpojqcyxL_eCOY,6278
476
476
  bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
477
477
  bpy/props/__init__.pyi,sha256=vdhM_8tw-TFNMAPrs7aPEVULxwGbIPnf0v6GkNL_l-U,23440
478
478
  bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
479
- bpy/types/__init__.pyi,sha256=Y18C_IqcIvkUWJGOyMARy4vns3uX6OeY85tPbgcmxS0,3254021
479
+ bpy/types/__init__.pyi,sha256=SVRPhrC9ZmUVDYarwSC9coA998Yux3otYR4nN90kS0A,3254021
480
480
  bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
481
481
  bpy/utils/__init__.pyi,sha256=bT0NbmiolU8QUn9ZB2O9monMi_k7nPJ1ru6iCURdxhA,11458
482
482
  bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -594,7 +594,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
594
594
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
595
595
  sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
596
596
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
597
- fake_bpy_module-20240407.dist-info/METADATA,sha256=91PLnsl3WiYef1drfU0vJaZrSXTZRQWXEjyHrEO_nBk,7008
598
- fake_bpy_module-20240407.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
599
- fake_bpy_module-20240407.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
600
- fake_bpy_module-20240407.dist-info/RECORD,,
597
+ fake_bpy_module-20240408.dist-info/METADATA,sha256=JVfid7T8ijKb9MsLet5iFJIHgFMWHiH0VttIuctc84k,7008
598
+ fake_bpy_module-20240408.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
599
+ fake_bpy_module-20240408.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
600
+ fake_bpy_module-20240408.dist-info/RECORD,,