fake-bpy-module 20240505__py3-none-any.whl → 20240506__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.
- bpy/ops/export_scene/__init__.pyi +2 -2
- bpy/ops/nla/__init__.pyi +4 -4
- bpy/types/__init__.pyi +55 -169
- {fake_bpy_module-20240505.dist-info → fake_bpy_module-20240506.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240505.dist-info → fake_bpy_module-20240506.dist-info}/RECORD +7 -7
- {fake_bpy_module-20240505.dist-info → fake_bpy_module-20240506.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240505.dist-info → fake_bpy_module-20240506.dist-info}/top_level.txt +0 -0
|
@@ -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
|
+
'"ARMATURE"',
|
|
23
24
|
'"CAMERA"',
|
|
25
|
+
'"EMPTY"',
|
|
24
26
|
'"LIGHT"',
|
|
25
|
-
'"ARMATURE"',
|
|
26
27
|
'"OTHER"',
|
|
27
28
|
'"MESH"',
|
|
28
|
-
'"EMPTY"',
|
|
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,
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -101,11 +101,11 @@ def bake(
|
|
|
101
101
|
clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
102
102
|
bake_types: typing.Optional[typing.Any] = {'"POSE"'},
|
|
103
103
|
channel_types: typing.Optional[typing.Any] = {
|
|
104
|
-
'"BBONE"',
|
|
105
|
-
'"PROPS"',
|
|
106
|
-
'"ROTATION"',
|
|
107
|
-
'"SCALE"',
|
|
108
104
|
'"LOCATION"',
|
|
105
|
+
'"SCALE"',
|
|
106
|
+
'"ROTATION"',
|
|
107
|
+
'"PROPS"',
|
|
108
|
+
'"BBONE"',
|
|
109
109
|
},
|
|
110
110
|
):
|
|
111
111
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/types/__init__.pyi
CHANGED
|
@@ -97326,80 +97326,7 @@ import mathutils
|
|
|
97326
97326
|
|
|
97327
97327
|
GenericType = typing.TypeVar("GenericType")
|
|
97328
97328
|
|
|
97329
|
-
class
|
|
97330
|
-
""" """
|
|
97331
|
-
|
|
97332
|
-
def foreach_get(self, attr, seq):
|
|
97333
|
-
"""
|
|
97334
|
-
|
|
97335
|
-
:param attr:
|
|
97336
|
-
:param seq:
|
|
97337
|
-
"""
|
|
97338
|
-
...
|
|
97339
|
-
|
|
97340
|
-
def foreach_set(self, attr, seq):
|
|
97341
|
-
"""
|
|
97342
|
-
|
|
97343
|
-
:param attr:
|
|
97344
|
-
:param seq:
|
|
97345
|
-
"""
|
|
97346
|
-
...
|
|
97347
|
-
|
|
97348
|
-
def __getitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
97349
|
-
"""
|
|
97350
|
-
|
|
97351
|
-
:param key:
|
|
97352
|
-
:type key: typing.Union[int, str]
|
|
97353
|
-
:return:
|
|
97354
|
-
:rtype: GenericType
|
|
97355
|
-
"""
|
|
97356
|
-
...
|
|
97357
|
-
|
|
97358
|
-
def __setitem__(self, key: typing.Union[int, str], value: GenericType):
|
|
97359
|
-
"""
|
|
97360
|
-
|
|
97361
|
-
:param key:
|
|
97362
|
-
:type key: typing.Union[int, str]
|
|
97363
|
-
:param value:
|
|
97364
|
-
:type value: GenericType
|
|
97365
|
-
"""
|
|
97366
|
-
...
|
|
97367
|
-
|
|
97368
|
-
def __delitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
97369
|
-
"""
|
|
97370
|
-
|
|
97371
|
-
:param key:
|
|
97372
|
-
:type key: typing.Union[int, str]
|
|
97373
|
-
:return:
|
|
97374
|
-
:rtype: GenericType
|
|
97375
|
-
"""
|
|
97376
|
-
...
|
|
97377
|
-
|
|
97378
|
-
def __iter__(self) -> typing.Iterator[GenericType]:
|
|
97379
|
-
"""
|
|
97380
|
-
|
|
97381
|
-
:return:
|
|
97382
|
-
:rtype: typing.Iterator[GenericType]
|
|
97383
|
-
"""
|
|
97384
|
-
...
|
|
97385
|
-
|
|
97386
|
-
def __next__(self) -> GenericType:
|
|
97387
|
-
"""
|
|
97388
|
-
|
|
97389
|
-
:return:
|
|
97390
|
-
:rtype: GenericType
|
|
97391
|
-
"""
|
|
97392
|
-
...
|
|
97393
|
-
|
|
97394
|
-
def __len__(self) -> int:
|
|
97395
|
-
"""
|
|
97396
|
-
|
|
97397
|
-
:return:
|
|
97398
|
-
:rtype: int
|
|
97399
|
-
"""
|
|
97400
|
-
...
|
|
97401
|
-
|
|
97402
|
-
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
97329
|
+
class bpy_prop_collection:
|
|
97403
97330
|
"""built-in class used for all collections."""
|
|
97404
97331
|
|
|
97405
97332
|
def find(self, key: typing.Optional[str]) -> int:
|
|
@@ -97468,61 +97395,7 @@ class bpy_prop_collection(typing.Generic[GenericType]):
|
|
|
97468
97395
|
"""
|
|
97469
97396
|
...
|
|
97470
97397
|
|
|
97471
|
-
|
|
97472
|
-
"""
|
|
97473
|
-
|
|
97474
|
-
:param key:
|
|
97475
|
-
:type key: typing.Union[int, str]
|
|
97476
|
-
:return:
|
|
97477
|
-
:rtype: GenericType
|
|
97478
|
-
"""
|
|
97479
|
-
...
|
|
97480
|
-
|
|
97481
|
-
def __setitem__(self, key: typing.Union[int, str], value: GenericType):
|
|
97482
|
-
"""
|
|
97483
|
-
|
|
97484
|
-
:param key:
|
|
97485
|
-
:type key: typing.Union[int, str]
|
|
97486
|
-
:param value:
|
|
97487
|
-
:type value: GenericType
|
|
97488
|
-
"""
|
|
97489
|
-
...
|
|
97490
|
-
|
|
97491
|
-
def __delitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
97492
|
-
"""
|
|
97493
|
-
|
|
97494
|
-
:param key:
|
|
97495
|
-
:type key: typing.Union[int, str]
|
|
97496
|
-
:return:
|
|
97497
|
-
:rtype: GenericType
|
|
97498
|
-
"""
|
|
97499
|
-
...
|
|
97500
|
-
|
|
97501
|
-
def __iter__(self) -> typing.Iterator[GenericType]:
|
|
97502
|
-
"""
|
|
97503
|
-
|
|
97504
|
-
:return:
|
|
97505
|
-
:rtype: typing.Iterator[GenericType]
|
|
97506
|
-
"""
|
|
97507
|
-
...
|
|
97508
|
-
|
|
97509
|
-
def __next__(self) -> GenericType:
|
|
97510
|
-
"""
|
|
97511
|
-
|
|
97512
|
-
:return:
|
|
97513
|
-
:rtype: GenericType
|
|
97514
|
-
"""
|
|
97515
|
-
...
|
|
97516
|
-
|
|
97517
|
-
def __len__(self) -> int:
|
|
97518
|
-
"""
|
|
97519
|
-
|
|
97520
|
-
:return:
|
|
97521
|
-
:rtype: int
|
|
97522
|
-
"""
|
|
97523
|
-
...
|
|
97524
|
-
|
|
97525
|
-
class bpy_struct(typing.Generic[GenericType]):
|
|
97398
|
+
class bpy_struct:
|
|
97526
97399
|
"""built-in base class for all classes in bpy.types."""
|
|
97527
97400
|
|
|
97528
97401
|
id_data: typing.Any
|
|
@@ -97788,33 +97661,76 @@ class bpy_struct(typing.Generic[GenericType]):
|
|
|
97788
97661
|
"""
|
|
97789
97662
|
...
|
|
97790
97663
|
|
|
97791
|
-
|
|
97664
|
+
class bpy_prop_array(typing.Generic[GenericType]):
|
|
97665
|
+
""" """
|
|
97666
|
+
|
|
97667
|
+
def foreach_get(self, attr, seq):
|
|
97668
|
+
"""
|
|
97669
|
+
|
|
97670
|
+
:param attr:
|
|
97671
|
+
:param seq:
|
|
97672
|
+
"""
|
|
97673
|
+
...
|
|
97674
|
+
|
|
97675
|
+
def foreach_set(self, attr, seq):
|
|
97676
|
+
"""
|
|
97677
|
+
|
|
97678
|
+
:param attr:
|
|
97679
|
+
:param seq:
|
|
97680
|
+
"""
|
|
97681
|
+
...
|
|
97682
|
+
|
|
97683
|
+
def __getitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
97792
97684
|
"""
|
|
97793
97685
|
|
|
97794
97686
|
:param key:
|
|
97795
97687
|
:type key: typing.Union[int, str]
|
|
97796
97688
|
:return:
|
|
97797
|
-
:rtype:
|
|
97689
|
+
:rtype: GenericType
|
|
97798
97690
|
"""
|
|
97799
97691
|
...
|
|
97800
97692
|
|
|
97801
|
-
def __setitem__(self, key: typing.Union[int, str], value:
|
|
97693
|
+
def __setitem__(self, key: typing.Union[int, str], value: GenericType):
|
|
97802
97694
|
"""
|
|
97803
97695
|
|
|
97804
97696
|
:param key:
|
|
97805
97697
|
:type key: typing.Union[int, str]
|
|
97806
97698
|
:param value:
|
|
97807
|
-
:type value:
|
|
97699
|
+
:type value: GenericType
|
|
97808
97700
|
"""
|
|
97809
97701
|
...
|
|
97810
97702
|
|
|
97811
|
-
def __delitem__(self, key: typing.Union[int, str]) ->
|
|
97703
|
+
def __delitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
97812
97704
|
"""
|
|
97813
97705
|
|
|
97814
97706
|
:param key:
|
|
97815
97707
|
:type key: typing.Union[int, str]
|
|
97816
97708
|
:return:
|
|
97817
|
-
:rtype:
|
|
97709
|
+
:rtype: GenericType
|
|
97710
|
+
"""
|
|
97711
|
+
...
|
|
97712
|
+
|
|
97713
|
+
def __iter__(self) -> typing.Iterator[GenericType]:
|
|
97714
|
+
"""
|
|
97715
|
+
|
|
97716
|
+
:return:
|
|
97717
|
+
:rtype: typing.Iterator[GenericType]
|
|
97718
|
+
"""
|
|
97719
|
+
...
|
|
97720
|
+
|
|
97721
|
+
def __next__(self) -> GenericType:
|
|
97722
|
+
"""
|
|
97723
|
+
|
|
97724
|
+
:return:
|
|
97725
|
+
:rtype: GenericType
|
|
97726
|
+
"""
|
|
97727
|
+
...
|
|
97728
|
+
|
|
97729
|
+
def __len__(self) -> int:
|
|
97730
|
+
"""
|
|
97731
|
+
|
|
97732
|
+
:return:
|
|
97733
|
+
:rtype: int
|
|
97818
97734
|
"""
|
|
97819
97735
|
...
|
|
97820
97736
|
|
|
@@ -98965,30 +98881,6 @@ class Menu:
|
|
|
98965
98881
|
"""
|
|
98966
98882
|
...
|
|
98967
98883
|
|
|
98968
|
-
@classmethod
|
|
98969
|
-
def append(cls, draw_func):
|
|
98970
|
-
"""
|
|
98971
|
-
|
|
98972
|
-
:param draw_func:
|
|
98973
|
-
"""
|
|
98974
|
-
...
|
|
98975
|
-
|
|
98976
|
-
@classmethod
|
|
98977
|
-
def prepend(cls, draw_func):
|
|
98978
|
-
"""
|
|
98979
|
-
|
|
98980
|
-
:param draw_func:
|
|
98981
|
-
"""
|
|
98982
|
-
...
|
|
98983
|
-
|
|
98984
|
-
@classmethod
|
|
98985
|
-
def remove(cls, draw_func):
|
|
98986
|
-
"""
|
|
98987
|
-
|
|
98988
|
-
:param draw_func:
|
|
98989
|
-
"""
|
|
98990
|
-
...
|
|
98991
|
-
|
|
98992
98884
|
class Mesh:
|
|
98993
98885
|
"""Mesh data-block defining geometric surfaces"""
|
|
98994
98886
|
|
|
@@ -102304,12 +102196,6 @@ class AddonPreferences(bpy_struct):
|
|
|
102304
102196
|
:type: typing.Union[str, typing.Any]
|
|
102305
102197
|
"""
|
|
102306
102198
|
|
|
102307
|
-
layout: UILayout
|
|
102308
|
-
"""
|
|
102309
|
-
|
|
102310
|
-
:type: UILayout
|
|
102311
|
-
"""
|
|
102312
|
-
|
|
102313
102199
|
@classmethod
|
|
102314
102200
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> Struct:
|
|
102315
102201
|
"""
|
|
@@ -124165,10 +124051,10 @@ class KeyConfigurations(bpy_struct):
|
|
|
124165
124051
|
context: typing.Optional[typing.Union[str, int]] = "INVOKE_DEFAULT",
|
|
124166
124052
|
properties: typing.Optional[OperatorProperties] = None,
|
|
124167
124053
|
include: typing.Optional[typing.Any] = {
|
|
124168
|
-
'"
|
|
124054
|
+
'"NDOF"',
|
|
124169
124055
|
'"ACTIONZONE"',
|
|
124170
124056
|
'"MOUSE"',
|
|
124171
|
-
'"
|
|
124057
|
+
'"KEYBOARD"',
|
|
124172
124058
|
},
|
|
124173
124059
|
exclude: typing.Optional[typing.Any] = {},
|
|
124174
124060
|
):
|
|
@@ -124661,10 +124547,10 @@ class KeyMapItems(bpy_struct):
|
|
|
124661
124547
|
idname: typing.Union[str, typing.Any],
|
|
124662
124548
|
properties: typing.Optional[OperatorProperties] = None,
|
|
124663
124549
|
include: typing.Optional[typing.Any] = {
|
|
124664
|
-
'"
|
|
124550
|
+
'"NDOF"',
|
|
124665
124551
|
'"ACTIONZONE"',
|
|
124666
124552
|
'"MOUSE"',
|
|
124667
|
-
'"
|
|
124553
|
+
'"KEYBOARD"',
|
|
124668
124554
|
},
|
|
124669
124555
|
exclude: typing.Optional[typing.Any] = {},
|
|
124670
124556
|
) -> KeyMapItem:
|
|
@@ -366,7 +366,7 @@ bpy/ops/export_anim/__init__.pyi,sha256=0IogQVQXsp9G7kyI5JtxOuFJWBg4MmEqK5Wz8ehl
|
|
|
366
366
|
bpy/ops/export_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
367
|
bpy/ops/export_mesh/__init__.pyi,sha256=g-ly7MhwZagMZDhISeopxZ4mafvL7SAOZJ82kRr_uu8,3023
|
|
368
368
|
bpy/ops/export_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
369
|
+
bpy/ops/export_scene/__init__.pyi,sha256=sx1cLDg2wmfFQ6os7HELCcS-wQokpqlQk4sPC8GylIA,48978
|
|
370
370
|
bpy/ops/export_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
371
|
bpy/ops/file/__init__.pyi,sha256=oJ_cnxgkGpmc6T6XujhgxqGpl58UABapHlLv27yGl7U,30920
|
|
372
372
|
bpy/ops/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -408,7 +408,7 @@ bpy/ops/mball/__init__.pyi,sha256=AuChtWVSrHuEk3JuYc2bJhxsLJpbmlWgENwV93ISDO0,62
|
|
|
408
408
|
bpy/ops/mball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
409
409
|
bpy/ops/mesh/__init__.pyi,sha256=-jX4QanNDVYtcAaGC3q2jlgltNqfIDqmcu6U7QydqC4,181614
|
|
410
410
|
bpy/ops/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
411
|
+
bpy/ops/nla/__init__.pyi,sha256=SaaBFem21em2EQC43QgDAjGUTCDhQw8JecBJqNQxon8,29427
|
|
412
412
|
bpy/ops/nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
413
413
|
bpy/ops/node/__init__.pyi,sha256=Teo0e6YTazie1Z8GRci3dIq3JltOWZ1J368fnaliVcE,75452
|
|
414
414
|
bpy/ops/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -482,7 +482,7 @@ bpy/path/__init__.pyi,sha256=sZMxM2jeuZMbQOzNmFS4jlYHCnr-of5PN8XT5t6vg7M,7169
|
|
|
482
482
|
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
483
483
|
bpy/props/__init__.pyi,sha256=FXgbYoK8g8h7efFV8tL9R7E6tPI1MjJzyRC9rJ_sYnw,31482
|
|
484
484
|
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
|
-
bpy/types/__init__.pyi,sha256=
|
|
485
|
+
bpy/types/__init__.pyi,sha256=Nr-XLiLBx9wxHlQa2MpNCb-n47eG5MyjLOyGbzUfKOc,5515177
|
|
486
486
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
487
|
bpy/utils/__init__.pyi,sha256=MtlLDnlInvRAEUqg7RVOZ49o6ncgLDgknamY1wr-hyI,13069
|
|
488
488
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -612,7 +612,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
|
|
|
612
612
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
613
613
|
sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
|
|
614
614
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
615
|
-
fake_bpy_module-
|
|
616
|
-
fake_bpy_module-
|
|
617
|
-
fake_bpy_module-
|
|
618
|
-
fake_bpy_module-
|
|
615
|
+
fake_bpy_module-20240506.dist-info/METADATA,sha256=jCiEbfh9ThNopeNoLhIcJyA1-bcgdDGMjbbNA8Vnx6A,7008
|
|
616
|
+
fake_bpy_module-20240506.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
617
|
+
fake_bpy_module-20240506.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
618
|
+
fake_bpy_module-20240506.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|