fake-bpy-module 20240523__py3-none-any.whl → 20240528__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.

Files changed (94) hide show
  1. bl_operators/__init__.pyi +1 -0
  2. bl_operators/image_as_planes/__init__.pyi +457 -0
  3. bl_operators/userpref/__init__.pyi +0 -214
  4. bl_ui/properties_data_modifier/__init__.pyi +284 -0
  5. bl_ui/properties_render/__init__.pyi +1 -1
  6. bl_ui/space_userpref/__init__.pyi +233 -0
  7. bpy/app/__init__.pyi +9 -1
  8. bpy/ops/action/__init__.pyi +21 -0
  9. bpy/ops/anim/__init__.pyi +34 -0
  10. bpy/ops/armature/__init__.pyi +31 -0
  11. bpy/ops/asset/__init__.pyi +5 -0
  12. bpy/ops/bl_pkg/__init__.pyi +28 -17
  13. bpy/ops/boid/__init__.pyi +1 -0
  14. bpy/ops/brush/__init__.pyi +6 -0
  15. bpy/ops/buttons/__init__.pyi +2 -0
  16. bpy/ops/cachefile/__init__.pyi +3 -0
  17. bpy/ops/camera/__init__.pyi +2 -0
  18. bpy/ops/clip/__init__.pyi +49 -0
  19. bpy/ops/cloth/__init__.pyi +1 -0
  20. bpy/ops/collection/__init__.pyi +7 -0
  21. bpy/ops/console/__init__.pyi +11 -0
  22. bpy/ops/constraint/__init__.pyi +15 -0
  23. bpy/ops/curve/__init__.pyi +28 -0
  24. bpy/ops/curves/__init__.pyi +14 -0
  25. bpy/ops/cycles/__init__.pyi +2 -0
  26. bpy/ops/dpaint/__init__.pyi +2 -0
  27. bpy/ops/ed/__init__.pyi +3 -0
  28. bpy/ops/export_anim/__init__.pyi +1 -0
  29. bpy/ops/export_scene/__init__.pyi +20 -3
  30. bpy/ops/file/__init__.pyi +14 -0
  31. bpy/ops/fluid/__init__.pyi +1 -0
  32. bpy/ops/font/__init__.pyi +13 -0
  33. bpy/ops/geometry/__init__.pyi +7 -0
  34. bpy/ops/gizmogroup/__init__.pyi +1 -0
  35. bpy/ops/gpencil/__init__.pyi +106 -0
  36. bpy/ops/graph/__init__.pyi +47 -0
  37. bpy/ops/grease_pencil/__init__.pyi +58 -0
  38. bpy/ops/image/__init__.pyi +308 -0
  39. bpy/ops/import_anim/__init__.pyi +1 -0
  40. bpy/ops/import_curve/__init__.pyi +1 -0
  41. bpy/ops/import_scene/__init__.pyi +2 -0
  42. bpy/ops/info/__init__.pyi +3 -0
  43. bpy/ops/lattice/__init__.pyi +5 -0
  44. bpy/ops/marker/__init__.pyi +9 -0
  45. bpy/ops/mask/__init__.pyi +22 -0
  46. bpy/ops/mball/__init__.pyi +7 -0
  47. bpy/ops/mesh/__init__.pyi +134 -0
  48. bpy/ops/nla/__init__.pyi +20 -0
  49. bpy/ops/node/__init__.pyi +47 -0
  50. bpy/ops/object/__init__.pyi +174 -0
  51. bpy/ops/outliner/__init__.pyi +53 -0
  52. bpy/ops/paint/__init__.pyi +39 -0
  53. bpy/ops/paintcurve/__init__.pyi +4 -0
  54. bpy/ops/palette/__init__.pyi +4 -0
  55. bpy/ops/particle/__init__.pyi +17 -0
  56. bpy/ops/pose/__init__.pyi +24 -0
  57. bpy/ops/poselib/__init__.pyi +4 -0
  58. bpy/ops/preferences/__init__.pyi +26 -14
  59. bpy/ops/ptcache/__init__.pyi +2 -0
  60. bpy/ops/render/__init__.pyi +9 -0
  61. bpy/ops/rigidbody/__init__.pyi +7 -0
  62. bpy/ops/scene/__init__.pyi +16 -0
  63. bpy/ops/screen/__init__.pyi +21 -0
  64. bpy/ops/script/__init__.pyi +2 -0
  65. bpy/ops/sculpt/__init__.pyi +26 -1
  66. bpy/ops/sculpt_curves/__init__.pyi +3 -0
  67. bpy/ops/sequencer/__init__.pyi +57 -0
  68. bpy/ops/sound/__init__.pyi +4 -0
  69. bpy/ops/spreadsheet/__init__.pyi +2 -0
  70. bpy/ops/surface/__init__.pyi +6 -0
  71. bpy/ops/text/__init__.pyi +18 -0
  72. bpy/ops/text_editor/__init__.pyi +1 -0
  73. bpy/ops/texture/__init__.pyi +1 -0
  74. bpy/ops/transform/__init__.pyi +25 -0
  75. bpy/ops/ui/__init__.pyi +13 -0
  76. bpy/ops/uilist/__init__.pyi +3 -0
  77. bpy/ops/uv/__init__.pyi +40 -0
  78. bpy/ops/view2d/__init__.pyi +11 -0
  79. bpy/ops/view3d/__init__.pyi +30 -0
  80. bpy/ops/wm/__init__.pyi +114 -0
  81. bpy/ops/workspace/__init__.pyi +1 -0
  82. bpy/path/__init__.pyi +6 -6
  83. bpy/props/__init__.pyi +11 -1
  84. bpy/types/__init__.pyi +594 -342
  85. bpy/utils/__init__.pyi +10 -8
  86. bpy_extras/anim_utils/__init__.pyi +3 -3
  87. bpy_extras/view3d_utils/__init__.pyi +2 -0
  88. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/METADATA +1 -1
  89. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/RECORD +94 -93
  90. gpu/types/__init__.pyi +4 -2
  91. gpu_extras/batch/__init__.pyi +1 -1
  92. gpu_extras/presets/__init__.pyi +1 -1
  93. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/WHEEL +0 -0
  94. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/top_level.txt +0 -0
