fake-bpy-module 20240318__py3-none-any.whl → 20240320__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/mesh/__init__.pyi +4 -4
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/paint/__init__.pyi +0 -12
- bpy/ops/sculpt/__init__.pyi +2 -14
- bpy/types/__init__.pyi +137 -131
- {fake_bpy_module-20240318.dist-info → fake_bpy_module-20240320.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240318.dist-info → fake_bpy_module-20240320.dist-info}/RECORD +10 -10
- {fake_bpy_module-20240318.dist-info → fake_bpy_module-20240320.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240318.dist-info → fake_bpy_module-20240320.dist-info}/top_level.txt +0 -0
|
@@ -23,11 +23,11 @@ def fbx(
|
|
|
23
23
|
bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
24
24
|
object_types: typing.Optional[typing.Any] = {
|
|
25
25
|
'"LIGHT"',
|
|
26
|
-
'"
|
|
26
|
+
'"CAMERA"',
|
|
27
27
|
'"MESH"',
|
|
28
28
|
'"EMPTY"',
|
|
29
29
|
'"OTHER"',
|
|
30
|
-
'"
|
|
30
|
+
'"ARMATURE"',
|
|
31
31
|
},
|
|
32
32
|
use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
33
33
|
use_mesh_modifiers_render: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -2673,7 +2673,7 @@ def primitive_cube_add(
|
|
|
2673
2673
|
rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
2674
2674
|
scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
2675
2675
|
):
|
|
2676
|
-
"""Construct a cube mesh
|
|
2676
|
+
"""Construct a cube mesh that consists of six square faces
|
|
2677
2677
|
|
|
2678
2678
|
:type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
|
|
2679
2679
|
:type execution_context: typing.Optional[typing.Union[int, str]]
|
|
@@ -2839,7 +2839,7 @@ def primitive_grid_add(
|
|
|
2839
2839
|
rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
2840
2840
|
scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
2841
2841
|
):
|
|
2842
|
-
"""Construct a
|
|
2842
|
+
"""Construct a subdivided plane mesh
|
|
2843
2843
|
|
|
2844
2844
|
:type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
|
|
2845
2845
|
:type execution_context: typing.Optional[typing.Union[int, str]]
|
|
@@ -2891,7 +2891,7 @@ def primitive_ico_sphere_add(
|
|
|
2891
2891
|
rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
2892
2892
|
scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
2893
2893
|
):
|
|
2894
|
-
"""Construct
|
|
2894
|
+
"""Construct a spherical mesh that consists of equally sized triangles
|
|
2895
2895
|
|
|
2896
2896
|
:type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
|
|
2897
2897
|
:type execution_context: typing.Optional[typing.Union[int, str]]
|
|
@@ -3101,7 +3101,7 @@ def primitive_uv_sphere_add(
|
|
|
3101
3101
|
rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
3102
3102
|
scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
3103
3103
|
):
|
|
3104
|
-
"""Construct a
|
|
3104
|
+
"""Construct a spherical mesh with quad faces, except for triangle faces at the top and bottom
|
|
3105
3105
|
|
|
3106
3106
|
:type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
|
|
3107
3107
|
:type execution_context: typing.Optional[typing.Union[int, str]]
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -118,11 +118,11 @@ def bake(
|
|
|
118
118
|
clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
119
119
|
bake_types: typing.Optional[typing.Any] = {'"POSE"'},
|
|
120
120
|
channel_types: typing.Optional[typing.Any] = {
|
|
121
|
-
'"SCALE"',
|
|
122
|
-
'"BBONE"',
|
|
123
121
|
'"PROPS"',
|
|
124
|
-
'"ROTATION"',
|
|
125
122
|
'"LOCATION"',
|
|
123
|
+
'"ROTATION"',
|
|
124
|
+
'"SCALE"',
|
|
125
|
+
'"BBONE"',
|
|
126
126
|
},
|
|
127
127
|
):
|
|
128
128
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/ops/paint/__init__.pyi
CHANGED
|
@@ -341,7 +341,6 @@ def hide_show(
|
|
|
341
341
|
action: typing.Optional[typing.Any] = "HIDE",
|
|
342
342
|
area: typing.Optional[typing.Any] = "Inside",
|
|
343
343
|
use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
344
|
-
use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
345
344
|
):
|
|
346
345
|
"""Hide/show some vertices
|
|
347
346
|
|
|
@@ -376,8 +375,6 @@ def hide_show(
|
|
|
376
375
|
:type area: typing.Optional[typing.Any]
|
|
377
376
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
378
377
|
:type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
379
|
-
:param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
|
|
380
|
-
:type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
|
|
381
378
|
"""
|
|
382
379
|
|
|
383
380
|
...
|
|
@@ -421,7 +418,6 @@ def hide_show_lasso_gesture(
|
|
|
421
418
|
action: typing.Optional[typing.Any] = "HIDE",
|
|
422
419
|
area: typing.Optional[typing.Any] = "Inside",
|
|
423
420
|
use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
424
|
-
use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
425
421
|
):
|
|
426
422
|
"""Hide/show some vertices
|
|
427
423
|
|
|
@@ -448,8 +444,6 @@ def hide_show_lasso_gesture(
|
|
|
448
444
|
:type area: typing.Optional[typing.Any]
|
|
449
445
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
450
446
|
:type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
451
|
-
:param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
|
|
452
|
-
:type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
|
|
453
447
|
"""
|
|
454
448
|
|
|
455
449
|
...
|
|
@@ -547,7 +541,6 @@ def mask_box_gesture(
|
|
|
547
541
|
ymax: typing.Optional[typing.Any] = 0,
|
|
548
542
|
wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
549
543
|
use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
550
|
-
use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
551
544
|
mode: typing.Optional[typing.Any] = "VALUE",
|
|
552
545
|
value: typing.Optional[typing.Any] = 1.0,
|
|
553
546
|
):
|
|
@@ -568,8 +561,6 @@ def mask_box_gesture(
|
|
|
568
561
|
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
569
562
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
570
563
|
:type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
571
|
-
:param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
|
|
572
|
-
:type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
|
|
573
564
|
:param mode: Mode
|
|
574
565
|
|
|
575
566
|
VALUE
|
|
@@ -630,7 +621,6 @@ def mask_lasso_gesture(
|
|
|
630
621
|
bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
|
|
631
622
|
] = None,
|
|
632
623
|
use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
633
|
-
use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
634
624
|
mode: typing.Optional[typing.Any] = "VALUE",
|
|
635
625
|
value: typing.Optional[typing.Any] = 1.0,
|
|
636
626
|
):
|
|
@@ -643,8 +633,6 @@ def mask_lasso_gesture(
|
|
|
643
633
|
:type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
|
|
644
634
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
645
635
|
:type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
646
|
-
:param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
|
|
647
|
-
:type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
|
|
648
636
|
:param mode: Mode
|
|
649
637
|
|
|
650
638
|
VALUE
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -55,7 +55,7 @@ def cloth_filter(
|
|
|
55
55
|
bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
|
|
56
56
|
] = None,
|
|
57
57
|
type: typing.Optional[typing.Any] = "GRAVITY",
|
|
58
|
-
force_axis: typing.Optional[typing.Any] = {'"
|
|
58
|
+
force_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
|
|
59
59
|
orientation: typing.Optional[typing.Any] = "LOCAL",
|
|
60
60
|
cloth_mass: typing.Optional[typing.Any] = 1.0,
|
|
61
61
|
cloth_damping: typing.Optional[typing.Any] = 0.0,
|
|
@@ -304,7 +304,6 @@ def face_set_box_gesture(
|
|
|
304
304
|
ymax: typing.Optional[typing.Any] = 0,
|
|
305
305
|
wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
306
306
|
use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
307
|
-
use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
308
307
|
):
|
|
309
308
|
"""Add face set within the box as you move the brush
|
|
310
309
|
|
|
@@ -323,8 +322,6 @@ def face_set_box_gesture(
|
|
|
323
322
|
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
324
323
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
325
324
|
:type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
326
|
-
:param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
|
|
327
|
-
:type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
|
|
328
325
|
"""
|
|
329
326
|
|
|
330
327
|
...
|
|
@@ -413,7 +410,6 @@ def face_set_lasso_gesture(
|
|
|
413
410
|
bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
|
|
414
411
|
] = None,
|
|
415
412
|
use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
416
|
-
use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
417
413
|
):
|
|
418
414
|
"""Add face set within the lasso as you move the brush
|
|
419
415
|
|
|
@@ -424,8 +420,6 @@ def face_set_lasso_gesture(
|
|
|
424
420
|
:type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
|
|
425
421
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
426
422
|
:type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
427
|
-
:param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
|
|
428
|
-
:type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
|
|
429
423
|
"""
|
|
430
424
|
|
|
431
425
|
...
|
|
@@ -662,7 +656,7 @@ def mesh_filter(
|
|
|
662
656
|
bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
|
|
663
657
|
] = None,
|
|
664
658
|
type: typing.Optional[typing.Any] = "INFLATE",
|
|
665
|
-
deform_axis: typing.Optional[typing.Any] = {'"
|
|
659
|
+
deform_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
|
|
666
660
|
orientation: typing.Optional[typing.Any] = "LOCAL",
|
|
667
661
|
surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
|
|
668
662
|
surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
|
|
@@ -963,7 +957,6 @@ def trim_box_gesture(
|
|
|
963
957
|
ymax: typing.Optional[typing.Any] = 0,
|
|
964
958
|
wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
965
959
|
use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
966
|
-
use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
967
960
|
trim_mode: typing.Optional[typing.Any] = "DIFFERENCE",
|
|
968
961
|
use_cursor_depth: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
969
962
|
trim_orientation: typing.Optional[typing.Any] = "VIEW",
|
|
@@ -986,8 +979,6 @@ def trim_box_gesture(
|
|
|
986
979
|
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
987
980
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
988
981
|
:type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
989
|
-
:param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
|
|
990
|
-
:type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
|
|
991
982
|
:param trim_mode: Trim Mode
|
|
992
983
|
|
|
993
984
|
DIFFERENCE
|
|
@@ -1032,7 +1023,6 @@ def trim_lasso_gesture(
|
|
|
1032
1023
|
bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
|
|
1033
1024
|
] = None,
|
|
1034
1025
|
use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1035
|
-
use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1036
1026
|
trim_mode: typing.Optional[typing.Any] = "DIFFERENCE",
|
|
1037
1027
|
use_cursor_depth: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1038
1028
|
trim_orientation: typing.Optional[typing.Any] = "VIEW",
|
|
@@ -1047,8 +1037,6 @@ def trim_lasso_gesture(
|
|
|
1047
1037
|
:type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
|
|
1048
1038
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
1049
1039
|
:type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1050
|
-
:param use_limit_to_segment: Limit to Segment, Apply the gesture action only to the area that is contained within the segment without extending its effect to the entire line
|
|
1051
|
-
:type use_limit_to_segment: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1052
1040
|
:param trim_mode: Trim Mode
|
|
1053
1041
|
|
|
1054
1042
|
DIFFERENCE
|
bpy/types/__init__.pyi
CHANGED
|
@@ -162,6 +162,132 @@ class bpy_prop_array(typing.Generic[GenericType]):
|
|
|
162
162
|
"""
|
|
163
163
|
...
|
|
164
164
|
|
|
165
|
+
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
166
|
+
"""built-in class used for all collections."""
|
|
167
|
+
|
|
168
|
+
def find(self, key: typing.Optional[str]) -> int:
|
|
169
|
+
"""Returns the index of a key in a collection or -1 when not found
|
|
170
|
+
(matches Python's string find function of the same name).
|
|
171
|
+
|
|
172
|
+
:param key: The identifier for the collection member.
|
|
173
|
+
:type key: typing.Optional[str]
|
|
174
|
+
:rtype: int
|
|
175
|
+
:return: index of the key.
|
|
176
|
+
"""
|
|
177
|
+
...
|
|
178
|
+
|
|
179
|
+
def foreach_get(self, attr, seq):
|
|
180
|
+
"""This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
|
|
181
|
+
Multi-dimensional arrays (like array of vectors) will be flattened into seq.
|
|
182
|
+
|
|
183
|
+
:param attr:
|
|
184
|
+
:type attr:
|
|
185
|
+
:param seq:
|
|
186
|
+
:type seq:
|
|
187
|
+
"""
|
|
188
|
+
...
|
|
189
|
+
|
|
190
|
+
def foreach_set(self, attr, seq):
|
|
191
|
+
"""This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
|
|
192
|
+
seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
|
|
193
|
+
|
|
194
|
+
:param attr:
|
|
195
|
+
:type attr:
|
|
196
|
+
:param seq:
|
|
197
|
+
:type seq:
|
|
198
|
+
"""
|
|
199
|
+
...
|
|
200
|
+
|
|
201
|
+
def get(
|
|
202
|
+
self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
|
|
203
|
+
):
|
|
204
|
+
"""Returns the value of the item assigned to key or default when not found
|
|
205
|
+
(matches Python's dictionary function of the same name).
|
|
206
|
+
|
|
207
|
+
:param key: The identifier for the collection member.
|
|
208
|
+
:type key: typing.Optional[str]
|
|
209
|
+
:param default: Optional argument for the value to return if
|
|
210
|
+
key is not found.
|
|
211
|
+
:type default: typing.Optional[typing.Any]
|
|
212
|
+
"""
|
|
213
|
+
...
|
|
214
|
+
|
|
215
|
+
def items(self) -> typing.List:
|
|
216
|
+
"""Return the identifiers of collection members
|
|
217
|
+
(matching Python's dict.items() functionality).
|
|
218
|
+
|
|
219
|
+
:rtype: typing.List
|
|
220
|
+
:return: (key, value) pairs for each member of this collection.
|
|
221
|
+
"""
|
|
222
|
+
...
|
|
223
|
+
|
|
224
|
+
def keys(self) -> typing.List[str]:
|
|
225
|
+
"""Return the identifiers of collection members
|
|
226
|
+
(matching Python's dict.keys() functionality).
|
|
227
|
+
|
|
228
|
+
:rtype: typing.List[str]
|
|
229
|
+
:return: the identifiers for each member of this collection.
|
|
230
|
+
"""
|
|
231
|
+
...
|
|
232
|
+
|
|
233
|
+
def values(self) -> typing.List:
|
|
234
|
+
"""Return the values of collection
|
|
235
|
+
(matching Python's dict.values() functionality).
|
|
236
|
+
|
|
237
|
+
:rtype: typing.List
|
|
238
|
+
:return: the members of this collection.
|
|
239
|
+
"""
|
|
240
|
+
...
|
|
241
|
+
|
|
242
|
+
def __getitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
243
|
+
"""
|
|
244
|
+
|
|
245
|
+
:param key:
|
|
246
|
+
:type key: typing.Union[int, str]
|
|
247
|
+
:rtype: GenericType
|
|
248
|
+
"""
|
|
249
|
+
...
|
|
250
|
+
|
|
251
|
+
def __setitem__(self, key: typing.Union[int, str], value: GenericType):
|
|
252
|
+
"""
|
|
253
|
+
|
|
254
|
+
:param key:
|
|
255
|
+
:type key: typing.Union[int, str]
|
|
256
|
+
:param value:
|
|
257
|
+
:type value: GenericType
|
|
258
|
+
"""
|
|
259
|
+
...
|
|
260
|
+
|
|
261
|
+
def __delitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
262
|
+
"""
|
|
263
|
+
|
|
264
|
+
:param key:
|
|
265
|
+
:type key: typing.Union[int, str]
|
|
266
|
+
:rtype: GenericType
|
|
267
|
+
"""
|
|
268
|
+
...
|
|
269
|
+
|
|
270
|
+
def __iter__(self) -> typing.Iterator[GenericType]:
|
|
271
|
+
"""
|
|
272
|
+
|
|
273
|
+
:rtype: typing.Iterator[GenericType]
|
|
274
|
+
"""
|
|
275
|
+
...
|
|
276
|
+
|
|
277
|
+
def __next__(self) -> GenericType:
|
|
278
|
+
"""
|
|
279
|
+
|
|
280
|
+
:rtype: GenericType
|
|
281
|
+
"""
|
|
282
|
+
...
|
|
283
|
+
|
|
284
|
+
def __len__(self) -> int:
|
|
285
|
+
"""
|
|
286
|
+
|
|
287
|
+
:rtype: int
|
|
288
|
+
"""
|
|
289
|
+
...
|
|
290
|
+
|
|
165
291
|
class bpy_struct(typing.Generic[GenericType]):
|
|
166
292
|
"""built-in base class for all classes in bpy.types."""
|
|
167
293
|
|
|
@@ -347,7 +473,7 @@ class bpy_struct(typing.Generic[GenericType]):
|
|
|
347
473
|
|
|
348
474
|
INSERTKEY_VISUAL Insert keyframes based on 'visual transforms'.
|
|
349
475
|
|
|
350
|
-
INSERTKEY_XYZ_TO_RGB
|
|
476
|
+
INSERTKEY_XYZ_TO_RGB This flag is no longer in use, and is here so that code that uses it doesn't break. The XYZ=RGB coloring is determined by the animation preferences.
|
|
351
477
|
|
|
352
478
|
INSERTKEY_REPLACE Only replace already existing keyframes.
|
|
353
479
|
|
|
@@ -474,132 +600,6 @@ class bpy_struct(typing.Generic[GenericType]):
|
|
|
474
600
|
"""
|
|
475
601
|
...
|
|
476
602
|
|
|
477
|
-
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
478
|
-
"""built-in class used for all collections."""
|
|
479
|
-
|
|
480
|
-
def find(self, key: typing.Optional[str]) -> int:
|
|
481
|
-
"""Returns the index of a key in a collection or -1 when not found
|
|
482
|
-
(matches Python's string find function of the same name).
|
|
483
|
-
|
|
484
|
-
:param key: The identifier for the collection member.
|
|
485
|
-
:type key: typing.Optional[str]
|
|
486
|
-
:rtype: int
|
|
487
|
-
:return: index of the key.
|
|
488
|
-
"""
|
|
489
|
-
...
|
|
490
|
-
|
|
491
|
-
def foreach_get(self, attr, seq):
|
|
492
|
-
"""This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
|
|
493
|
-
Multi-dimensional arrays (like array of vectors) will be flattened into seq.
|
|
494
|
-
|
|
495
|
-
:param attr:
|
|
496
|
-
:type attr:
|
|
497
|
-
:param seq:
|
|
498
|
-
:type seq:
|
|
499
|
-
"""
|
|
500
|
-
...
|
|
501
|
-
|
|
502
|
-
def foreach_set(self, attr, seq):
|
|
503
|
-
"""This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
|
|
504
|
-
seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
|
|
505
|
-
|
|
506
|
-
:param attr:
|
|
507
|
-
:type attr:
|
|
508
|
-
:param seq:
|
|
509
|
-
:type seq:
|
|
510
|
-
"""
|
|
511
|
-
...
|
|
512
|
-
|
|
513
|
-
def get(
|
|
514
|
-
self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
|
|
515
|
-
):
|
|
516
|
-
"""Returns the value of the item assigned to key or default when not found
|
|
517
|
-
(matches Python's dictionary function of the same name).
|
|
518
|
-
|
|
519
|
-
:param key: The identifier for the collection member.
|
|
520
|
-
:type key: typing.Optional[str]
|
|
521
|
-
:param default: Optional argument for the value to return if
|
|
522
|
-
key is not found.
|
|
523
|
-
:type default: typing.Optional[typing.Any]
|
|
524
|
-
"""
|
|
525
|
-
...
|
|
526
|
-
|
|
527
|
-
def items(self) -> typing.List:
|
|
528
|
-
"""Return the identifiers of collection members
|
|
529
|
-
(matching Python's dict.items() functionality).
|
|
530
|
-
|
|
531
|
-
:rtype: typing.List
|
|
532
|
-
:return: (key, value) pairs for each member of this collection.
|
|
533
|
-
"""
|
|
534
|
-
...
|
|
535
|
-
|
|
536
|
-
def keys(self) -> typing.List[str]:
|
|
537
|
-
"""Return the identifiers of collection members
|
|
538
|
-
(matching Python's dict.keys() functionality).
|
|
539
|
-
|
|
540
|
-
:rtype: typing.List[str]
|
|
541
|
-
:return: the identifiers for each member of this collection.
|
|
542
|
-
"""
|
|
543
|
-
...
|
|
544
|
-
|
|
545
|
-
def values(self) -> typing.List:
|
|
546
|
-
"""Return the values of collection
|
|
547
|
-
(matching Python's dict.values() functionality).
|
|
548
|
-
|
|
549
|
-
:rtype: typing.List
|
|
550
|
-
:return: the members of this collection.
|
|
551
|
-
"""
|
|
552
|
-
...
|
|
553
|
-
|
|
554
|
-
def __getitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
555
|
-
"""
|
|
556
|
-
|
|
557
|
-
:param key:
|
|
558
|
-
:type key: typing.Union[int, str]
|
|
559
|
-
:rtype: GenericType
|
|
560
|
-
"""
|
|
561
|
-
...
|
|
562
|
-
|
|
563
|
-
def __setitem__(self, key: typing.Union[int, str], value: GenericType):
|
|
564
|
-
"""
|
|
565
|
-
|
|
566
|
-
:param key:
|
|
567
|
-
:type key: typing.Union[int, str]
|
|
568
|
-
:param value:
|
|
569
|
-
:type value: GenericType
|
|
570
|
-
"""
|
|
571
|
-
...
|
|
572
|
-
|
|
573
|
-
def __delitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
574
|
-
"""
|
|
575
|
-
|
|
576
|
-
:param key:
|
|
577
|
-
:type key: typing.Union[int, str]
|
|
578
|
-
:rtype: GenericType
|
|
579
|
-
"""
|
|
580
|
-
...
|
|
581
|
-
|
|
582
|
-
def __iter__(self) -> typing.Iterator[GenericType]:
|
|
583
|
-
"""
|
|
584
|
-
|
|
585
|
-
:rtype: typing.Iterator[GenericType]
|
|
586
|
-
"""
|
|
587
|
-
...
|
|
588
|
-
|
|
589
|
-
def __next__(self) -> GenericType:
|
|
590
|
-
"""
|
|
591
|
-
|
|
592
|
-
:rtype: GenericType
|
|
593
|
-
"""
|
|
594
|
-
...
|
|
595
|
-
|
|
596
|
-
def __len__(self) -> int:
|
|
597
|
-
"""
|
|
598
|
-
|
|
599
|
-
:rtype: int
|
|
600
|
-
"""
|
|
601
|
-
...
|
|
602
|
-
|
|
603
603
|
class Depsgraph:
|
|
604
604
|
ids: bpy_prop_collection["ID"]
|
|
605
605
|
""" All evaluated data-blocks
|
|
@@ -26291,10 +26291,10 @@ class KeyConfigurations(bpy_struct):
|
|
|
26291
26291
|
context: typing.Optional[typing.Any] = "INVOKE_DEFAULT",
|
|
26292
26292
|
properties: typing.Optional["OperatorProperties"] = None,
|
|
26293
26293
|
include: typing.Optional[typing.Any] = {
|
|
26294
|
-
'"MOUSE"',
|
|
26295
|
-
'"ACTIONZONE"',
|
|
26296
26294
|
'"NDOF"',
|
|
26295
|
+
'"ACTIONZONE"',
|
|
26297
26296
|
'"KEYBOARD"',
|
|
26297
|
+
'"MOUSE"',
|
|
26298
26298
|
},
|
|
26299
26299
|
exclude: typing.Optional[typing.Any] = {},
|
|
26300
26300
|
):
|
|
@@ -26787,10 +26787,10 @@ class KeyMapItems(bpy_struct):
|
|
|
26787
26787
|
idname: typing.Union[str, typing.Any],
|
|
26788
26788
|
properties: typing.Optional["OperatorProperties"] = None,
|
|
26789
26789
|
include: typing.Optional[typing.Any] = {
|
|
26790
|
-
'"MOUSE"',
|
|
26791
|
-
'"ACTIONZONE"',
|
|
26792
26790
|
'"NDOF"',
|
|
26791
|
+
'"ACTIONZONE"',
|
|
26793
26792
|
'"KEYBOARD"',
|
|
26793
|
+
'"MOUSE"',
|
|
26794
26794
|
},
|
|
26795
26795
|
exclude: typing.Optional[typing.Any] = {},
|
|
26796
26796
|
) -> "KeyMapItem":
|
|
@@ -43406,6 +43406,12 @@ class SceneEEVEE(bpy_struct):
|
|
|
43406
43406
|
:type: float
|
|
43407
43407
|
"""
|
|
43408
43408
|
|
|
43409
|
+
horizon_resolution: typing.Union[int, str]
|
|
43410
|
+
""" Control the quality of the horizon scan lighting (lower size increase vram usage and quality)
|
|
43411
|
+
|
|
43412
|
+
:type: typing.Union[int, str]
|
|
43413
|
+
"""
|
|
43414
|
+
|
|
43409
43415
|
horizon_thickness: float
|
|
43410
43416
|
""" Constant thickness of the surfaces considered when doing horizon scan and by extension ambient occlusion
|
|
43411
43417
|
|
|
@@ -199,7 +199,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=JK1oXEg64Z5HoUxsWkFB0UbPHk-TYw6JqdPKW6m0ysc,2
|
|
|
199
199
|
bpy/ops/ed/__init__.pyi,sha256=Bu154w3wNOVIT3fRD6FfMzNU2BBBeOBODL8dUvXYmLQ,11885
|
|
200
200
|
bpy/ops/export_anim/__init__.pyi,sha256=s_r8HrQaKIrO3KQNl_q8-JAz4YZgouDrpYmIkPbUNrE,2569
|
|
201
201
|
bpy/ops/export_mesh/__init__.pyi,sha256=JJT35uzm6qwEVoUbMvU73oR4l_J2t-62yJnJlVEVl4o,3062
|
|
202
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
202
|
+
bpy/ops/export_scene/__init__.pyi,sha256=WW7Tc43EghC67Gi8n0VNVFzbvZ4QTByaj0AVlNec-CQ,47968
|
|
203
203
|
bpy/ops/file/__init__.pyi,sha256=ulAQDVx9dJ8kVZt7fGgbNMbAqp3m5m0J-LDA9rikm6w,32487
|
|
204
204
|
bpy/ops/fluid/__init__.pyi,sha256=09VqJ77uFDpBysvCCwpSe9ccUjt1LiRXW8lMKzJe6l4,7375
|
|
205
205
|
bpy/ops/font/__init__.pyi,sha256=yXGodwhuzsK0DNjOLi7yYuedpIX7zNVC80RQn-h5cLs,23757
|
|
@@ -219,12 +219,12 @@ bpy/ops/marker/__init__.pyi,sha256=7aYf5TxbpXLMNccnoIAByv2QtzOGH9xNjjtq90pi2_s,9
|
|
|
219
219
|
bpy/ops/mask/__init__.pyi,sha256=7dlMRSKQUAIEdKrpHhWpuuDAztqUmNDVQThZcWViMtk,28311
|
|
220
220
|
bpy/ops/material/__init__.pyi,sha256=2iXVbIoIub2IIEu_9Gt8_dfbd8wbb1ZsqA9o4BEuno8,1541
|
|
221
221
|
bpy/ops/mball/__init__.pyi,sha256=c3De2eArRnxlIaHT5eRd3gaUuH3wovr2egvXOZ0ZV-E,6520
|
|
222
|
-
bpy/ops/mesh/__init__.pyi,sha256=
|
|
223
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
222
|
+
bpy/ops/mesh/__init__.pyi,sha256=Xg1PzsSEKjWwgwyX3hpHThRNK7Thrvh4bd5y1JTmf5M,187352
|
|
223
|
+
bpy/ops/nla/__init__.pyi,sha256=aWeT-P3jYFX5AlR4bhglHAFR5wsSpWWus3BE8q-xkf0,30840
|
|
224
224
|
bpy/ops/node/__init__.pyi,sha256=HGEDSU_YvtfqrUn7Dm-J2_Cp7eP0JSCITc3Wwwu_ZMY,78871
|
|
225
225
|
bpy/ops/object/__init__.pyi,sha256=KYnh07AnQ-jOa5q7Pi0b3tyeMutyhacCDlZ2vI6ug7c,246152
|
|
226
226
|
bpy/ops/outliner/__init__.pyi,sha256=eejglls9cRj6tlaCedIHnCJVOQnJjigFCxJS1WoYkUI,46670
|
|
227
|
-
bpy/ops/paint/__init__.pyi,sha256=
|
|
227
|
+
bpy/ops/paint/__init__.pyi,sha256=BuWaKr_F7nPSlwKMtJlrmPrinVmwFKF-yvvmwAftyTg,48182
|
|
228
228
|
bpy/ops/paintcurve/__init__.pyi,sha256=C3mdEe5gGTn9aT0IX2E7Olxif-TSBziECRrwFd7beJM,5510
|
|
229
229
|
bpy/ops/palette/__init__.pyi,sha256=xj7SawJTGE0F7mmyXRq6RqHLWP9I_v0ysMjPS_k-waM,4055
|
|
230
230
|
bpy/ops/particle/__init__.pyi,sha256=JOZwOnnKqJ65J1-dBdx1W8zndFdhArYHD_FX_1qMFyo,24078
|
|
@@ -237,7 +237,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=nzZNVoag8k21BuUn0gdW9aR2nXKKD_J7qZMhFUCBgm
|
|
|
237
237
|
bpy/ops/scene/__init__.pyi,sha256=TtTUP8kEHMs7JYqpU14jsZ0aiLYH2LA7F-x1UbPbkUw,25609
|
|
238
238
|
bpy/ops/screen/__init__.pyi,sha256=GlEjbT5_05EW2mR34HM9BJMyl_punGT2b2E0hbqk4fo,34155
|
|
239
239
|
bpy/ops/script/__init__.pyi,sha256=oWsjwLhotBc4ZVAtYLf9OV3duvkvsp3m2uEICHZ_sVM,1970
|
|
240
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
240
|
+
bpy/ops/sculpt/__init__.pyi,sha256=EuDRsB6SvbwCk_L4QMa1AdN8xAXM9eoQZGHg5EYm-cU,43116
|
|
241
241
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=XfDaclN9t_WK8qm-2Mp6vwk8ISV85cdV-YfZLQI1q04,3947
|
|
242
242
|
bpy/ops/sequencer/__init__.pyi,sha256=T4PiOxPr9u_lY8u1gihQe75Bv1R9kFPZPGMNHjx89R8,106330
|
|
243
243
|
bpy/ops/sound/__init__.pyi,sha256=ZLlmsAaYwo5lK7-2Fbgqk0FjI1hGj3Q4freA1jzTIEg,22650
|
|
@@ -257,7 +257,7 @@ bpy/ops/workspace/__init__.pyi,sha256=56wV5tByTDtpoCnuUehXNFBWhAxPmrFdg9T4HfZlxh
|
|
|
257
257
|
bpy/ops/world/__init__.pyi,sha256=n1XRkfqhLYz0BEoSDjAfJU7VLKv8sEpfwUHFRxaLIl0,562
|
|
258
258
|
bpy/path/__init__.pyi,sha256=gJN-fM4VZ721LjlYA4Lm7Us7xsagpVlQEYqjpIxizXE,6869
|
|
259
259
|
bpy/props/__init__.pyi,sha256=vG0dYQzpuh5QnOwqNwz8W-2yKdclHbNkC2jtXkgx4rQ,29405
|
|
260
|
-
bpy/types/__init__.pyi,sha256=
|
|
260
|
+
bpy/types/__init__.pyi,sha256=Z-Dp5qJcBKEkp9ddXRPiGUqHrkc0GfW58ihs92z7apU,3471669
|
|
261
261
|
bpy/utils/__init__.pyi,sha256=KFA7tUV9s_xP-t6xTiCtejFvcdTKET1LsOW4twJHREk,12934
|
|
262
262
|
bpy/utils/previews/__init__.pyi,sha256=i5FXncn7xLba6BVLdB0hWLRaYp7cVvTfEiAhrXuv-lU,3581
|
|
263
263
|
bpy/utils/units/__init__.pyi,sha256=AzFFYMVq6akTZ3AHGW4GzA_n6jfeKV7O9qvqvBasBgY,2684
|
|
@@ -337,7 +337,7 @@ rna_xml/__init__.pyi,sha256=oMdXh2K4vb_KNNhyhehXJPH20RJkrUExWFoGX6_8IoI,471
|
|
|
337
337
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
338
|
sys_info/__init__.pyi,sha256=8dAUaATaRsjhkMMCN8lWAlnEo_Z0qzeYMjashL-525k,93
|
|
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-20240320.dist-info/METADATA,sha256=cPgNf2Ga0QKlEEt26zgGmXuopHxzHKwRvM0az4wbEVg,7008
|
|
341
|
+
fake_bpy_module-20240320.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
342
|
+
fake_bpy_module-20240320.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
343
|
+
fake_bpy_module-20240320.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|