fake-bpy-module 20240317__py3-none-any.whl → 20240318__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 +3 -3
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/types/__init__.pyi +130 -130
- {fake_bpy_module-20240317.dist-info → fake_bpy_module-20240318.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240317.dist-info → fake_bpy_module-20240318.dist-info}/RECORD +7 -7
- {fake_bpy_module-20240317.dist-info → fake_bpy_module-20240318.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240317.dist-info → fake_bpy_module-20240318.dist-info}/top_level.txt +0 -0
|
@@ -22,12 +22,12 @@ def fbx(
|
|
|
22
22
|
use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
23
23
|
bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
24
24
|
object_types: typing.Optional[typing.Any] = {
|
|
25
|
-
'"MESH"',
|
|
26
25
|
'"LIGHT"',
|
|
27
26
|
'"ARMATURE"',
|
|
28
|
-
'"
|
|
29
|
-
'"OTHER"',
|
|
27
|
+
'"MESH"',
|
|
30
28
|
'"EMPTY"',
|
|
29
|
+
'"OTHER"',
|
|
30
|
+
'"CAMERA"',
|
|
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/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
|
-
'"ROTATION"',
|
|
122
|
-
'"PROPS"',
|
|
123
|
-
'"LOCATION"',
|
|
124
121
|
'"SCALE"',
|
|
125
122
|
'"BBONE"',
|
|
123
|
+
'"PROPS"',
|
|
124
|
+
'"ROTATION"',
|
|
125
|
+
'"LOCATION"',
|
|
126
126
|
},
|
|
127
127
|
):
|
|
128
128
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/types/__init__.pyi
CHANGED
|
@@ -162,132 +162,6 @@ 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
|
-
|
|
291
165
|
class bpy_struct(typing.Generic[GenericType]):
|
|
292
166
|
"""built-in base class for all classes in bpy.types."""
|
|
293
167
|
|
|
@@ -600,6 +474,132 @@ class bpy_struct(typing.Generic[GenericType]):
|
|
|
600
474
|
"""
|
|
601
475
|
...
|
|
602
476
|
|
|
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
|
-
'"KEYBOARD"',
|
|
26295
|
-
'"ACTIONZONE"',
|
|
26296
26294
|
'"MOUSE"',
|
|
26295
|
+
'"ACTIONZONE"',
|
|
26297
26296
|
'"NDOF"',
|
|
26297
|
+
'"KEYBOARD"',
|
|
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
|
-
'"KEYBOARD"',
|
|
26791
|
-
'"ACTIONZONE"',
|
|
26792
26790
|
'"MOUSE"',
|
|
26791
|
+
'"ACTIONZONE"',
|
|
26793
26792
|
'"NDOF"',
|
|
26793
|
+
'"KEYBOARD"',
|
|
26794
26794
|
},
|
|
26795
26795
|
exclude: typing.Optional[typing.Any] = {},
|
|
26796
26796
|
) -> "KeyMapItem":
|
|
@@ -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=yRZUnhDLbUGIk6oab6HM-xPPMtNjjINOHw3VngpETIE,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
|
|
@@ -220,7 +220,7 @@ bpy/ops/mask/__init__.pyi,sha256=7dlMRSKQUAIEdKrpHhWpuuDAztqUmNDVQThZcWViMtk,283
|
|
|
220
220
|
bpy/ops/material/__init__.pyi,sha256=2iXVbIoIub2IIEu_9Gt8_dfbd8wbb1ZsqA9o4BEuno8,1541
|
|
221
221
|
bpy/ops/mball/__init__.pyi,sha256=c3De2eArRnxlIaHT5eRd3gaUuH3wovr2egvXOZ0ZV-E,6520
|
|
222
222
|
bpy/ops/mesh/__init__.pyi,sha256=gQtfIXh7J-DiLG7gJ_rNgkUYCmt6o4eHdW4ATmdET3U,187201
|
|
223
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
223
|
+
bpy/ops/nla/__init__.pyi,sha256=pIMD1CcEs1fLC2ztCNGcvkOd3fgdklVN34eyY7Z33gU,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
|
|
@@ -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=49ELzHN8GeTYgC5_yqWIljW9bFeIdEPR5m9L5pydr78,3471433
|
|
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-20240318.dist-info/METADATA,sha256=Q9htQFEX7-mt2NmtVIGmI3F5q6M8VOWYHW_JMgDTiVU,7008
|
|
341
|
+
fake_bpy_module-20240318.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
342
|
+
fake_bpy_module-20240318.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
343
|
+
fake_bpy_module-20240318.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|