fake-bpy-module 20240322__py3-none-any.whl → 20240325__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.
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1 -1
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/graph/__init__.pyi +4 -1
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/types/__init__.pyi +7 -1
- {fake_bpy_module-20240322.dist-info → fake_bpy_module-20240325.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240322.dist-info → fake_bpy_module-20240325.dist-info}/RECORD +11 -11
- gpu/types/__init__.pyi +14 -15
- {fake_bpy_module-20240322.dist-info → fake_bpy_module-20240325.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240322.dist-info → fake_bpy_module-20240325.dist-info}/top_level.txt +0 -0
|
@@ -19,11 +19,11 @@ 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
|
'"MESH"',
|
|
23
|
+
'"LIGHT"',
|
|
24
|
+
'"OTHER"',
|
|
26
25
|
'"CAMERA"',
|
|
26
|
+
'"EMPTY"',
|
|
27
27
|
'"ARMATURE"',
|
|
28
28
|
},
|
|
29
29
|
use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
|
bpy/ops/graph/__init__.pyi
CHANGED
|
@@ -377,14 +377,17 @@ def ease(
|
|
|
377
377
|
execution_context: typing.Union[str, int] = None,
|
|
378
378
|
undo: bool = None,
|
|
379
379
|
factor: typing.Any = 0.0,
|
|
380
|
+
sharpness: typing.Any = 2.0,
|
|
380
381
|
):
|
|
381
382
|
"""Align keyframes on a ease-in or ease-out curve
|
|
382
383
|
|
|
383
384
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
384
385
|
:type execution_context: typing.Union[str, int]
|
|
385
386
|
:type undo: bool
|
|
386
|
-
:param factor: Curve Bend,
|
|
387
|
+
:param factor: Curve Bend, Defines if the keys should be aligned on an ease-in or ease-out curve
|
|
387
388
|
:type factor: typing.Any
|
|
389
|
+
:param sharpness: Sharpness, Higher values make the change more abrupt
|
|
390
|
+
:type sharpness: typing.Any
|
|
388
391
|
"""
|
|
389
392
|
|
|
390
393
|
...
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -101,11 +101,11 @@ def bake(
|
|
|
101
101
|
clean_curves: typing.Union[bool, typing.Any] = False,
|
|
102
102
|
bake_types: typing.Any = {'"POSE"'},
|
|
103
103
|
channel_types: typing.Any = {
|
|
104
|
-
'"SCALE"',
|
|
105
|
-
'"BBONE"',
|
|
106
|
-
'"LOCATION"',
|
|
107
104
|
'"PROPS"',
|
|
105
|
+
'"BBONE"',
|
|
106
|
+
'"SCALE"',
|
|
108
107
|
'"ROTATION"',
|
|
108
|
+
'"LOCATION"',
|
|
109
109
|
},
|
|
110
110
|
):
|
|
111
111
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -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 = {'"
|
|
50
|
+
force_axis: typing.Any = {'"Y"', '"X"', '"Z"'},
|
|
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 = {'"
|
|
602
|
+
deform_axis: typing.Any = {'"Y"', '"X"', '"Z"'},
|
|
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
|
@@ -88131,6 +88131,12 @@ class PreferencesExperimental(bpy_struct):
|
|
|
88131
88131
|
:type: bool
|
|
88132
88132
|
"""
|
|
88133
88133
|
|
|
88134
|
+
use_grease_pencil_version3_convert_on_load: bool
|
|
88135
|
+
""" Enable automatic conversion to grease pencil 3.0 data when opening a blendfile (only active if 'Grease Pencil 3.0' is enabled)
|
|
88136
|
+
|
|
88137
|
+
:type: bool
|
|
88138
|
+
"""
|
|
88139
|
+
|
|
88134
88140
|
use_new_curves_tools: bool
|
|
88135
88141
|
""" Enable additional features for the new curves data block
|
|
88136
88142
|
|
|
@@ -124398,7 +124404,7 @@ class UIList:
|
|
|
124398
124404
|
:type data: typing.Any
|
|
124399
124405
|
:param property: Identifier of property in data, for the collection
|
|
124400
124406
|
:type property: typing.Union[str, typing.Any]
|
|
124401
|
-
:return: filter_flags, An array of filter flags, one for each item in the collection (NOTE: FILTER_ITEM
|
|
124407
|
+
:return: filter_flags, An array of filter flags, one for each item in the collection (NOTE: The upper 16 bits, including FILTER_ITEM, are reserved, only use the lower 16 bits for custom usages), int array of 1 items in [0, inf]
|
|
124402
124408
|
|
|
124403
124409
|
filter_neworder, An array of indices, one for each item in the collection, mapping the org index to the new one, int array of 1 items in [0, inf]
|
|
124404
124410
|
"""
|
|
@@ -149,7 +149,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=qRNQiIjAyBghdMA_cGi-bsxriRYdiKdYOlGWWG
|
|
|
149
149
|
bl_ui/space_text/__init__.pyi,sha256=skr_Z-5YvN-AYekClJhDyofs5WCym7IixNegs70sbks,41578
|
|
150
150
|
bl_ui/space_time/__init__.pyi,sha256=V3wZam6K9oSXO7-lWQFVKZ0GyZXSauaoYO5C-rFZZ6I,18567
|
|
151
151
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=ggsPZ13QxN5La9B5XhroaEkZ0Yt_IjcyVq--9y8MjFI,6378
|
|
152
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
152
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=x4sqf3_tfyfLkvVgqdkRkkKc9WP3480gKTryehJCICQ,24535
|
|
153
153
|
bl_ui/space_topbar/__init__.pyi,sha256=VYaoiCgwgRlgAq_CjTCBMVdG8WQqzdBVGvx__1TL0tA,68597
|
|
154
154
|
bl_ui/space_userpref/__init__.pyi,sha256=WlOtBzTX_9bHRHOotzDIERQy_dfNvyZkdaf--Bei5bY,208887
|
|
155
155
|
bl_ui/space_view3d/__init__.pyi,sha256=3DQGm0OjhWvFH8yD9fJGGOV2Lg8Vb8O1jRyFSF-dGvY,680468
|
|
@@ -199,14 +199,14 @@ bpy/ops/dpaint/__init__.pyi,sha256=f99dbvAlCHDX-lQcjeQPQfEyJeqUM2H7eW3crC46y4k,2
|
|
|
199
199
|
bpy/ops/ed/__init__.pyi,sha256=FB1ICxeZQsAkDUV1g6cH0c4fqKr_qPEiGcj7n9acfWE,9406
|
|
200
200
|
bpy/ops/export_anim/__init__.pyi,sha256=QOhHLpZxpTjpeNBDfxeXL-GgOzsdfANKFIfn04eNVuk,2224
|
|
201
201
|
bpy/ops/export_mesh/__init__.pyi,sha256=u_sLXIynraYJ4ykAoegXuX7jWCFCm460D_VkMTWfMYI,2581
|
|
202
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
202
|
+
bpy/ops/export_scene/__init__.pyi,sha256=nrccZ8sUuA36Rk2Z8H1hqyWC1e_wqIGMxOMvlkWLWv8,42501
|
|
203
203
|
bpy/ops/file/__init__.pyi,sha256=GZza4lGAQK777Yjbvz71ffNuvxJU1tAYuKtiXRu9JXE,25295
|
|
204
204
|
bpy/ops/fluid/__init__.pyi,sha256=BZYv5G1X1FNQkoTziTTsU7VnH2VFgW5IIF9-ltsExFo,5424
|
|
205
205
|
bpy/ops/font/__init__.pyi,sha256=ZwhWD__bpR6nM36bpvAgAgBG-N1sGmBWdPbisOE78UM,18646
|
|
206
206
|
bpy/ops/geometry/__init__.pyi,sha256=km615vqFpnadQK83d8jqQPFzkZcjpCKu_6qtUW0ZnQI,6695
|
|
207
207
|
bpy/ops/gizmogroup/__init__.pyi,sha256=r9-2ij0cNmYw3kiN611h4LDLL979x4L4FWsgc8xzY5s,1745
|
|
208
208
|
bpy/ops/gpencil/__init__.pyi,sha256=T8xZr9EHchJqzCcnlPlUGEcxJXo2E2vsnhncdDHSuBI,106186
|
|
209
|
-
bpy/ops/graph/__init__.pyi,sha256=
|
|
209
|
+
bpy/ops/graph/__init__.pyi,sha256=lgxt13iiD6uZ1udmgKD8qE83pqlVKWvpr9eUuZGPDxg,49355
|
|
210
210
|
bpy/ops/grease_pencil/__init__.pyi,sha256=8RJVpjWJb7QXlThCreCUKNusxW66UmUuVWsMBKPpnXM,30167
|
|
211
211
|
bpy/ops/image/__init__.pyi,sha256=o4w5i2DdVoXv_rE_T_Sx8jBI4OER6vTsjMnwzOXSMmY,46587
|
|
212
212
|
bpy/ops/import_anim/__init__.pyi,sha256=KuTvUlgvBr1aNQJvRvKkc8wXF0WJVMCEDf-od5GE_YU,3047
|
|
@@ -220,7 +220,7 @@ bpy/ops/mask/__init__.pyi,sha256=-wAZz1Uw_U0Bfrwpb6BKY0Nm7nEKuYcHrw7fJ8E7A3U,214
|
|
|
220
220
|
bpy/ops/material/__init__.pyi,sha256=Bw8kZGmiMuOLBzWhZOGuyXLYwgGi_ImRIMtTRaikQLs,1139
|
|
221
221
|
bpy/ops/mball/__init__.pyi,sha256=iTJJvHcg1iaEej4IgzW_mGdW4_G5ww9rKIDqY-NHHhc,5017
|
|
222
222
|
bpy/ops/mesh/__init__.pyi,sha256=PS0sV7jHNHMGxpoJY9PoXp0FmDKdeb1CTh9LZAkoAJY,147257
|
|
223
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
223
|
+
bpy/ops/nla/__init__.pyi,sha256=J0UMGjI1mr-W_YvsLnQyxvi5w9MQ6tNo7MTFaIKm5K0,23860
|
|
224
224
|
bpy/ops/node/__init__.pyi,sha256=VXdsVOwKYjwxKi84x1FVclVU8HUihhSUhoUJrrYLFoU,60624
|
|
225
225
|
bpy/ops/object/__init__.pyi,sha256=dyI2WxXFre2-X9gk2b98YKq9Ot3uIY32TB2rcZO2O2w,195991
|
|
226
226
|
bpy/ops/outliner/__init__.pyi,sha256=CSldQVoTwmeVXPc2ciusDQc5o6HFo0LF3VBCkUoKy0g,35821
|
|
@@ -237,7 +237,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=uJXw-GLOVf3MD8vagd1tjmpKiXQqWyBw_XCmgJBrOB
|
|
|
237
237
|
bpy/ops/scene/__init__.pyi,sha256=CX2au6DVgTUju4ADW-WDnJFJfU4OMcNX3bxbyK7qhBk,19659
|
|
238
238
|
bpy/ops/screen/__init__.pyi,sha256=sfqX8dTwcoOBygwmiDmSq_ucvEL6pB0CxQx3RGV0nrE,26334
|
|
239
239
|
bpy/ops/script/__init__.pyi,sha256=Pqgos0lntRuuc6mnH1XCfFB4DajIH_-JwXulSVJyWA8,1554
|
|
240
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
240
|
+
bpy/ops/sculpt/__init__.pyi,sha256=ngl1z44w3Rip9Wkvb_taNR39L9h0a5g_AjneUKNJsEE,35238
|
|
241
241
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=4PXQ_0M603I2ThYSiCP5rtYkhvaIRveCAy5sMbhC-G0,3100
|
|
242
242
|
bpy/ops/sequencer/__init__.pyi,sha256=HfDi_5XwJPI-P93M7ipFBSD0sJ8M0rmn26dJY12uRlM,85407
|
|
243
243
|
bpy/ops/sound/__init__.pyi,sha256=2iic8OBlQR9D-2JpVTttY-pVgY2zGYB8yr_JuzBQhgA,18862
|
|
@@ -257,7 +257,7 @@ bpy/ops/workspace/__init__.pyi,sha256=--eKJHEjikwh9vW1fLk7aLnqs951OIehUc1Ih4BaKb
|
|
|
257
257
|
bpy/ops/world/__init__.pyi,sha256=AC5Usw80jY1M4kA0_TP1DQVCFoVMUHXKjqM4jzHZ6zQ,428
|
|
258
258
|
bpy/path/__init__.pyi,sha256=JdAATG1YvG3YPT3N8efWnwmPlxVR_xpojqcyxL_eCOY,6278
|
|
259
259
|
bpy/props/__init__.pyi,sha256=PyqNw_wJo6FWsL_OHpzXbBGJmmjMHn5LSGWyq7dWcRs,24335
|
|
260
|
-
bpy/types/__init__.pyi,sha256=
|
|
260
|
+
bpy/types/__init__.pyi,sha256=VdFok1jRsTon2A23TZ7mh0-9QiyVIS4yXHszJO0kDqk,3160211
|
|
261
261
|
bpy/utils/__init__.pyi,sha256=UZGztNNluDmQPK2M2UHx6oogvChb4x8sSFtygu0wiRg,11587
|
|
262
262
|
bpy/utils/previews/__init__.pyi,sha256=0vWcQrvQ0xgzxF8AAUu2XVRZgkEGqqoQBk8ovUVF0u4,3035
|
|
263
263
|
bpy/utils/units/__init__.pyi,sha256=1vtEQMCIi1bkSL1m3F7J64E8hDxHx0aMGHwi4BioNxM,2331
|
|
@@ -299,7 +299,7 @@ gpu/select/__init__.pyi,sha256=VZ2jswTRLBZIUFk1CQO3x6kXnF7PCT99S6EI3UvxT80,161
|
|
|
299
299
|
gpu/shader/__init__.pyi,sha256=ZPZO3gKAxIbxFN8KryCYZ6r5v5sozsLGxb45bq2z2U8,1091
|
|
300
300
|
gpu/state/__init__.pyi,sha256=2mEry-WWbLe3Lv6awuOAyGQhANRtfW7iaIaT8OTwCRw,4433
|
|
301
301
|
gpu/texture/__init__.pyi,sha256=TECeEyTdXXbnFWgczC7Tz07qgqyf6QRbpsUSwPTFlrM,596
|
|
302
|
-
gpu/types/__init__.pyi,sha256=
|
|
302
|
+
gpu/types/__init__.pyi,sha256=1GvR2xg7u0b9a1PmAnMEESnlLvAJG7NWvIiLxMhDVrg,27328
|
|
303
303
|
gpu_extras/__init__.pyi,sha256=P8YjHnZb6dS17DntUFnWAI0nMtTMbwIU92dSrBR5k8M,101
|
|
304
304
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
305
|
gpu_extras/batch/__init__.pyi,sha256=avok-3F-bY6PR2aqyQTQwP1FdsqlTBa32Cojf3FnIPI,1328
|
|
@@ -337,7 +337,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
|
|
|
337
337
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
338
|
sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
|
|
339
339
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
|
-
fake_bpy_module-
|
|
341
|
-
fake_bpy_module-
|
|
342
|
-
fake_bpy_module-
|
|
343
|
-
fake_bpy_module-
|
|
340
|
+
fake_bpy_module-20240325.dist-info/METADATA,sha256=RQHI8BLh1ofC-NlzNkx2uTjdLVogi3oyWLcm3k9PGgA,7008
|
|
341
|
+
fake_bpy_module-20240325.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
342
|
+
fake_bpy_module-20240325.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
343
|
+
fake_bpy_module-20240325.dist-info/RECORD,,
|
gpu/types/__init__.pyi
CHANGED
|
@@ -67,7 +67,7 @@ class GPUBatch:
|
|
|
67
67
|
"""
|
|
68
68
|
...
|
|
69
69
|
|
|
70
|
-
def vertbuf_add(self, buf
|
|
70
|
+
def vertbuf_add(self, buf):
|
|
71
71
|
"""Add another vertex buffer to the Batch.
|
|
72
72
|
It is not possible to add more vertices to the batch using this method.
|
|
73
73
|
Instead it can be used to add more attributes to the existing vertices.
|
|
@@ -76,7 +76,6 @@ class GPUBatch:
|
|
|
76
76
|
Current a batch can have at most 16 vertex buffers.
|
|
77
77
|
|
|
78
78
|
:param buf: The vertex buffer that will be added to the batch.
|
|
79
|
-
:type buf: GPUVertBuf
|
|
80
79
|
"""
|
|
81
80
|
...
|
|
82
81
|
|
|
@@ -1050,19 +1049,6 @@ class GPUUniformBuf:
|
|
|
1050
1049
|
"""
|
|
1051
1050
|
...
|
|
1052
1051
|
|
|
1053
|
-
class GPUVertBuf:
|
|
1054
|
-
"""Contains a VBO."""
|
|
1055
|
-
|
|
1056
|
-
def attr_fill(self, id: typing.Union[int, str], data: typing.List[float]):
|
|
1057
|
-
"""Insert data into the buffer for a single attribute.
|
|
1058
|
-
|
|
1059
|
-
:param id: Either the name or the id of the attribute.
|
|
1060
|
-
:type id: typing.Union[int, str]
|
|
1061
|
-
:param data: Sequence of data that should be stored in the buffer
|
|
1062
|
-
:type data: typing.List[float]
|
|
1063
|
-
"""
|
|
1064
|
-
...
|
|
1065
|
-
|
|
1066
1052
|
class GPUVertFormat:
|
|
1067
1053
|
"""This object contains information about the structure of a vertex buffer."""
|
|
1068
1054
|
|
|
@@ -1085,3 +1071,16 @@ class GPUVertFormat:
|
|
|
1085
1071
|
:type fetch_mode: str
|
|
1086
1072
|
"""
|
|
1087
1073
|
...
|
|
1074
|
+
|
|
1075
|
+
class blender:
|
|
1076
|
+
"""Contains a VBO."""
|
|
1077
|
+
|
|
1078
|
+
def attr_fill(self, id: typing.Union[int, str], data: typing.List[float]):
|
|
1079
|
+
"""Insert data into the buffer for a single attribute.
|
|
1080
|
+
|
|
1081
|
+
:param id: Either the name or the id of the attribute.
|
|
1082
|
+
:type id: typing.Union[int, str]
|
|
1083
|
+
:param data: Sequence of data that should be stored in the buffer
|
|
1084
|
+
:type data: typing.List[float]
|
|
1085
|
+
"""
|
|
1086
|
+
...
|
|
File without changes
|
|
File without changes
|