fake-bpy-module 20240529__py3-none-any.whl → 20240531__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/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +2 -2
- bl_ui/space_graph/__init__.pyi +2 -2
- bl_ui/space_nla/__init__.pyi +2 -2
- bl_ui/space_sequencer/__init__.pyi +2 -2
- bmesh/types/__init__.pyi +128 -161
- bpy/ops/__init__.pyi +1 -1
- bpy/ops/anim/__init__.pyi +14 -0
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/{bl_pkg → extensions}/__init__.pyi +127 -113
- bpy/ops/node/__init__.pyi +0 -14
- bpy/ops/wm/__init__.pyi +6 -0
- bpy/types/__init__.pyi +201 -171
- {fake_bpy_module-20240529.dist-info → fake_bpy_module-20240531.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240529.dist-info → fake_bpy_module-20240531.dist-info}/RECORD +17 -17
- {fake_bpy_module-20240529.dist-info → fake_bpy_module-20240531.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240529.dist-info → fake_bpy_module-20240531.dist-info}/top_level.txt +0 -0
|
@@ -724,7 +724,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy_types.Operator):
|
|
|
724
724
|
|
|
725
725
|
def draw_ui_list(
|
|
726
726
|
layout: bpy.types.UILayout,
|
|
727
|
-
context:
|
|
727
|
+
context: bpy.types.Context,
|
|
728
728
|
class_name: str = "UI_UL_list",
|
|
729
729
|
unique_id: str = None,
|
|
730
730
|
list_path: str = None,
|
|
@@ -739,7 +739,7 @@ def draw_ui_list(
|
|
|
739
739
|
:param layout: UILayout to draw the list in.
|
|
740
740
|
:type layout: bpy.types.UILayout
|
|
741
741
|
:param context: Blender context to get the list data from.
|
|
742
|
-
:type context:
|
|
742
|
+
:type context: bpy.types.Context
|
|
743
743
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
744
744
|
:type class_name: str
|
|
745
745
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
|
@@ -3782,10 +3782,10 @@ class DOPESHEET_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
3782
3782
|
"""
|
|
3783
3783
|
...
|
|
3784
3784
|
|
|
3785
|
-
def draw(self,
|
|
3785
|
+
def draw(self, context):
|
|
3786
3786
|
"""
|
|
3787
3787
|
|
|
3788
|
-
:param
|
|
3788
|
+
:param context:
|
|
3789
3789
|
"""
|
|
3790
3790
|
...
|
|
3791
3791
|
|
bl_ui/space_graph/__init__.pyi
CHANGED
bl_ui/space_nla/__init__.pyi
CHANGED
|
@@ -9163,10 +9163,10 @@ class SEQUENCER_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
9163
9163
|
"""
|
|
9164
9164
|
...
|
|
9165
9165
|
|
|
9166
|
-
def draw(self,
|
|
9166
|
+
def draw(self, context):
|
|
9167
9167
|
"""
|
|
9168
9168
|
|
|
9169
|
-
:param
|
|
9169
|
+
:param context:
|
|
9170
9170
|
"""
|
|
9171
9171
|
...
|
|
9172
9172
|
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -203,10 +203,11 @@ class BMEdge:
|
|
|
203
203
|
"""
|
|
204
204
|
...
|
|
205
205
|
|
|
206
|
-
def copy_from(self, other):
|
|
206
|
+
def copy_from(self, other: BMEdge):
|
|
207
207
|
"""Copy values from another element of matching type.
|
|
208
208
|
|
|
209
209
|
:param other:
|
|
210
|
+
:type other: BMEdge
|
|
210
211
|
"""
|
|
211
212
|
...
|
|
212
213
|
|
|
@@ -242,6 +243,34 @@ class BMEdge:
|
|
|
242
243
|
"""
|
|
243
244
|
...
|
|
244
245
|
|
|
246
|
+
def __getitem__(self, key: BMLayerItem) -> typing.Any:
|
|
247
|
+
"""
|
|
248
|
+
|
|
249
|
+
:param key:
|
|
250
|
+
:type key: BMLayerItem
|
|
251
|
+
:return:
|
|
252
|
+
:rtype: typing.Any
|
|
253
|
+
"""
|
|
254
|
+
...
|
|
255
|
+
|
|
256
|
+
def __setitem__(self, key: BMLayerItem, value: typing.Any):
|
|
257
|
+
"""
|
|
258
|
+
|
|
259
|
+
:param key:
|
|
260
|
+
:type key: BMLayerItem
|
|
261
|
+
:param value:
|
|
262
|
+
:type value: typing.Any
|
|
263
|
+
"""
|
|
264
|
+
...
|
|
265
|
+
|
|
266
|
+
def __delitem__(self, key: BMLayerItem):
|
|
267
|
+
"""
|
|
268
|
+
|
|
269
|
+
:param key:
|
|
270
|
+
:type key: BMLayerItem
|
|
271
|
+
"""
|
|
272
|
+
...
|
|
273
|
+
|
|
245
274
|
class BMEdgeSeq:
|
|
246
275
|
layers: BMLayerAccessEdge
|
|
247
276
|
""" custom-data layers (read-only).
|
|
@@ -307,39 +336,11 @@ class BMEdgeSeq:
|
|
|
307
336
|
"""
|
|
308
337
|
...
|
|
309
338
|
|
|
310
|
-
def
|
|
311
|
-
"""
|
|
312
|
-
|
|
313
|
-
:param key:
|
|
314
|
-
:type key: int
|
|
315
|
-
:param value:
|
|
316
|
-
:type value: BMEdge
|
|
317
|
-
"""
|
|
318
|
-
...
|
|
319
|
-
|
|
320
|
-
def __delitem__(self, key: int) -> BMEdge:
|
|
321
|
-
"""
|
|
322
|
-
|
|
323
|
-
:param key:
|
|
324
|
-
:type key: int
|
|
325
|
-
:return:
|
|
326
|
-
:rtype: BMEdge
|
|
327
|
-
"""
|
|
328
|
-
...
|
|
329
|
-
|
|
330
|
-
def __iter__(self) -> typing.Iterator[GenericType1]:
|
|
339
|
+
def __iter__(self) -> BMIter[BMEdge]:
|
|
331
340
|
"""
|
|
332
341
|
|
|
333
342
|
:return:
|
|
334
|
-
:rtype:
|
|
335
|
-
"""
|
|
336
|
-
...
|
|
337
|
-
|
|
338
|
-
def __next__(self) -> GenericType1:
|
|
339
|
-
"""
|
|
340
|
-
|
|
341
|
-
:return:
|
|
342
|
-
:rtype: GenericType1
|
|
343
|
+
:rtype: BMIter[BMEdge]
|
|
343
344
|
"""
|
|
344
345
|
...
|
|
345
346
|
|
|
@@ -389,7 +390,7 @@ class BMEditSelSeq:
|
|
|
389
390
|
"""Ensures all elements in the selection history are selected."""
|
|
390
391
|
...
|
|
391
392
|
|
|
392
|
-
class BMElemSeq:
|
|
393
|
+
class BMElemSeq(typing.Generic[GenericType1]):
|
|
393
394
|
"""General sequence type used for accessing any sequence of
|
|
394
395
|
`BMVert`, `BMEdge`, `BMFace`, `BMLoop`.When accessed via `BMesh.verts`, `BMesh.edges`, `BMesh.faces`
|
|
395
396
|
there are also functions to create/remove items.
|
|
@@ -409,39 +410,11 @@ class BMElemSeq:
|
|
|
409
410
|
"""
|
|
410
411
|
...
|
|
411
412
|
|
|
412
|
-
def
|
|
413
|
+
def __iter__(self) -> BMIter[GenericType1]:
|
|
413
414
|
"""
|
|
414
415
|
|
|
415
|
-
:param key:
|
|
416
|
-
:type key: int
|
|
417
|
-
:param value:
|
|
418
|
-
:type value: GenericType1
|
|
419
|
-
"""
|
|
420
|
-
...
|
|
421
|
-
|
|
422
|
-
def __delitem__(self, key: int) -> GenericType1:
|
|
423
|
-
"""
|
|
424
|
-
|
|
425
|
-
:param key:
|
|
426
|
-
:type key: int
|
|
427
416
|
:return:
|
|
428
|
-
:rtype: GenericType1
|
|
429
|
-
"""
|
|
430
|
-
...
|
|
431
|
-
|
|
432
|
-
def __iter__(self) -> typing.Iterator[GenericType1]:
|
|
433
|
-
"""
|
|
434
|
-
|
|
435
|
-
:return:
|
|
436
|
-
:rtype: typing.Iterator[GenericType1]
|
|
437
|
-
"""
|
|
438
|
-
...
|
|
439
|
-
|
|
440
|
-
def __next__(self) -> GenericType1:
|
|
441
|
-
"""
|
|
442
|
-
|
|
443
|
-
:return:
|
|
444
|
-
:rtype: GenericType1
|
|
417
|
+
:rtype: BMIter[GenericType1]
|
|
445
418
|
"""
|
|
446
419
|
...
|
|
447
420
|
|
|
@@ -606,10 +579,11 @@ class BMFace:
|
|
|
606
579
|
"""
|
|
607
580
|
...
|
|
608
581
|
|
|
609
|
-
def copy_from(self, other):
|
|
582
|
+
def copy_from(self, other: BMFace):
|
|
610
583
|
"""Copy values from another element of matching type.
|
|
611
584
|
|
|
612
585
|
:param other:
|
|
586
|
+
:type other: BMFace
|
|
613
587
|
"""
|
|
614
588
|
...
|
|
615
589
|
|
|
@@ -652,6 +626,34 @@ class BMFace:
|
|
|
652
626
|
"""
|
|
653
627
|
...
|
|
654
628
|
|
|
629
|
+
def __getitem__(self, key: BMLayerItem) -> typing.Any:
|
|
630
|
+
"""
|
|
631
|
+
|
|
632
|
+
:param key:
|
|
633
|
+
:type key: BMLayerItem
|
|
634
|
+
:return:
|
|
635
|
+
:rtype: typing.Any
|
|
636
|
+
"""
|
|
637
|
+
...
|
|
638
|
+
|
|
639
|
+
def __setitem__(self, key: BMLayerItem, value: typing.Any):
|
|
640
|
+
"""
|
|
641
|
+
|
|
642
|
+
:param key:
|
|
643
|
+
:type key: BMLayerItem
|
|
644
|
+
:param value:
|
|
645
|
+
:type value: typing.Any
|
|
646
|
+
"""
|
|
647
|
+
...
|
|
648
|
+
|
|
649
|
+
def __delitem__(self, key: BMLayerItem):
|
|
650
|
+
"""
|
|
651
|
+
|
|
652
|
+
:param key:
|
|
653
|
+
:type key: BMLayerItem
|
|
654
|
+
"""
|
|
655
|
+
...
|
|
656
|
+
|
|
655
657
|
class BMFaceSeq:
|
|
656
658
|
active: BMFace
|
|
657
659
|
""" active face.
|
|
@@ -726,31 +728,32 @@ class BMFaceSeq:
|
|
|
726
728
|
"""
|
|
727
729
|
...
|
|
728
730
|
|
|
729
|
-
def
|
|
731
|
+
def __iter__(self) -> BMIter[BMFace]:
|
|
730
732
|
"""
|
|
731
733
|
|
|
732
|
-
:
|
|
733
|
-
:
|
|
734
|
-
:param value:
|
|
735
|
-
:type value: BMFace
|
|
734
|
+
:return:
|
|
735
|
+
:rtype: BMIter[BMFace]
|
|
736
736
|
"""
|
|
737
737
|
...
|
|
738
738
|
|
|
739
|
-
def
|
|
739
|
+
def __len__(self) -> int:
|
|
740
740
|
"""
|
|
741
741
|
|
|
742
|
-
:param key:
|
|
743
|
-
:type key: int
|
|
744
742
|
:return:
|
|
745
|
-
:rtype:
|
|
743
|
+
:rtype: int
|
|
746
744
|
"""
|
|
747
745
|
...
|
|
748
746
|
|
|
749
|
-
|
|
747
|
+
class BMIter(typing.Generic[GenericType1]):
|
|
748
|
+
"""Internal BMesh type for looping over verts/faces/edges,
|
|
749
|
+
used for iterating over `BMElemSeq` types.
|
|
750
|
+
"""
|
|
751
|
+
|
|
752
|
+
def __iter__(self) -> BMIter[GenericType1]:
|
|
750
753
|
"""
|
|
751
754
|
|
|
752
755
|
:return:
|
|
753
|
-
:rtype:
|
|
756
|
+
:rtype: BMIter[GenericType1]
|
|
754
757
|
"""
|
|
755
758
|
...
|
|
756
759
|
|
|
@@ -762,21 +765,6 @@ class BMFaceSeq:
|
|
|
762
765
|
"""
|
|
763
766
|
...
|
|
764
767
|
|
|
765
|
-
def __len__(self) -> int:
|
|
766
|
-
"""
|
|
767
|
-
|
|
768
|
-
:return:
|
|
769
|
-
:rtype: int
|
|
770
|
-
"""
|
|
771
|
-
...
|
|
772
|
-
|
|
773
|
-
class BMIter:
|
|
774
|
-
"""Internal BMesh type for looping over verts/faces/edges,
|
|
775
|
-
used for iterating over `BMElemSeq` types.
|
|
776
|
-
"""
|
|
777
|
-
|
|
778
|
-
...
|
|
779
|
-
|
|
780
768
|
class BMLayerAccessEdge:
|
|
781
769
|
"""Exposes custom-data layer attributes."""
|
|
782
770
|
|
|
@@ -984,7 +972,7 @@ class BMLayerCollection:
|
|
|
984
972
|
:type: bool
|
|
985
973
|
"""
|
|
986
974
|
|
|
987
|
-
def get(self, key: str, default=None):
|
|
975
|
+
def get(self, key: str, default: GenericType2 = None) -> BMLayerItem | GenericType2:
|
|
988
976
|
"""Returns the value of the layer matching the key or default
|
|
989
977
|
when not found (matches Python's dictionary function of the same name).
|
|
990
978
|
|
|
@@ -992,6 +980,9 @@ class BMLayerCollection:
|
|
|
992
980
|
:type key: str
|
|
993
981
|
:param default: Optional argument for the value to return if
|
|
994
982
|
key is not found.
|
|
983
|
+
:type default: GenericType2
|
|
984
|
+
:return:
|
|
985
|
+
:rtype: BMLayerItem | GenericType2
|
|
995
986
|
"""
|
|
996
987
|
...
|
|
997
988
|
|
|
@@ -1166,10 +1157,11 @@ class BMLoop:
|
|
|
1166
1157
|
"""
|
|
1167
1158
|
...
|
|
1168
1159
|
|
|
1169
|
-
def copy_from(self, other):
|
|
1160
|
+
def copy_from(self, other: BMLoop):
|
|
1170
1161
|
"""Copy values from another element of matching type.
|
|
1171
1162
|
|
|
1172
1163
|
:param other:
|
|
1164
|
+
:type other: BMLoop
|
|
1173
1165
|
"""
|
|
1174
1166
|
...
|
|
1175
1167
|
|
|
@@ -1187,66 +1179,40 @@ class BMLoop:
|
|
|
1187
1179
|
"""
|
|
1188
1180
|
...
|
|
1189
1181
|
|
|
1190
|
-
|
|
1191
|
-
layers: BMLayerAccessLoop
|
|
1192
|
-
""" custom-data layers (read-only).
|
|
1193
|
-
|
|
1194
|
-
:type: BMLayerAccessLoop
|
|
1195
|
-
"""
|
|
1196
|
-
|
|
1197
|
-
def __getitem__(self, key: int) -> BMLoop:
|
|
1182
|
+
def __getitem__(self, key: BMLayerItem) -> typing.Any:
|
|
1198
1183
|
"""
|
|
1199
1184
|
|
|
1200
1185
|
:param key:
|
|
1201
|
-
:type key:
|
|
1186
|
+
:type key: BMLayerItem
|
|
1202
1187
|
:return:
|
|
1203
|
-
:rtype:
|
|
1188
|
+
:rtype: typing.Any
|
|
1204
1189
|
"""
|
|
1205
1190
|
...
|
|
1206
1191
|
|
|
1207
|
-
def __setitem__(self, key:
|
|
1192
|
+
def __setitem__(self, key: BMLayerItem, value: typing.Any):
|
|
1208
1193
|
"""
|
|
1209
1194
|
|
|
1210
1195
|
:param key:
|
|
1211
|
-
:type key:
|
|
1196
|
+
:type key: BMLayerItem
|
|
1212
1197
|
:param value:
|
|
1213
|
-
:type value:
|
|
1198
|
+
:type value: typing.Any
|
|
1214
1199
|
"""
|
|
1215
1200
|
...
|
|
1216
1201
|
|
|
1217
|
-
def __delitem__(self, key:
|
|
1202
|
+
def __delitem__(self, key: BMLayerItem):
|
|
1218
1203
|
"""
|
|
1219
1204
|
|
|
1220
1205
|
:param key:
|
|
1221
|
-
:type key:
|
|
1222
|
-
:return:
|
|
1223
|
-
:rtype: BMLoop
|
|
1224
|
-
"""
|
|
1225
|
-
...
|
|
1226
|
-
|
|
1227
|
-
def __iter__(self) -> typing.Iterator[GenericType1]:
|
|
1228
|
-
"""
|
|
1229
|
-
|
|
1230
|
-
:return:
|
|
1231
|
-
:rtype: typing.Iterator[GenericType1]
|
|
1232
|
-
"""
|
|
1233
|
-
...
|
|
1234
|
-
|
|
1235
|
-
def __next__(self) -> GenericType1:
|
|
1236
|
-
"""
|
|
1237
|
-
|
|
1238
|
-
:return:
|
|
1239
|
-
:rtype: GenericType1
|
|
1206
|
+
:type key: BMLayerItem
|
|
1240
1207
|
"""
|
|
1241
1208
|
...
|
|
1242
1209
|
|
|
1243
|
-
|
|
1244
|
-
|
|
1210
|
+
class BMLoopSeq:
|
|
1211
|
+
layers: BMLayerAccessLoop
|
|
1212
|
+
""" custom-data layers (read-only).
|
|
1245
1213
|
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
"""
|
|
1249
|
-
...
|
|
1214
|
+
:type: BMLayerAccessLoop
|
|
1215
|
+
"""
|
|
1250
1216
|
|
|
1251
1217
|
class BMLoopUV:
|
|
1252
1218
|
pin_uv: bool
|
|
@@ -1375,10 +1341,11 @@ class BMVert:
|
|
|
1375
1341
|
"""
|
|
1376
1342
|
...
|
|
1377
1343
|
|
|
1378
|
-
def copy_from(self, other):
|
|
1344
|
+
def copy_from(self, other: BMVert):
|
|
1379
1345
|
"""Copy values from another element of matching type.
|
|
1380
1346
|
|
|
1381
1347
|
:param other:
|
|
1348
|
+
:type other: BMVert
|
|
1382
1349
|
"""
|
|
1383
1350
|
...
|
|
1384
1351
|
|
|
@@ -1425,6 +1392,34 @@ class BMVert:
|
|
|
1425
1392
|
"""
|
|
1426
1393
|
...
|
|
1427
1394
|
|
|
1395
|
+
def __getitem__(self, key: BMLayerItem) -> typing.Any:
|
|
1396
|
+
"""
|
|
1397
|
+
|
|
1398
|
+
:param key:
|
|
1399
|
+
:type key: BMLayerItem
|
|
1400
|
+
:return:
|
|
1401
|
+
:rtype: typing.Any
|
|
1402
|
+
"""
|
|
1403
|
+
...
|
|
1404
|
+
|
|
1405
|
+
def __setitem__(self, key: BMLayerItem, value: typing.Any):
|
|
1406
|
+
"""
|
|
1407
|
+
|
|
1408
|
+
:param key:
|
|
1409
|
+
:type key: BMLayerItem
|
|
1410
|
+
:param value:
|
|
1411
|
+
:type value: typing.Any
|
|
1412
|
+
"""
|
|
1413
|
+
...
|
|
1414
|
+
|
|
1415
|
+
def __delitem__(self, key: BMLayerItem):
|
|
1416
|
+
"""
|
|
1417
|
+
|
|
1418
|
+
:param key:
|
|
1419
|
+
:type key: BMLayerItem
|
|
1420
|
+
"""
|
|
1421
|
+
...
|
|
1422
|
+
|
|
1428
1423
|
class BMVertSeq:
|
|
1429
1424
|
layers: BMLayerAccessVert
|
|
1430
1425
|
""" custom-data layers (read-only).
|
|
@@ -1484,39 +1479,11 @@ class BMVertSeq:
|
|
|
1484
1479
|
"""
|
|
1485
1480
|
...
|
|
1486
1481
|
|
|
1487
|
-
def
|
|
1488
|
-
"""
|
|
1489
|
-
|
|
1490
|
-
:param key:
|
|
1491
|
-
:type key: int
|
|
1492
|
-
:param value:
|
|
1493
|
-
:type value: BMVert
|
|
1494
|
-
"""
|
|
1495
|
-
...
|
|
1496
|
-
|
|
1497
|
-
def __delitem__(self, key: int) -> BMVert:
|
|
1498
|
-
"""
|
|
1499
|
-
|
|
1500
|
-
:param key:
|
|
1501
|
-
:type key: int
|
|
1502
|
-
:return:
|
|
1503
|
-
:rtype: BMVert
|
|
1504
|
-
"""
|
|
1505
|
-
...
|
|
1506
|
-
|
|
1507
|
-
def __iter__(self) -> typing.Iterator[GenericType1]:
|
|
1508
|
-
"""
|
|
1509
|
-
|
|
1510
|
-
:return:
|
|
1511
|
-
:rtype: typing.Iterator[GenericType1]
|
|
1512
|
-
"""
|
|
1513
|
-
...
|
|
1514
|
-
|
|
1515
|
-
def __next__(self) -> GenericType1:
|
|
1482
|
+
def __iter__(self) -> BMIter[BMVert]:
|
|
1516
1483
|
"""
|
|
1517
1484
|
|
|
1518
1485
|
:return:
|
|
1519
|
-
:rtype:
|
|
1486
|
+
:rtype: BMIter[BMVert]
|
|
1520
1487
|
"""
|
|
1521
1488
|
...
|
|
1522
1489
|
|
bpy/ops/__init__.pyi
CHANGED
|
@@ -155,7 +155,6 @@ from . import action
|
|
|
155
155
|
from . import anim
|
|
156
156
|
from . import armature
|
|
157
157
|
from . import asset
|
|
158
|
-
from . import bl_pkg
|
|
159
158
|
from . import boid
|
|
160
159
|
from . import brush
|
|
161
160
|
from . import buttons
|
|
@@ -173,6 +172,7 @@ from . import dpaint
|
|
|
173
172
|
from . import ed
|
|
174
173
|
from . import export_anim
|
|
175
174
|
from . import export_scene
|
|
175
|
+
from . import extensions
|
|
176
176
|
from . import file
|
|
177
177
|
from . import fluid
|
|
178
178
|
from . import font
|
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -935,6 +935,20 @@ def previewrange_set(
|
|
|
935
935
|
|
|
936
936
|
...
|
|
937
937
|
|
|
938
|
+
def scene_range_frame(
|
|
939
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
940
|
+
execution_context: str | int | None = None,
|
|
941
|
+
undo: bool | None = None,
|
|
942
|
+
):
|
|
943
|
+
"""Reset the horizontal view to the current scene frame range, taking the preview range into account if it is active
|
|
944
|
+
|
|
945
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
946
|
+
:type execution_context: str | int | None
|
|
947
|
+
:type undo: bool | None
|
|
948
|
+
"""
|
|
949
|
+
|
|
950
|
+
...
|
|
951
|
+
|
|
938
952
|
def start_frame_set(
|
|
939
953
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
940
954
|
execution_context: str | int | None = None,
|
|
@@ -321,7 +321,7 @@ def gltf(
|
|
|
321
321
|
export_optimize_animation_size: bool | typing.Any | None = True,
|
|
322
322
|
export_optimize_animation_keep_anim_armature: bool | typing.Any | None = True,
|
|
323
323
|
export_optimize_animation_keep_anim_object: bool | typing.Any | None = False,
|
|
324
|
-
|
|
324
|
+
export_optimize_disable_viewport: bool | typing.Any | None = False,
|
|
325
325
|
export_negative_frame: str | None = "SLIDE",
|
|
326
326
|
export_anim_slide_to_zero: bool | typing.Any | None = False,
|
|
327
327
|
export_bake_animation: bool | typing.Any | None = False,
|
|
@@ -577,8 +577,8 @@ def gltf(
|
|
|
577
577
|
:type export_optimize_animation_keep_anim_armature: bool | typing.Any | None
|
|
578
578
|
:param export_optimize_animation_keep_anim_object: Force keeping channel for objects, If all keyframes are identical for object transformations, force keeping the minimal animation
|
|
579
579
|
:type export_optimize_animation_keep_anim_object: bool | typing.Any | None
|
|
580
|
-
:param
|
|
581
|
-
:type
|
|
580
|
+
:param export_optimize_disable_viewport: Disable viewport for other objects, When exporting animations, disable viewport for other objects, for performance
|
|
581
|
+
:type export_optimize_disable_viewport: bool | typing.Any | None
|
|
582
582
|
:param export_negative_frame: Negative Frames, Negative Frames are slid or cropped
|
|
583
583
|
|
|
584
584
|
SLIDE
|