@@ -10,6 +10,7 @@ def add(
10
10
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
11
11
  execution_context: str | int | None = None,
12
12
  undo: bool | None = None,
13
+ *,
13
14
  radius: typing.Any | None = 1.0,
14
15
  type: str | None = "EMPTY",
15
16
  enter_editmode: bool | typing.Any | None = False,
@@ -68,6 +69,7 @@ def add_named(
68
69
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
69
70
  execution_context: str | int | None = None,
70
71
  undo: bool | None = None,
72
+ *,
71
73
  linked: bool | typing.Any | None = False,
72
74
  name: str | typing.Any = "",
73
75
  session_uid: typing.Any | None = 0,
@@ -105,6 +107,7 @@ def align(
105
107
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
106
108
  execution_context: str | int | None = None,
107
109
  undo: bool | None = None,
110
+ *,
108
111
  bb_quality: bool | typing.Any | None = True,
109
112
  align_mode: str | None = "OPT_2",
110
113
  relative_to: str | None = "OPT_4",
@@ -157,6 +160,7 @@ def armature_add(
157
160
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
158
161
  execution_context: str | int | None = None,
159
162
  undo: bool | None = None,
163
+ *,
160
164
  radius: typing.Any | None = 1.0,
161
165
  enter_editmode: bool | typing.Any | None = False,
162
166
  align: str | None = "WORLD",
@@ -198,6 +202,7 @@ def assign_property_defaults(
198
202
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
199
203
  execution_context: str | int | None = None,
200
204
  undo: bool | None = None,
205
+ *,
201
206
  process_data: bool | typing.Any | None = True,
202
207
  process_bones: bool | typing.Any | None = True,
203
208
  ):
@@ -218,6 +223,7 @@ def bake(
218
223
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
219
224
  execution_context: str | int | None = None,
220
225
  undo: bool | None = None,
226
+ *,
221
227
  type: str | None = "COMBINED",
222
228
  pass_filter: typing.Any | None = {},
223
229
  filepath: str | typing.Any = "",
@@ -312,6 +318,7 @@ def camera_add(
312
318
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
313
319
  execution_context: str | int | None = None,
314
320
  undo: bool | None = None,
321
+ *,
315
322
  enter_editmode: bool | typing.Any | None = False,
316
323
  align: str | None = "WORLD",
317
324
  location: typing.Any | None = (0.0, 0.0, 0.0),
@@ -378,6 +385,7 @@ def collection_external_asset_drop(
378
385
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
379
386
  execution_context: str | int | None = None,
380
387
  undo: bool | None = None,
388
+ *,
381
389
  session_uid: typing.Any | None = 0,
382
390
  align: str | None = "WORLD",
383
391
  location: typing.Any | None = (0.0, 0.0, 0.0),
@@ -428,6 +436,7 @@ def collection_instance_add(
428
436
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
429
437
  execution_context: str | int | None = None,
430
438
  undo: bool | None = None,
439
+ *,
431
440
  name: str | typing.Any = "Collection",
432
441
  collection: str | None = "",
433
442
  align: str | None = "WORLD",
@@ -478,6 +487,7 @@ def collection_link(
478
487
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
479
488
  execution_context: str | int | None = None,
480
489
  undo: bool | None = None,
490
+ *,
481
491
  collection: str | None = "",
482
492
  ):
483
493
  """Add an object to an existing collection
@@ -537,6 +547,7 @@ def constraint_add(
537
547
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
538
548
  execution_context: str | int | None = None,
539
549
  undo: bool | None = None,
550
+ *,
540
551
  type: str | None = "",
541
552
  ):
542
553
  """Add a constraint to the active object
@@ -554,6 +565,7 @@ def constraint_add_with_targets(
554
565
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
555
566
  execution_context: str | int | None = None,
556
567
  undo: bool | None = None,
568
+ *,
557
569
  type: str | None = "",
558
570
  ):
559
571
  """Add a constraint to the active object, with target (where applicable) set to the selected objects/bones
@@ -599,6 +611,7 @@ def convert(
599
611
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
600
612
  execution_context: str | int | None = None,
601
613
  undo: bool | None = None,
614
+ *,
602
615
  target: str | None = "MESH",
603
616
  keep_original: bool | typing.Any | None = False,
604
617
  merge_customdata: bool | typing.Any | None = True,
@@ -655,6 +668,7 @@ def correctivesmooth_bind(
655
668
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
656
669
  execution_context: str | int | None = None,
657
670
  undo: bool | None = None,
671
+ *,
658
672
  modifier: str | typing.Any = "",
659
673
  ):
660
674
  """Bind base pose in Corrective Smooth modifier
@@ -672,6 +686,7 @@ def curves_empty_hair_add(
672
686
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
673
687
  execution_context: str | int | None = None,
674
688
  undo: bool | None = None,
689
+ *,
675
690
  align: str | None = "WORLD",
676
691
  location: typing.Any | None = (0.0, 0.0, 0.0),
677
692
  rotation: typing.Any | None = (0.0, 0.0, 0.0),
@@ -707,6 +722,7 @@ def curves_random_add(
707
722
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
708
723
  execution_context: str | int | None = None,
709
724
  undo: bool | None = None,
725
+ *,
710
726
  align: str | None = "WORLD",
711
727
  location: typing.Any | None = (0.0, 0.0, 0.0),
712
728
  rotation: typing.Any | None = (0.0, 0.0, 0.0),
@@ -742,6 +758,7 @@ def data_instance_add(
742
758
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
743
759
  execution_context: str | int | None = None,
744
760
  undo: bool | None = None,
761
+ *,
745
762
  name: str | typing.Any = "",
746
763
  session_uid: typing.Any | None = 0,
747
764
  type: str | None = "ACTION",
@@ -792,6 +809,7 @@ def data_transfer(
792
809
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
793
810
  execution_context: str | int | None = None,
794
811
  undo: bool | None = None,
812
+ *,
795
813
  use_reverse_transfer: bool | typing.Any | None = False,
796
814
  use_freeze: bool | typing.Any | None = False,
797
815
  data_type: str | None = "",
@@ -899,6 +917,7 @@ def datalayout_transfer(
899
917
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
900
918
  execution_context: str | int | None = None,
901
919
  undo: bool | None = None,
920
+ *,
902
921
  modifier: str | typing.Any = "",
903
922
  data_type: str | None = "",
904
923
  use_delete: bool | typing.Any | None = False,
@@ -967,6 +986,7 @@ def delete(
967
986
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
968
987
  execution_context: str | int | None = None,
969
988
  undo: bool | None = None,
989
+ *,
970
990
  use_global: bool | typing.Any | None = False,
971
991
  confirm: bool | typing.Any | None = True,
972
992
  ):
@@ -987,6 +1007,7 @@ def drop_geometry_nodes(
987
1007
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
988
1008
  execution_context: str | int | None = None,
989
1009
  undo: bool | None = None,
1010
+ *,
990
1011
  session_uid: typing.Any | None = 0,
991
1012
  show_datablock_in_modifier: bool | typing.Any | None = True,
992
1013
  ):
@@ -1007,6 +1028,7 @@ def drop_named_material(
1007
1028
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1008
1029
  execution_context: str | int | None = None,
1009
1030
  undo: bool | None = None,
1031
+ *,
1010
1032
  name: str | typing.Any = "",
1011
1033
  session_uid: typing.Any | None = 0,
1012
1034
  ):
@@ -1027,6 +1049,7 @@ def duplicate(
1027
1049
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1028
1050
  execution_context: str | int | None = None,
1029
1051
  undo: bool | None = None,
1052
+ *,
1030
1053
  linked: bool | typing.Any | None = False,
1031
1054
  mode: str | None = "TRANSLATION",
1032
1055
  ):
@@ -1047,6 +1070,7 @@ def duplicate_move(
1047
1070
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1048
1071
  execution_context: str | int | None = None,
1049
1072
  undo: bool | None = None,
1073
+ *,
1050
1074
  OBJECT_OT_duplicate: duplicate | None = None,
1051
1075
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
1052
1076
  ):
@@ -1067,6 +1091,7 @@ def duplicate_move_linked(
1067
1091
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1068
1092
  execution_context: str | int | None = None,
1069
1093
  undo: bool | None = None,
1094
+ *,
1070
1095
  OBJECT_OT_duplicate: duplicate | None = None,
1071
1096
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
1072
1097
  ):
@@ -1087,6 +1112,7 @@ def duplicates_make_real(
1087
1112
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1088
1113
  execution_context: str | int | None = None,
1089
1114
  undo: bool | None = None,
1115
+ *,
1090
1116
  use_base_parent: bool | typing.Any | None = False,
1091
1117
  use_hierarchy: bool | typing.Any | None = False,
1092
1118
  ):
@@ -1121,6 +1147,7 @@ def effector_add(
1121
1147
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1122
1148
  execution_context: str | int | None = None,
1123
1149
  undo: bool | None = None,
1150
+ *,
1124
1151
  type: str | None = "FORCE",
1125
1152
  radius: typing.Any | None = 1.0,
1126
1153
  enter_editmode: bool | typing.Any | None = False,
@@ -1165,6 +1192,7 @@ def empty_add(
1165
1192
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1166
1193
  execution_context: str | int | None = None,
1167
1194
  undo: bool | None = None,
1195
+ *,
1168
1196
  type: str | None = "PLAIN_AXES",
1169
1197
  radius: typing.Any | None = 1.0,
1170
1198
  align: str | None = "WORLD",
@@ -1206,6 +1234,7 @@ def empty_image_add(
1206
1234
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1207
1235
  execution_context: str | int | None = None,
1208
1236
  undo: bool | None = None,
1237
+ *,
1209
1238
  filepath: str | typing.Any = "",
1210
1239
  hide_props_region: bool | typing.Any | None = True,
1211
1240
  check_existing: bool | typing.Any | None = False,
@@ -1355,6 +1384,7 @@ def explode_refresh(
1355
1384
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1356
1385
  execution_context: str | int | None = None,
1357
1386
  undo: bool | None = None,
1387
+ *,
1358
1388
  modifier: str | typing.Any = "",
1359
1389
  ):
1360
1390
  """Refresh data in the Explode modifier
@@ -1386,6 +1416,7 @@ def geometry_node_bake_delete_single(
1386
1416
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1387
1417
  execution_context: str | int | None = None,
1388
1418
  undo: bool | None = None,
1419
+ *,
1389
1420
  session_uid: typing.Any | None = 0,
1390
1421
  modifier_name: str | typing.Any = "",
1391
1422
  bake_id: typing.Any | None = 0,
@@ -1409,6 +1440,7 @@ def geometry_node_bake_single(
1409
1440
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1410
1441
  execution_context: str | int | None = None,
1411
1442
  undo: bool | None = None,
1443
+ *,
1412
1444
  session_uid: typing.Any | None = 0,
1413
1445
  modifier_name: str | typing.Any = "",
1414
1446
  bake_id: typing.Any | None = 0,
@@ -1446,6 +1478,7 @@ def geometry_nodes_input_attribute_toggle(
1446
1478
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1447
1479
  execution_context: str | int | None = None,
1448
1480
  undo: bool | None = None,
1481
+ *,
1449
1482
  input_name: str | typing.Any = "",
1450
1483
  modifier_name: str | typing.Any = "",
1451
1484
  ):
@@ -1466,6 +1499,7 @@ def geometry_nodes_move_to_nodes(
1466
1499
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1467
1500
  execution_context: str | int | None = None,
1468
1501
  undo: bool | None = None,
1502
+ *,
1469
1503
  use_selected_objects: bool | typing.Any | None = False,
1470
1504
  ):
1471
1505
  """Move inputs and outputs from in the modifier to a new node group
@@ -1483,6 +1517,7 @@ def gpencil_add(
1483
1517
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1484
1518
  execution_context: str | int | None = None,
1485
1519
  undo: bool | None = None,
1520
+ *,
1486
1521
  radius: typing.Any | None = 1.0,
1487
1522
  align: str | None = "WORLD",
1488
1523
  location: typing.Any | None = (0.0, 0.0, 0.0),
@@ -1542,6 +1577,7 @@ def gpencil_modifier_add(
1542
1577
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1543
1578
  execution_context: str | int | None = None,
1544
1579
  undo: bool | None = None,
1580
+ *,
1545
1581
  type: str | None = "GP_THICK",
1546
1582
  ):
1547
1583
  """Add a procedural operation/effect to the active grease pencil object
@@ -1559,6 +1595,7 @@ def gpencil_modifier_apply(
1559
1595
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1560
1596
  execution_context: str | int | None = None,
1561
1597
  undo: bool | None = None,
1598
+ *,
1562
1599
  apply_as: str | None = "DATA",
1563
1600
  modifier: str | typing.Any = "",
1564
1601
  report: bool | typing.Any | None = False,
@@ -1588,6 +1625,7 @@ def gpencil_modifier_copy(
1588
1625
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1589
1626
  execution_context: str | int | None = None,
1590
1627
  undo: bool | None = None,
1628
+ *,
1591
1629
  modifier: str | typing.Any = "",
1592
1630
  ):
1593
1631
  """Duplicate modifier at the same position in the stack
@@ -1605,6 +1643,7 @@ def gpencil_modifier_copy_to_selected(
1605
1643
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1606
1644
  execution_context: str | int | None = None,
1607
1645
  undo: bool | None = None,
1646
+ *,
1608
1647
  modifier: str | typing.Any = "",
1609
1648
  ):
1610
1649
  """Copy the modifier from the active object to all selected objects
@@ -1622,6 +1661,7 @@ def gpencil_modifier_move_down(
1622
1661
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1623
1662
  execution_context: str | int | None = None,
1624
1663
  undo: bool | None = None,
1664
+ *,
1625
1665
  modifier: str | typing.Any = "",
1626
1666
  ):
1627
1667
  """Move modifier down in the stack
@@ -1639,6 +1679,7 @@ def gpencil_modifier_move_to_index(
1639
1679
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1640
1680
  execution_context: str | int | None = None,
1641
1681
  undo: bool | None = None,
1682
+ *,
1642
1683
  modifier: str | typing.Any = "",
1643
1684
  index: typing.Any | None = 0,
1644
1685
  ):
@@ -1659,6 +1700,7 @@ def gpencil_modifier_move_up(
1659
1700
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1660
1701
  execution_context: str | int | None = None,
1661
1702
  undo: bool | None = None,
1703
+ *,
1662
1704
  modifier: str | typing.Any = "",
1663
1705
  ):
1664
1706
  """Move modifier up in the stack
@@ -1676,6 +1718,7 @@ def gpencil_modifier_remove(
1676
1718
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1677
1719
  execution_context: str | int | None = None,
1678
1720
  undo: bool | None = None,
1721
+ *,
1679
1722
  modifier: str | typing.Any = "",
1680
1723
  report: bool | typing.Any | None = False,
1681
1724
  ):
@@ -1696,6 +1739,7 @@ def grease_pencil_add(
1696
1739
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1697
1740
  execution_context: str | int | None = None,
1698
1741
  undo: bool | None = None,
1742
+ *,
1699
1743
  type: str | None = "EMPTY",
1700
1744
  use_in_front: bool | typing.Any | None = True,
1701
1745
  stroke_depth_offset: typing.Any | None = 0.05,
@@ -1755,6 +1799,7 @@ def grease_pencil_dash_modifier_segment_add(
1755
1799
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1756
1800
  execution_context: str | int | None = None,
1757
1801
  undo: bool | None = None,
1802
+ *,
1758
1803
  modifier: str | typing.Any = "",
1759
1804
  ):
1760
1805
  """Add a segment to the dash modifier
@@ -1772,6 +1817,7 @@ def grease_pencil_dash_modifier_segment_move(
1772
1817
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1773
1818
  execution_context: str | int | None = None,
1774
1819
  undo: bool | None = None,
1820
+ *,
1775
1821
  modifier: str | typing.Any = "",
1776
1822
  type: str | None = "UP",
1777
1823
  ):
@@ -1792,6 +1838,7 @@ def grease_pencil_dash_modifier_segment_remove(
1792
1838
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1793
1839
  execution_context: str | int | None = None,
1794
1840
  undo: bool | None = None,
1841
+ *,
1795
1842
  modifier: str | typing.Any = "",
1796
1843
  index: typing.Any | None = 0,
1797
1844
  ):
@@ -1812,6 +1859,7 @@ def grease_pencil_time_modifier_segment_add(
1812
1859
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1813
1860
  execution_context: str | int | None = None,
1814
1861
  undo: bool | None = None,
1862
+ *,
1815
1863
  modifier: str | typing.Any = "",
1816
1864
  ):
1817
1865
  """Add a segment to the time modifier
@@ -1829,6 +1877,7 @@ def grease_pencil_time_modifier_segment_move(
1829
1877
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1830
1878
  execution_context: str | int | None = None,
1831
1879
  undo: bool | None = None,
1880
+ *,
1832
1881
  modifier: str | typing.Any = "",
1833
1882
  type: str | None = "UP",
1834
1883
  ):
@@ -1849,6 +1898,7 @@ def grease_pencil_time_modifier_segment_remove(
1849
1898
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1850
1899
  execution_context: str | int | None = None,
1851
1900
  undo: bool | None = None,
1901
+ *,
1852
1902
  modifier: str | typing.Any = "",
1853
1903
  index: typing.Any | None = 0,
1854
1904
  ):
@@ -1869,6 +1919,7 @@ def hide_collection(
1869
1919
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1870
1920
  execution_context: str | int | None = None,
1871
1921
  undo: bool | None = None,
1922
+ *,
1872
1923
  collection_index: typing.Any | None = -1,
1873
1924
  toggle: bool | typing.Any | None = False,
1874
1925
  extend: bool | typing.Any | None = False,
@@ -1906,6 +1957,7 @@ def hide_view_clear(
1906
1957
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1907
1958
  execution_context: str | int | None = None,
1908
1959
  undo: bool | None = None,
1960
+ *,
1909
1961
  select: bool | typing.Any | None = True,
1910
1962
  ):
1911
1963
  """Reveal temporarily hidden objects
@@ -1923,6 +1975,7 @@ def hide_view_set(
1923
1975
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1924
1976
  execution_context: str | int | None = None,
1925
1977
  undo: bool | None = None,
1978
+ *,
1926
1979
  unselected: bool | typing.Any | None = False,
1927
1980
  ):
1928
1981
  """Temporarily hide objects from the viewport
@@ -1954,6 +2007,7 @@ def hook_add_selob(
1954
2007
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1955
2008
  execution_context: str | int | None = None,
1956
2009
  undo: bool | None = None,
2010
+ *,
1957
2011
  use_bone: bool | typing.Any | None = False,
1958
2012
  ):
1959
2013
  """Hook selected vertices to the first selected object
@@ -1971,6 +2025,7 @@ def hook_assign(
1971
2025
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1972
2026
  execution_context: str | int | None = None,
1973
2027
  undo: bool | None = None,
2028
+ *,
1974
2029
  modifier: str | None = "",
1975
2030
  ):
1976
2031
  """Assign the selected vertices to a hook
@@ -1988,6 +2043,7 @@ def hook_recenter(
1988
2043
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1989
2044
  execution_context: str | int | None = None,
1990
2045
  undo: bool | None = None,
2046
+ *,
1991
2047
  modifier: str | None = "",
1992
2048
  ):
1993
2049
  """Set hook center to cursor position
@@ -2005,6 +2061,7 @@ def hook_remove(
2005
2061
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2006
2062
  execution_context: str | int | None = None,
2007
2063
  undo: bool | None = None,
2064
+ *,
2008
2065
  modifier: str | None = "",
2009
2066
  ):
2010
2067
  """Remove a hook from the active object
@@ -2022,6 +2079,7 @@ def hook_reset(
2022
2079
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2023
2080
  execution_context: str | int | None = None,
2024
2081
  undo: bool | None = None,
2082
+ *,
2025
2083
  modifier: str | None = "",
2026
2084
  ):
2027
2085
  """Recalculate and clear offset transformation
@@ -2039,6 +2097,7 @@ def hook_select(
2039
2097
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2040
2098
  execution_context: str | int | None = None,
2041
2099
  undo: bool | None = None,
2100
+ *,
2042
2101
  modifier: str | None = "",
2043
2102
  ):
2044
2103
  """Select affected vertices on mesh
@@ -2154,6 +2213,7 @@ def laplaciandeform_bind(
2154
2213
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2155
2214
  execution_context: str | int | None = None,
2156
2215
  undo: bool | None = None,
2216
+ *,
2157
2217
  modifier: str | typing.Any = "",
2158
2218
  ):
2159
2219
  """Bind mesh to system in laplacian deform modifier
@@ -2171,6 +2231,7 @@ def light_add(
2171
2231
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2172
2232
  execution_context: str | int | None = None,
2173
2233
  undo: bool | None = None,
2234
+ *,
2174
2235
  type: str | None = "POINT",
2175
2236
  radius: typing.Any | None = 1.0,
2176
2237
  align: str | None = "WORLD",
@@ -2226,6 +2287,7 @@ def light_linking_blockers_link(
2226
2287
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2227
2288
  execution_context: str | int | None = None,
2228
2289
  undo: bool | None = None,
2290
+ *,
2229
2291
  link_state: str | None = "INCLUDE",
2230
2292
  ):
2231
2293
  """Light link selected blockers to the active emitter object
@@ -2277,6 +2339,7 @@ def light_linking_receivers_link(
2277
2339
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2278
2340
  execution_context: str | int | None = None,
2279
2341
  undo: bool | None = None,
2342
+ *,
2280
2343
  link_state: str | None = "INCLUDE",
2281
2344
  ):
2282
2345
  """Light link selected receivers to the active emitter object
@@ -2328,6 +2391,7 @@ def lightprobe_add(
2328
2391
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2329
2392
  execution_context: str | int | None = None,
2330
2393
  undo: bool | None = None,
2394
+ *,
2331
2395
  type: str | None = "SPHERE",
2332
2396
  radius: typing.Any | None = 1.0,
2333
2397
  enter_editmode: bool | typing.Any | None = False,
@@ -2381,6 +2445,7 @@ def lightprobe_cache_bake(
2381
2445
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2382
2446
  execution_context: str | int | None = None,
2383
2447
  undo: bool | None = None,
2448
+ *,
2384
2449
  delay: typing.Any | None = 0,
2385
2450
  subset: str | None = "ALL",
2386
2451
  ):
@@ -2410,6 +2475,7 @@ def lightprobe_cache_free(
2410
2475
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2411
2476
  execution_context: str | int | None = None,
2412
2477
  undo: bool | None = None,
2478
+ *,
2413
2479
  subset: str | None = "SELECTED",
2414
2480
  ):
2415
2481
  """Delete cached indirect lighting
@@ -2492,6 +2558,7 @@ def link_to_collection(
2492
2558
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2493
2559
  execution_context: str | int | None = None,
2494
2560
  undo: bool | None = None,
2561
+ *,
2495
2562
  collection_index: typing.Any | None = -1,
2496
2563
  is_new: bool | typing.Any | None = False,
2497
2564
  new_collection_name: str | typing.Any = "",
@@ -2515,6 +2582,7 @@ def location_clear(
2515
2582
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2516
2583
  execution_context: str | int | None = None,
2517
2584
  undo: bool | None = None,
2585
+ *,
2518
2586
  clear_delta: bool | typing.Any | None = False,
2519
2587
  ):
2520
2588
  """Clear the object's location
@@ -2546,6 +2614,7 @@ def make_links_data(
2546
2614
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2547
2615
  execution_context: str | int | None = None,
2548
2616
  undo: bool | None = None,
2617
+ *,
2549
2618
  type: str | None = "OBDATA",
2550
2619
  ):
2551
2620
  """Transfer data from active object to selected objects
@@ -2587,6 +2656,7 @@ def make_links_scene(
2587
2656
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2588
2657
  execution_context: str | int | None = None,
2589
2658
  undo: bool | None = None,
2659
+ *,
2590
2660
  scene: str | None = "",
2591
2661
  ):
2592
2662
  """Link selection to another scene
@@ -2604,6 +2674,7 @@ def make_local(
2604
2674
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2605
2675
  execution_context: str | int | None = None,
2606
2676
  undo: bool | None = None,
2677
+ *,
2607
2678
  type: str | None = "SELECT_OBJECT",
2608
2679
  ):
2609
2680
  """Make library linked data-blocks local to this file
@@ -2621,6 +2692,7 @@ def make_override_library(
2621
2692
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2622
2693
  execution_context: str | int | None = None,
2623
2694
  undo: bool | None = None,
2695
+ *,
2624
2696
  collection: typing.Any | None = 0,
2625
2697
  ):
2626
2698
  """Create a local override of the selected linked objects, and their hierarchy of dependencies
@@ -2638,6 +2710,7 @@ def make_single_user(
2638
2710
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2639
2711
  execution_context: str | int | None = None,
2640
2712
  undo: bool | None = None,
2713
+ *,
2641
2714
  type: str | None = "SELECTED_OBJECTS",
2642
2715
  object: bool | typing.Any | None = False,
2643
2716
  obdata: bool | typing.Any | None = False,
@@ -2726,6 +2799,7 @@ def material_slot_move(
2726
2799
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2727
2800
  execution_context: str | int | None = None,
2728
2801
  undo: bool | None = None,
2802
+ *,
2729
2803
  direction: str | None = "UP",
2730
2804
  ):
2731
2805
  """Move the active material up/down in the list
@@ -2785,6 +2859,7 @@ def meshdeform_bind(
2785
2859
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2786
2860
  execution_context: str | int | None = None,
2787
2861
  undo: bool | None = None,
2862
+ *,
2788
2863
  modifier: str | typing.Any = "",
2789
2864
  ):
2790
2865
  """Bind mesh to cage in mesh deform modifier
@@ -2802,6 +2877,7 @@ def metaball_add(
2802
2877
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2803
2878
  execution_context: str | int | None = None,
2804
2879
  undo: bool | None = None,
2880
+ *,
2805
2881
  type: str | None = "BALL",
2806
2882
  radius: typing.Any | None = 2.0,
2807
2883
  enter_editmode: bool | typing.Any | None = False,
@@ -2846,6 +2922,7 @@ def mode_set(
2846
2922
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2847
2923
  execution_context: str | int | None = None,
2848
2924
  undo: bool | None = None,
2925
+ *,
2849
2926
  mode: str | None = "OBJECT",
2850
2927
  toggle: bool | typing.Any | None = False,
2851
2928
  ):
@@ -2866,6 +2943,7 @@ def mode_set_with_submode(
2866
2943
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2867
2944
  execution_context: str | int | None = None,
2868
2945
  undo: bool | None = None,
2946
+ *,
2869
2947
  mode: str | None = "OBJECT",
2870
2948
  toggle: bool | typing.Any | None = False,
2871
2949
  mesh_select_mode: typing.Any | None = {},
@@ -2889,6 +2967,7 @@ def modifier_add(
2889
2967
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2890
2968
  execution_context: str | int | None = None,
2891
2969
  undo: bool | None = None,
2970
+ *,
2892
2971
  type: str | None = "SUBSURF",
2893
2972
  use_selected_objects: bool | typing.Any | None = False,
2894
2973
  ):
@@ -2909,6 +2988,7 @@ def modifier_add_node_group(
2909
2988
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2910
2989
  execution_context: str | int | None = None,
2911
2990
  undo: bool | None = None,
2991
+ *,
2912
2992
  asset_library_type: str | None = "LOCAL",
2913
2993
  asset_library_identifier: str | typing.Any = "",
2914
2994
  relative_asset_identifier: str | typing.Any = "",
@@ -2938,6 +3018,7 @@ def modifier_apply(
2938
3018
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2939
3019
  execution_context: str | int | None = None,
2940
3020
  undo: bool | None = None,
3021
+ *,
2941
3022
  modifier: str | typing.Any = "",
2942
3023
  report: bool | typing.Any | None = False,
2943
3024
  merge_customdata: bool | typing.Any | None = True,
@@ -2967,6 +3048,7 @@ def modifier_apply_as_shapekey(
2967
3048
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2968
3049
  execution_context: str | int | None = None,
2969
3050
  undo: bool | None = None,
3051
+ *,
2970
3052
  keep_modifier: bool | typing.Any | None = False,
2971
3053
  modifier: str | typing.Any = "",
2972
3054
  report: bool | typing.Any | None = False,
@@ -2990,6 +3072,7 @@ def modifier_convert(
2990
3072
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2991
3073
  execution_context: str | int | None = None,
2992
3074
  undo: bool | None = None,
3075
+ *,
2993
3076
  modifier: str | typing.Any = "",
2994
3077
  ):
2995
3078
  """Convert particles to a mesh object
@@ -3007,6 +3090,7 @@ def modifier_copy(
3007
3090
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3008
3091
  execution_context: str | int | None = None,
3009
3092
  undo: bool | None = None,
3093
+ *,
3010
3094
  modifier: str | typing.Any = "",
3011
3095
  use_selected_objects: bool | typing.Any | None = False,
3012
3096
  ):
@@ -3027,6 +3111,7 @@ def modifier_copy_to_selected(
3027
3111
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3028
3112
  execution_context: str | int | None = None,
3029
3113
  undo: bool | None = None,
3114
+ *,
3030
3115
  modifier: str | typing.Any = "",
3031
3116
  ):
3032
3117
  """Copy the modifier from the active object to all selected objects
@@ -3044,6 +3129,7 @@ def modifier_move_down(
3044
3129
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3045
3130
  execution_context: str | int | None = None,
3046
3131
  undo: bool | None = None,
3132
+ *,
3047
3133
  modifier: str | typing.Any = "",
3048
3134
  ):
3049
3135
  """Move modifier down in the stack
@@ -3061,6 +3147,7 @@ def modifier_move_to_index(
3061
3147
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3062
3148
  execution_context: str | int | None = None,
3063
3149
  undo: bool | None = None,
3150
+ *,
3064
3151
  modifier: str | typing.Any = "",
3065
3152
  index: typing.Any | None = 0,
3066
3153
  use_selected_objects: bool | typing.Any | None = False,
@@ -3084,6 +3171,7 @@ def modifier_move_up(
3084
3171
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3085
3172
  execution_context: str | int | None = None,
3086
3173
  undo: bool | None = None,
3174
+ *,
3087
3175
  modifier: str | typing.Any = "",
3088
3176
  ):
3089
3177
  """Move modifier up in the stack
@@ -3101,6 +3189,7 @@ def modifier_remove(
3101
3189
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3102
3190
  execution_context: str | int | None = None,
3103
3191
  undo: bool | None = None,
3192
+ *,
3104
3193
  modifier: str | typing.Any = "",
3105
3194
  report: bool | typing.Any | None = False,
3106
3195
  use_selected_objects: bool | typing.Any | None = False,
@@ -3124,6 +3213,7 @@ def modifier_set_active(
3124
3213
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3125
3214
  execution_context: str | int | None = None,
3126
3215
  undo: bool | None = None,
3216
+ *,
3127
3217
  modifier: str | typing.Any = "",
3128
3218
  ):
3129
3219
  """Activate the modifier to use as the context
@@ -3169,6 +3259,7 @@ def move_to_collection(
3169
3259
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3170
3260
  execution_context: str | int | None = None,
3171
3261
  undo: bool | None = None,
3262
+ *,
3172
3263
  collection_index: typing.Any | None = -1,
3173
3264
  is_new: bool | typing.Any | None = False,
3174
3265
  new_collection_name: str | typing.Any = "",
@@ -3192,6 +3283,7 @@ def multires_base_apply(
3192
3283
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3193
3284
  execution_context: str | int | None = None,
3194
3285
  undo: bool | None = None,
3286
+ *,
3195
3287
  modifier: str | typing.Any = "",
3196
3288
  ):
3197
3289
  """Modify the base mesh to conform to the displaced mesh
@@ -3223,6 +3315,7 @@ def multires_external_save(
3223
3315
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3224
3316
  execution_context: str | int | None = None,
3225
3317
  undo: bool | None = None,
3318
+ *,
3226
3319
  filepath: str | typing.Any = "",
3227
3320
  hide_props_region: bool | typing.Any | None = True,
3228
3321
  check_existing: bool | typing.Any | None = True,
@@ -3324,6 +3417,7 @@ def multires_higher_levels_delete(
3324
3417
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3325
3418
  execution_context: str | int | None = None,
3326
3419
  undo: bool | None = None,
3420
+ *,
3327
3421
  modifier: str | typing.Any = "",
3328
3422
  ):
3329
3423
  """Deletes the higher resolution mesh, potential loss of detail
@@ -3341,6 +3435,7 @@ def multires_rebuild_subdiv(
3341
3435
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3342
3436
  execution_context: str | int | None = None,
3343
3437
  undo: bool | None = None,
3438
+ *,
3344
3439
  modifier: str | typing.Any = "",
3345
3440
  ):
3346
3441
  """Rebuilds all possible subdivisions levels to generate a lower resolution base mesh
@@ -3358,6 +3453,7 @@ def multires_reshape(
3358
3453
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3359
3454
  execution_context: str | int | None = None,
3360
3455
  undo: bool | None = None,
3456
+ *,
3361
3457
  modifier: str | typing.Any = "",
3362
3458
  ):
3363
3459
  """Copy vertex coordinates from other object
@@ -3375,6 +3471,7 @@ def multires_subdivide(
3375
3471
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3376
3472
  execution_context: str | int | None = None,
3377
3473
  undo: bool | None = None,
3474
+ *,
3378
3475
  modifier: str | typing.Any = "",
3379
3476
  mode: str | None = "CATMULL_CLARK",
3380
3477
  ):
@@ -3404,6 +3501,7 @@ def multires_unsubdivide(
3404
3501
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3405
3502
  execution_context: str | int | None = None,
3406
3503
  undo: bool | None = None,
3504
+ *,
3407
3505
  modifier: str | typing.Any = "",
3408
3506
  ):
3409
3507
  """Rebuild a lower subdivision level of the current base mesh
@@ -3421,6 +3519,7 @@ def ocean_bake(
3421
3519
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3422
3520
  execution_context: str | int | None = None,
3423
3521
  undo: bool | None = None,
3522
+ *,
3424
3523
  modifier: str | typing.Any = "",
3425
3524
  free: bool | typing.Any | None = False,
3426
3525
  ):
@@ -3455,6 +3554,7 @@ def origin_set(
3455
3554
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3456
3555
  execution_context: str | int | None = None,
3457
3556
  undo: bool | None = None,
3557
+ *,
3458
3558
  type: str | None = "GEOMETRY_ORIGIN",
3459
3559
  center: str | None = "MEDIAN",
3460
3560
  ):
@@ -3490,6 +3590,7 @@ def parent_clear(
3490
3590
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3491
3591
  execution_context: str | int | None = None,
3492
3592
  undo: bool | None = None,
3593
+ *,
3493
3594
  type: str | None = "CLEAR",
3494
3595
  ):
3495
3596
  """Clear the object's parenting
@@ -3530,6 +3631,7 @@ def parent_no_inverse_set(
3530
3631
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3531
3632
  execution_context: str | int | None = None,
3532
3633
  undo: bool | None = None,
3634
+ *,
3533
3635
  keep_transform: bool | typing.Any | None = False,
3534
3636
  ):
3535
3637
  """Set the object's parenting without setting the inverse parent correction
@@ -3547,6 +3649,7 @@ def parent_set(
3547
3649
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3548
3650
  execution_context: str | int | None = None,
3549
3651
  undo: bool | None = None,
3652
+ *,
3550
3653
  type: str | None = "OBJECT",
3551
3654
  xmirror: bool | typing.Any | None = False,
3552
3655
  keep_transform: bool | typing.Any | None = False,
@@ -3598,6 +3701,7 @@ def paths_calculate(
3598
3701
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3599
3702
  execution_context: str | int | None = None,
3600
3703
  undo: bool | None = None,
3704
+ *,
3601
3705
  display_type: str | None = "RANGE",
3602
3706
  range: str | None = "SCENE",
3603
3707
  ):
@@ -3618,6 +3722,7 @@ def paths_clear(
3618
3722
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3619
3723
  execution_context: str | int | None = None,
3620
3724
  undo: bool | None = None,
3725
+ *,
3621
3726
  only_selected: bool | typing.Any | None = False,
3622
3727
  ):
3623
3728
  """Undocumented, consider contributing.
@@ -3663,6 +3768,7 @@ def pointcloud_add(
3663
3768
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3664
3769
  execution_context: str | int | None = None,
3665
3770
  undo: bool | None = None,
3771
+ *,
3666
3772
  align: str | None = "WORLD",
3667
3773
  location: typing.Any | None = (0.0, 0.0, 0.0),
3668
3774
  rotation: typing.Any | None = (0.0, 0.0, 0.0),
@@ -3712,6 +3818,7 @@ def quadriflow_remesh(
3712
3818
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3713
3819
  execution_context: str | int | None = None,
3714
3820
  undo: bool | None = None,
3821
+ *,
3715
3822
  use_mesh_symmetry: bool | typing.Any | None = True,
3716
3823
  use_preserve_sharp: bool | typing.Any | None = False,
3717
3824
  use_preserve_boundary: bool | typing.Any | None = False,
@@ -3768,6 +3875,7 @@ def quick_explode(
3768
3875
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3769
3876
  execution_context: str | int | None = None,
3770
3877
  undo: bool | None = None,
3878
+ *,
3771
3879
  style: str | None = "EXPLODE",
3772
3880
  amount: typing.Any | None = 100,
3773
3881
  frame_duration: typing.Any | None = 50,
@@ -3803,6 +3911,7 @@ def quick_fur(
3803
3911
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3804
3912
  execution_context: str | int | None = None,
3805
3913
  undo: bool | None = None,
3914
+ *,
3806
3915
  density: str | None = "MEDIUM",
3807
3916
  length: typing.Any | None = 0.1,
3808
3917
  radius: typing.Any | None = 0.001,
@@ -3838,6 +3947,7 @@ def quick_liquid(
3838
3947
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3839
3948
  execution_context: str | int | None = None,
3840
3949
  undo: bool | None = None,
3950
+ *,
3841
3951
  show_flows: bool | typing.Any | None = False,
3842
3952
  ):
3843
3953
  """Make selected objects liquid
@@ -3855,6 +3965,7 @@ def quick_smoke(
3855
3965
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3856
3966
  execution_context: str | int | None = None,
3857
3967
  undo: bool | None = None,
3968
+ *,
3858
3969
  style: str | None = "SMOKE",
3859
3970
  show_flows: bool | typing.Any | None = False,
3860
3971
  ):
@@ -3875,6 +3986,7 @@ def randomize_transform(
3875
3986
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3876
3987
  execution_context: str | int | None = None,
3877
3988
  undo: bool | None = None,
3989
+ *,
3878
3990
  random_seed: typing.Any | None = 0,
3879
3991
  use_delta: bool | typing.Any | None = False,
3880
3992
  use_loc: bool | typing.Any | None = True,
@@ -3930,6 +4042,7 @@ def rotation_clear(
3930
4042
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3931
4043
  execution_context: str | int | None = None,
3932
4044
  undo: bool | None = None,
4045
+ *,
3933
4046
  clear_delta: bool | typing.Any | None = False,
3934
4047
  ):
3935
4048
  """Clear the object's rotation
@@ -3947,6 +4060,7 @@ def scale_clear(
3947
4060
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3948
4061
  execution_context: str | int | None = None,
3949
4062
  undo: bool | None = None,
4063
+ *,
3950
4064
  clear_delta: bool | typing.Any | None = False,
3951
4065
  ):
3952
4066
  """Clear the object's scale
@@ -3964,6 +4078,7 @@ def select_all(
3964
4078
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3965
4079
  execution_context: str | int | None = None,
3966
4080
  undo: bool | None = None,
4081
+ *,
3967
4082
  action: str | None = "TOGGLE",
3968
4083
  ):
3969
4084
  """Change selection of all visible objects in scene
@@ -3993,6 +4108,7 @@ def select_by_type(
3993
4108
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3994
4109
  execution_context: str | int | None = None,
3995
4110
  undo: bool | None = None,
4111
+ *,
3996
4112
  extend: bool | typing.Any | None = False,
3997
4113
  type: str | None = "MESH",
3998
4114
  ):
@@ -4013,6 +4129,7 @@ def select_camera(
4013
4129
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4014
4130
  execution_context: str | int | None = None,
4015
4131
  undo: bool | None = None,
4132
+ *,
4016
4133
  extend: bool | typing.Any | None = False,
4017
4134
  ):
4018
4135
  """Select the active camera
@@ -4030,6 +4147,7 @@ def select_grouped(
4030
4147
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4031
4148
  execution_context: str | int | None = None,
4032
4149
  undo: bool | None = None,
4150
+ *,
4033
4151
  extend: bool | typing.Any | None = False,
4034
4152
  type: str | None = "CHILDREN_RECURSIVE",
4035
4153
  ):
@@ -4083,6 +4201,7 @@ def select_hierarchy(
4083
4201
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4084
4202
  execution_context: str | int | None = None,
4085
4203
  undo: bool | None = None,
4204
+ *,
4086
4205
  direction: str | None = "PARENT",
4087
4206
  extend: bool | typing.Any | None = False,
4088
4207
  ):
@@ -4117,6 +4236,7 @@ def select_linked(
4117
4236
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4118
4237
  execution_context: str | int | None = None,
4119
4238
  undo: bool | None = None,
4239
+ *,
4120
4240
  extend: bool | typing.Any | None = False,
4121
4241
  type: str | None = "OBDATA",
4122
4242
  ):
@@ -4137,6 +4257,7 @@ def select_mirror(
4137
4257
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4138
4258
  execution_context: str | int | None = None,
4139
4259
  undo: bool | None = None,
4260
+ *,
4140
4261
  extend: bool | typing.Any | None = False,
4141
4262
  ):
4142
4263
  """Select the mirror objects of the selected object e.g. "L.sword" and "R.sword"
@@ -4168,6 +4289,7 @@ def select_pattern(
4168
4289
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4169
4290
  execution_context: str | int | None = None,
4170
4291
  undo: bool | None = None,
4292
+ *,
4171
4293
  pattern: str | typing.Any = "*",
4172
4294
  case_sensitive: bool | typing.Any | None = False,
4173
4295
  extend: bool | typing.Any | None = True,
@@ -4191,6 +4313,7 @@ def select_random(
4191
4313
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4192
4314
  execution_context: str | int | None = None,
4193
4315
  undo: bool | None = None,
4316
+ *,
4194
4317
  ratio: typing.Any | None = 0.5,
4195
4318
  seed: typing.Any | None = 0,
4196
4319
  action: str | None = "SELECT",
@@ -4220,6 +4343,7 @@ def select_same_collection(
4220
4343
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4221
4344
  execution_context: str | int | None = None,
4222
4345
  undo: bool | None = None,
4346
+ *,
4223
4347
  collection: str | typing.Any = "",
4224
4348
  ):
4225
4349
  """Select object in the same collection
@@ -4237,6 +4361,7 @@ def shade_auto_smooth(
4237
4361
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4238
4362
  execution_context: str | int | None = None,
4239
4363
  undo: bool | None = None,
4364
+ *,
4240
4365
  use_auto_smooth: bool | typing.Any | None = True,
4241
4366
  angle: typing.Any | None = 0.523599,
4242
4367
  ):
@@ -4257,6 +4382,7 @@ def shade_flat(
4257
4382
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4258
4383
  execution_context: str | int | None = None,
4259
4384
  undo: bool | None = None,
4385
+ *,
4260
4386
  keep_sharp_edges: bool | typing.Any | None = True,
4261
4387
  ):
4262
4388
  """Render and display faces uniform, using face normals
@@ -4274,6 +4400,7 @@ def shade_smooth(
4274
4400
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4275
4401
  execution_context: str | int | None = None,
4276
4402
  undo: bool | None = None,
4403
+ *,
4277
4404
  keep_sharp_edges: bool | typing.Any | None = True,
4278
4405
  ):
4279
4406
  """Render and display faces smooth, using interpolated vertex normals
@@ -4291,6 +4418,7 @@ def shade_smooth_by_angle(
4291
4418
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4292
4419
  execution_context: str | int | None = None,
4293
4420
  undo: bool | None = None,
4421
+ *,
4294
4422
  angle: typing.Any | None = 0.523599,
4295
4423
  keep_sharp_edges: bool | typing.Any | None = True,
4296
4424
  ):
@@ -4311,6 +4439,7 @@ def shaderfx_add(
4311
4439
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4312
4440
  execution_context: str | int | None = None,
4313
4441
  undo: bool | None = None,
4442
+ *,
4314
4443
  type: str | None = "FX_BLUR",
4315
4444
  ):
4316
4445
  """Add a visual effect to the active object
@@ -4328,6 +4457,7 @@ def shaderfx_copy(
4328
4457
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4329
4458
  execution_context: str | int | None = None,
4330
4459
  undo: bool | None = None,
4460
+ *,
4331
4461
  shaderfx: str | typing.Any = "",
4332
4462
  ):
4333
4463
  """Duplicate effect at the same position in the stack
@@ -4345,6 +4475,7 @@ def shaderfx_move_down(
4345
4475
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4346
4476
  execution_context: str | int | None = None,
4347
4477
  undo: bool | None = None,
4478
+ *,
4348
4479
  shaderfx: str | typing.Any = "",
4349
4480
  ):
4350
4481
  """Move effect down in the stack
@@ -4362,6 +4493,7 @@ def shaderfx_move_to_index(
4362
4493
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4363
4494
  execution_context: str | int | None = None,
4364
4495
  undo: bool | None = None,
4496
+ *,
4365
4497
  shaderfx: str | typing.Any = "",
4366
4498
  index: typing.Any | None = 0,
4367
4499
  ):
@@ -4382,6 +4514,7 @@ def shaderfx_move_up(
4382
4514
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4383
4515
  execution_context: str | int | None = None,
4384
4516
  undo: bool | None = None,
4517
+ *,
4385
4518
  shaderfx: str | typing.Any = "",
4386
4519
  ):
4387
4520
  """Move effect up in the stack
@@ -4399,6 +4532,7 @@ def shaderfx_remove(
4399
4532
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4400
4533
  execution_context: str | int | None = None,
4401
4534
  undo: bool | None = None,
4535
+ *,
4402
4536
  shaderfx: str | typing.Any = "",
4403
4537
  report: bool | typing.Any | None = False,
4404
4538
  ):
@@ -4419,6 +4553,7 @@ def shape_key_add(
4419
4553
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4420
4554
  execution_context: str | int | None = None,
4421
4555
  undo: bool | None = None,
4556
+ *,
4422
4557
  from_mix: bool | typing.Any | None = True,
4423
4558
  ):
4424
4559
  """Add shape key to the object
@@ -4450,6 +4585,7 @@ def shape_key_lock(
4450
4585
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4451
4586
  execution_context: str | int | None = None,
4452
4587
  undo: bool | None = None,
4588
+ *,
4453
4589
  action: str | None = "LOCK",
4454
4590
  ):
4455
4591
  """Change the lock state of all shape keys of active object
@@ -4473,6 +4609,7 @@ def shape_key_mirror(
4473
4609
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4474
4610
  execution_context: str | int | None = None,
4475
4611
  undo: bool | None = None,
4612
+ *,
4476
4613
  use_topology: bool | typing.Any | None = False,
4477
4614
  ):
4478
4615
  """Mirror the current shape key along the local X axis
@@ -4490,6 +4627,7 @@ def shape_key_move(
4490
4627
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4491
4628
  execution_context: str | int | None = None,
4492
4629
  undo: bool | None = None,
4630
+ *,
4493
4631
  type: str | None = "TOP",
4494
4632
  ):
4495
4633
  """Move the active shape key up/down in the list
@@ -4519,6 +4657,7 @@ def shape_key_remove(
4519
4657
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4520
4658
  execution_context: str | int | None = None,
4521
4659
  undo: bool | None = None,
4660
+ *,
4522
4661
  all: bool | typing.Any | None = False,
4523
4662
  apply_mix: bool | typing.Any | None = False,
4524
4663
  ):
@@ -4553,6 +4692,7 @@ def shape_key_transfer(
4553
4692
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4554
4693
  execution_context: str | int | None = None,
4555
4694
  undo: bool | None = None,
4695
+ *,
4556
4696
  mode: str | None = "OFFSET",
4557
4697
  use_clamp: bool | typing.Any | None = False,
4558
4698
  ):
@@ -4582,6 +4722,7 @@ def simulation_nodes_cache_bake(
4582
4722
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4583
4723
  execution_context: str | int | None = None,
4584
4724
  undo: bool | None = None,
4725
+ *,
4585
4726
  selected: bool | typing.Any | None = False,
4586
4727
  ):
4587
4728
  """Bake simulations in geometry nodes modifiers
@@ -4599,6 +4740,7 @@ def simulation_nodes_cache_calculate_to_frame(
4599
4740
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4600
4741
  execution_context: str | int | None = None,
4601
4742
  undo: bool | None = None,
4743
+ *,
4602
4744
  selected: bool | typing.Any | None = False,
4603
4745
  ):
4604
4746
  """Calculate simulations in geometry nodes modifiers from the start to current frame
@@ -4616,6 +4758,7 @@ def simulation_nodes_cache_delete(
4616
4758
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4617
4759
  execution_context: str | int | None = None,
4618
4760
  undo: bool | None = None,
4761
+ *,
4619
4762
  selected: bool | typing.Any | None = False,
4620
4763
  ):
4621
4764
  """Delete cached/baked simulations in geometry nodes modifiers
@@ -4633,6 +4776,7 @@ def skin_armature_create(
4633
4776
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4634
4777
  execution_context: str | int | None = None,
4635
4778
  undo: bool | None = None,
4779
+ *,
4636
4780
  modifier: str | typing.Any = "",
4637
4781
  ):
4638
4782
  """Create an armature that parallels the skin layout
@@ -4650,6 +4794,7 @@ def skin_loose_mark_clear(
4650
4794
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4651
4795
  execution_context: str | int | None = None,
4652
4796
  undo: bool | None = None,
4797
+ *,
4653
4798
  action: str | None = "MARK",
4654
4799
  ):
4655
4800
  """Mark/clear selected vertices as loose
@@ -4701,6 +4846,7 @@ def speaker_add(
4701
4846
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4702
4847
  execution_context: str | int | None = None,
4703
4848
  undo: bool | None = None,
4849
+ *,
4704
4850
  enter_editmode: bool | typing.Any | None = False,
4705
4851
  align: str | None = "WORLD",
4706
4852
  location: typing.Any | None = (0.0, 0.0, 0.0),
@@ -4739,6 +4885,7 @@ def subdivision_set(
4739
4885
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4740
4886
  execution_context: str | int | None = None,
4741
4887
  undo: bool | None = None,
4888
+ *,
4742
4889
  level: typing.Any | None = 1,
4743
4890
  relative: bool | typing.Any | None = False,
4744
4891
  ):
@@ -4759,6 +4906,7 @@ def surfacedeform_bind(
4759
4906
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4760
4907
  execution_context: str | int | None = None,
4761
4908
  undo: bool | None = None,
4909
+ *,
4762
4910
  modifier: str | typing.Any = "",
4763
4911
  ):
4764
4912
  """Bind mesh to target in surface deform modifier
@@ -4776,6 +4924,7 @@ def text_add(
4776
4924
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4777
4925
  execution_context: str | int | None = None,
4778
4926
  undo: bool | None = None,
4927
+ *,
4779
4928
  radius: typing.Any | None = 1.0,
4780
4929
  enter_editmode: bool | typing.Any | None = False,
4781
4930
  align: str | None = "WORLD",
@@ -4817,6 +4966,7 @@ def track_clear(
4817
4966
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4818
4967
  execution_context: str | int | None = None,
4819
4968
  undo: bool | None = None,
4969
+ *,
4820
4970
  type: str | None = "CLEAR",
4821
4971
  ):
4822
4972
  """Clear tracking constraint or flag from object
@@ -4834,6 +4984,7 @@ def track_set(
4834
4984
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4835
4985
  execution_context: str | int | None = None,
4836
4986
  undo: bool | None = None,
4987
+ *,
4837
4988
  type: str | None = "DAMPTRACK",
4838
4989
  ):
4839
4990
  """Make the object track another object, using various methods/constraints
@@ -4851,6 +5002,7 @@ def transfer_mode(
4851
5002
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4852
5003
  execution_context: str | int | None = None,
4853
5004
  undo: bool | None = None,
5005
+ *,
4854
5006
  use_flash_on_transfer: bool | typing.Any | None = True,
4855
5007
  ):
4856
5008
  """Switches the active object and assigns the same mode to a new one under the mouse cursor, leaving the active mode in the current one
@@ -4868,6 +5020,7 @@ def transform_apply(
4868
5020
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4869
5021
  execution_context: str | int | None = None,
4870
5022
  undo: bool | None = None,
5023
+ *,
4871
5024
  location: bool | typing.Any | None = True,
4872
5025
  rotation: bool | typing.Any | None = True,
4873
5026
  scale: bool | typing.Any | None = True,
@@ -4911,6 +5064,7 @@ def transform_to_mouse(
4911
5064
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4912
5065
  execution_context: str | int | None = None,
4913
5066
  undo: bool | None = None,
5067
+ *,
4914
5068
  name: str | typing.Any = "",
4915
5069
  session_uid: typing.Any | None = 0,
4916
5070
  matrix: typing.Any | None = (
@@ -4945,6 +5099,7 @@ def transforms_to_deltas(
4945
5099
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4946
5100
  execution_context: str | int | None = None,
4947
5101
  undo: bool | None = None,
5102
+ *,
4948
5103
  mode: str | None = "ALL",
4949
5104
  reset_values: bool | typing.Any | None = True,
4950
5105
  ):
@@ -5033,6 +5188,7 @@ def vertex_group_clean(
5033
5188
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5034
5189
  execution_context: str | int | None = None,
5035
5190
  undo: bool | None = None,
5191
+ *,
5036
5192
  group_select_mode: str | None = "",
5037
5193
  limit: typing.Any | None = 0.0,
5038
5194
  keep_single: bool | typing.Any | None = False,
@@ -5098,6 +5254,7 @@ def vertex_group_invert(
5098
5254
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5099
5255
  execution_context: str | int | None = None,
5100
5256
  undo: bool | None = None,
5257
+ *,
5101
5258
  group_select_mode: str | None = "",
5102
5259
  auto_assign: bool | typing.Any | None = True,
5103
5260
  auto_remove: bool | typing.Any | None = True,
@@ -5121,6 +5278,7 @@ def vertex_group_levels(
5121
5278
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5122
5279
  execution_context: str | int | None = None,
5123
5280
  undo: bool | None = None,
5281
+ *,
5124
5282
  group_select_mode: str | None = "",
5125
5283
  offset: typing.Any | None = 0.0,
5126
5284
  gain: typing.Any | None = 1.0,
@@ -5144,6 +5302,7 @@ def vertex_group_limit_total(
5144
5302
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5145
5303
  execution_context: str | int | None = None,
5146
5304
  undo: bool | None = None,
5305
+ *,
5147
5306
  group_select_mode: str | None = "",
5148
5307
  limit: typing.Any | None = 4,
5149
5308
  ):
@@ -5164,6 +5323,7 @@ def vertex_group_lock(
5164
5323
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5165
5324
  execution_context: str | int | None = None,
5166
5325
  undo: bool | None = None,
5326
+ *,
5167
5327
  action: str | None = "TOGGLE",
5168
5328
  mask: str | None = "ALL",
5169
5329
  ):
@@ -5208,6 +5368,7 @@ def vertex_group_mirror(
5208
5368
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5209
5369
  execution_context: str | int | None = None,
5210
5370
  undo: bool | None = None,
5371
+ *,
5211
5372
  mirror_weights: bool | typing.Any | None = True,
5212
5373
  flip_group_names: bool | typing.Any | None = True,
5213
5374
  all_groups: bool | typing.Any | None = False,
@@ -5234,6 +5395,7 @@ def vertex_group_move(
5234
5395
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5235
5396
  execution_context: str | int | None = None,
5236
5397
  undo: bool | None = None,
5398
+ *,
5237
5399
  direction: str | None = "UP",
5238
5400
  ):
5239
5401
  """Move the active vertex group up/down in the list
@@ -5265,6 +5427,7 @@ def vertex_group_normalize_all(
5265
5427
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5266
5428
  execution_context: str | int | None = None,
5267
5429
  undo: bool | None = None,
5430
+ *,
5268
5431
  group_select_mode: str | None = "",
5269
5432
  lock_active: bool | typing.Any | None = True,
5270
5433
  ):
@@ -5285,6 +5448,7 @@ def vertex_group_quantize(
5285
5448
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5286
5449
  execution_context: str | int | None = None,
5287
5450
  undo: bool | None = None,
5451
+ *,
5288
5452
  group_select_mode: str | None = "",
5289
5453
  steps: typing.Any | None = 4,
5290
5454
  ):
@@ -5305,6 +5469,7 @@ def vertex_group_remove(
5305
5469
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5306
5470
  execution_context: str | int | None = None,
5307
5471
  undo: bool | None = None,
5472
+ *,
5308
5473
  all: bool | typing.Any | None = False,
5309
5474
  all_unlocked: bool | typing.Any | None = False,
5310
5475
  ):
@@ -5325,6 +5490,7 @@ def vertex_group_remove_from(
5325
5490
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5326
5491
  execution_context: str | int | None = None,
5327
5492
  undo: bool | None = None,
5493
+ *,
5328
5494
  use_all_groups: bool | typing.Any | None = False,
5329
5495
  use_all_verts: bool | typing.Any | None = False,
5330
5496
  ):
@@ -5359,6 +5525,7 @@ def vertex_group_set_active(
5359
5525
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5360
5526
  execution_context: str | int | None = None,
5361
5527
  undo: bool | None = None,
5528
+ *,
5362
5529
  group: str | None = "",
5363
5530
  ):
5364
5531
  """Set the active vertex group
@@ -5376,6 +5543,7 @@ def vertex_group_smooth(
5376
5543
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5377
5544
  execution_context: str | int | None = None,
5378
5545
  undo: bool | None = None,
5546
+ *,
5379
5547
  group_select_mode: str | None = "",
5380
5548
  factor: typing.Any | None = 0.5,
5381
5549
  repeat: typing.Any | None = 1,
@@ -5402,6 +5570,7 @@ def vertex_group_sort(
5402
5570
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5403
5571
  execution_context: str | int | None = None,
5404
5572
  undo: bool | None = None,
5573
+ *,
5405
5574
  sort_type: str | None = "NAME",
5406
5575
  ):
5407
5576
  """Sort vertex groups
@@ -5447,6 +5616,7 @@ def vertex_weight_delete(
5447
5616
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5448
5617
  execution_context: str | int | None = None,
5449
5618
  undo: bool | None = None,
5619
+ *,
5450
5620
  weight_group: typing.Any | None = -1,
5451
5621
  ):
5452
5622
  """Delete this weight from the vertex (disabled if vertex group is locked)
@@ -5478,6 +5648,7 @@ def vertex_weight_paste(
5478
5648
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5479
5649
  execution_context: str | int | None = None,
5480
5650
  undo: bool | None = None,
5651
+ *,
5481
5652
  weight_group: typing.Any | None = -1,
5482
5653
  ):
5483
5654
  """Copy this group's weight to other selected vertices (disabled if vertex group is locked)
@@ -5495,6 +5666,7 @@ def vertex_weight_set_active(
5495
5666
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5496
5667
  execution_context: str | int | None = None,
5497
5668
  undo: bool | None = None,
5669
+ *,
5498
5670
  weight_group: typing.Any | None = -1,
5499
5671
  ):
5500
5672
  """Set as active vertex group
@@ -5526,6 +5698,7 @@ def volume_add(
5526
5698
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5527
5699
  execution_context: str | int | None = None,
5528
5700
  undo: bool | None = None,
5701
+ *,
5529
5702
  align: str | None = "WORLD",
5530
5703
  location: typing.Any | None = (0.0, 0.0, 0.0),
5531
5704
  rotation: typing.Any | None = (0.0, 0.0, 0.0),
@@ -5561,6 +5734,7 @@ def volume_import(
5561
5734
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
5562
5735
  execution_context: str | int | None = None,
5563
5736
  undo: bool | None = None,
5737
+ *,
5564
5738
  filepath: str | typing.Any = "",
5565
5739
  directory: str | typing.Any = "",
5566
5740
  files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]