fake-bpy-module 20240305__py3-none-any.whl → 20240306__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.
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/types/__init__.pyi +4 -4
- {fake_bpy_module-20240305.dist-info → fake_bpy_module-20240306.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240305.dist-info → fake_bpy_module-20240306.dist-info}/RECORD +9 -9
- gpu/capabilities/__init__.pyi +9 -0
- {fake_bpy_module-20240305.dist-info → fake_bpy_module-20240306.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240305.dist-info → fake_bpy_module-20240306.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
|
-
'"
|
|
23
|
+
'"CAMERA"',
|
|
24
|
+
'"MESH"',
|
|
24
25
|
'"EMPTY"',
|
|
25
|
-
'"
|
|
26
|
+
'"OTHER"',
|
|
26
27
|
'"LIGHT"',
|
|
27
|
-
'"
|
|
28
|
-
'"CAMERA"',
|
|
28
|
+
'"ARMATURE"',
|
|
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
|
@@ -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
|
-
'"LOCATION"',
|
|
106
|
-
'"ROTATION"',
|
|
107
105
|
'"PROPS"',
|
|
108
106
|
'"BBONE"',
|
|
109
107
|
'"SCALE"',
|
|
108
|
+
'"LOCATION"',
|
|
109
|
+
'"ROTATION"',
|
|
110
110
|
},
|
|
111
111
|
):
|
|
112
112
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -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] = {'"
|
|
54
|
+
force_axis: typing.Optional[typing.Any] = {'"X"', '"Z"', '"Y"'},
|
|
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] = {'"
|
|
613
|
+
deform_axis: typing.Optional[typing.Any] = {'"X"', '"Z"', '"Y"'},
|
|
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
|
@@ -67863,10 +67863,10 @@ class KeyConfigurations(bpy_prop_collection[KeyConfig], bpy_struct):
|
|
|
67863
67863
|
context: typing.Optional[typing.Any] = "INVOKE_DEFAULT",
|
|
67864
67864
|
properties: typing.Optional["OperatorProperties"] = None,
|
|
67865
67865
|
include: typing.Optional[typing.Any] = {
|
|
67866
|
-
'"KEYBOARD"',
|
|
67867
67866
|
'"NDOF"',
|
|
67868
|
-
'"
|
|
67867
|
+
'"KEYBOARD"',
|
|
67869
67868
|
'"MOUSE"',
|
|
67869
|
+
'"ACTIONZONE"',
|
|
67870
67870
|
},
|
|
67871
67871
|
exclude: typing.Optional[typing.Any] = {},
|
|
67872
67872
|
):
|
|
@@ -68150,10 +68150,10 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
|
|
|
68150
68150
|
idname: typing.Union[str, typing.Any],
|
|
68151
68151
|
properties: typing.Optional["OperatorProperties"] = None,
|
|
68152
68152
|
include: typing.Optional[typing.Any] = {
|
|
68153
|
-
'"KEYBOARD"',
|
|
68154
68153
|
'"NDOF"',
|
|
68155
|
-
'"
|
|
68154
|
+
'"KEYBOARD"',
|
|
68156
68155
|
'"MOUSE"',
|
|
68156
|
+
'"ACTIONZONE"',
|
|
68157
68157
|
},
|
|
68158
68158
|
exclude: typing.Optional[typing.Any] = {},
|
|
68159
68159
|
) -> "KeyMapItem":
|
|
@@ -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=
|
|
202
|
+
bpy/ops/export_scene/__init__.pyi,sha256=FmB9mJjpEMY3vSY3B2EMdVCniPSVVn8q6XJqS4qNxc0,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=
|
|
223
|
+
bpy/ops/nla/__init__.pyi,sha256=WnJR9HUoTdVdbPHwD6HfDkMtWUx09mp-tBzlOyWYXe8,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=
|
|
240
|
+
bpy/ops/sculpt/__init__.pyi,sha256=6terCC1ndnPTwFMNj7QzXEhRzoaR4Vevoo7VSLhSpRs,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=
|
|
260
|
+
bpy/types/__init__.pyi,sha256=GdWHDScZ1hQVLLXO5xyZGvS8UpONvkO6rONA4LDA41k,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
|
|
@@ -298,7 +298,7 @@ freestyle/utils/__init__.pyi,sha256=LRqWZRiRQIN6F3y3KxgpnatxkI1B8YrEuBzQHg_D2-0,
|
|
|
298
298
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=cAYX_t2EX_RCmGXZJ9hUxQVNZoVerldNGJiWLZnE-U8,3442
|
|
299
299
|
gpu/__init__.pyi,sha256=9AGTdrNyHWTjBpS8VqtPr2IINTOFU62oJ3QMnsHfzNc,234
|
|
300
300
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
|
-
gpu/capabilities/__init__.pyi,sha256=
|
|
301
|
+
gpu/capabilities/__init__.pyi,sha256=5m-TXkoKCgA7kIzqoNdbqDa1jP0KQpx0-0pL6dZnXiE,3865
|
|
302
302
|
gpu/matrix/__init__.pyi,sha256=hO_20zeswDY00MH59cLbDjalNnvAT_A5Sa4D_aWr4Mo,2587
|
|
303
303
|
gpu/platform/__init__.pyi,sha256=7R1hx24hMUQJdKd36jjsAVvJ-U431MGkzRtM4d-xYkQ,778
|
|
304
304
|
gpu/select/__init__.pyi,sha256=VZ2jswTRLBZIUFk1CQO3x6kXnF7PCT99S6EI3UvxT80,161
|
|
@@ -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-
|
|
347
|
-
fake_bpy_module-
|
|
348
|
-
fake_bpy_module-
|
|
349
|
-
fake_bpy_module-
|
|
346
|
+
fake_bpy_module-20240306.dist-info/METADATA,sha256=4cZ1dmk8Gm07OiZNhaAbBvBtJpZPN_9YoG4aaID2O1Y,7008
|
|
347
|
+
fake_bpy_module-20240306.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
348
|
+
fake_bpy_module-20240306.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
349
|
+
fake_bpy_module-20240306.dist-info/RECORD,,
|
gpu/capabilities/__init__.pyi
CHANGED
|
@@ -47,6 +47,15 @@ def max_batch_vertices_get() -> int:
|
|
|
47
47
|
|
|
48
48
|
...
|
|
49
49
|
|
|
50
|
+
def max_images_get() -> int:
|
|
51
|
+
"""Get maximum supported number of image units.
|
|
52
|
+
|
|
53
|
+
:rtype: int
|
|
54
|
+
:return: Number of image units.
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
...
|
|
58
|
+
|
|
50
59
|
def max_texture_layers_get() -> int:
|
|
51
60
|
"""Get maximum number of layers in texture.
|
|
52
61
|
|
|
File without changes
|
|
File without changes
|