fake-bpy-module 20241207__py3-none-any.whl → 20241209__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 (115) hide show
  1. addon_utils/__init__.pyi +2 -1
  2. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
  3. bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
  4. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
  5. bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
  6. blf/__init__.pyi +2 -1
  7. bmesh/ops/__init__.pyi +110 -53
  8. bmesh/types/__init__.pyi +18 -10
  9. bmesh/utils/__init__.pyi +14 -4
  10. bpy/app/icons/__init__.pyi +4 -1
  11. bpy/app/translations/__init__.pyi +4 -1
  12. bpy/msgbus/__init__.pyi +8 -5
  13. bpy/ops/action/__init__.pyi +38 -138
  14. bpy/ops/anim/__init__.pyi +61 -179
  15. bpy/ops/armature/__init__.pyi +48 -147
  16. bpy/ops/asset/__init__.pyi +16 -71
  17. bpy/ops/boid/__init__.pyi +8 -41
  18. bpy/ops/brush/__init__.pyi +13 -39
  19. bpy/ops/buttons/__init__.pyi +6 -29
  20. bpy/ops/cachefile/__init__.pyi +5 -19
  21. bpy/ops/camera/__init__.pyi +2 -5
  22. bpy/ops/clip/__init__.pyi +92 -290
  23. bpy/ops/cloth/__init__.pyi +1 -3
  24. bpy/ops/collection/__init__.pyi +9 -25
  25. bpy/ops/console/__init__.pyi +21 -79
  26. bpy/ops/constraint/__init__.pyi +18 -45
  27. bpy/ops/curve/__init__.pyi +51 -180
  28. bpy/ops/curves/__init__.pyi +28 -100
  29. bpy/ops/cycles/__init__.pyi +3 -9
  30. bpy/ops/dpaint/__init__.pyi +5 -19
  31. bpy/ops/ed/__init__.pyi +12 -53
  32. bpy/ops/export_anim/__init__.pyi +1 -3
  33. bpy/ops/export_scene/__init__.pyi +2 -5
  34. bpy/ops/extensions/__init__.pyi +34 -110
  35. bpy/ops/file/__init__.pyi +40 -167
  36. bpy/ops/fluid/__init__.pyi +14 -77
  37. bpy/ops/font/__init__.pyi +23 -85
  38. bpy/ops/geometry/__init__.pyi +10 -27
  39. bpy/ops/gizmogroup/__init__.pyi +2 -9
  40. bpy/ops/gpencil/__init__.pyi +8 -32
  41. bpy/ops/graph/__init__.pyi +65 -184
  42. bpy/ops/grease_pencil/__init__.pyi +108 -290
  43. bpy/ops/image/__init__.pyi +49 -154
  44. bpy/ops/import_anim/__init__.pyi +1 -3
  45. bpy/ops/import_curve/__init__.pyi +1 -3
  46. bpy/ops/import_scene/__init__.pyi +2 -4
  47. bpy/ops/info/__init__.pyi +7 -29
  48. bpy/ops/lattice/__init__.pyi +8 -29
  49. bpy/ops/marker/__init__.pyi +11 -31
  50. bpy/ops/mask/__init__.pyi +39 -132
  51. bpy/ops/material/__init__.pyi +3 -19
  52. bpy/ops/mball/__init__.pyi +8 -19
  53. bpy/ops/mesh/__init__.pyi +164 -401
  54. bpy/ops/nla/__init__.pyi +39 -147
  55. bpy/ops/node/__init__.pyi +115 -390
  56. bpy/ops/object/__init__.pyi +237 -630
  57. bpy/ops/outliner/__init__.pyi +71 -263
  58. bpy/ops/paint/__init__.pyi +54 -140
  59. bpy/ops/paintcurve/__init__.pyi +8 -33
  60. bpy/ops/palette/__init__.pyi +7 -27
  61. bpy/ops/particle/__init__.pyi +36 -134
  62. bpy/ops/pose/__init__.pyi +51 -169
  63. bpy/ops/poselib/__init__.pyi +9 -33
  64. bpy/ops/preferences/__init__.pyi +35 -94
  65. bpy/ops/ptcache/__init__.pyi +7 -33
  66. bpy/ops/render/__init__.pyi +13 -37
  67. bpy/ops/rigidbody/__init__.pyi +13 -45
  68. bpy/ops/scene/__init__.pyi +37 -121
  69. bpy/ops/screen/__init__.pyi +39 -137
  70. bpy/ops/script/__init__.pyi +3 -11
  71. bpy/ops/sculpt/__init__.pyi +37 -94
  72. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  73. bpy/ops/sequencer/__init__.pyi +89 -284
  74. bpy/ops/sound/__init__.pyi +7 -23
  75. bpy/ops/spreadsheet/__init__.pyi +4 -15
  76. bpy/ops/surface/__init__.pyi +6 -13
  77. bpy/ops/text/__init__.pyi +43 -175
  78. bpy/ops/text_editor/__init__.pyi +1 -3
  79. bpy/ops/texture/__init__.pyi +4 -21
  80. bpy/ops/transform/__init__.pyi +27 -61
  81. bpy/ops/ui/__init__.pyi +34 -117
  82. bpy/ops/uilist/__init__.pyi +3 -7
  83. bpy/ops/uv/__init__.pyi +49 -134
  84. bpy/ops/view2d/__init__.pyi +14 -39
  85. bpy/ops/view3d/__init__.pyi +67 -232
  86. bpy/ops/wm/__init__.pyi +114 -298
  87. bpy/ops/workspace/__init__.pyi +7 -33
  88. bpy/ops/world/__init__.pyi +2 -11
  89. bpy/path/__init__.pyi +4 -2
  90. bpy/types/__init__.pyi +68 -32
  91. bpy/utils/__init__.pyi +18 -9
  92. bpy_extras/bmesh_utils/__init__.pyi +2 -1
  93. bpy_extras/io_utils/__init__.pyi +7 -2
  94. bpy_extras/mesh_utils/__init__.pyi +19 -7
  95. bpy_extras/view3d_utils/__init__.pyi +2 -2
  96. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  97. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +115 -115
  98. freestyle/functions/__init__.pyi +16 -4
  99. freestyle/types/__init__.pyi +60 -23
  100. freestyle/utils/ContextFunctions/__init__.pyi +2 -2
  101. gpu/capabilities/__init__.pyi +2 -1
  102. gpu/state/__init__.pyi +2 -2
  103. gpu/types/__init__.pyi +2 -2
  104. gpu_extras/batch/__init__.pyi +6 -3
  105. idprop/types/__init__.pyi +4 -3
  106. imbuf/__init__.pyi +2 -1
  107. imbuf/types/__init__.pyi +5 -2
  108. mathutils/__init__.pyi +25 -14
  109. mathutils/bvhtree/__init__.pyi +8 -7
  110. mathutils/geometry/__init__.pyi +38 -17
  111. mathutils/interpolate/__init__.pyi +2 -1
  112. mathutils/kdtree/__init__.pyi +11 -6
  113. mathutils/noise/__init__.pyi +2 -1
  114. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  115. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
@@ -7,9 +7,9 @@ import bpy.typing
7
7
  import mathutils
8
8
 
9
9
  def add(
10
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
11
10
  execution_context: int | str | None = None,
12
11
  undo: bool | None = None,
12
+ /,
13
13
  *,
14
14
  radius: float | None = 1.0,
15
15
  type: bpy.typing.ObjectTypeItems | None = "EMPTY",
@@ -29,7 +29,6 @@ def add(
29
29
  ):
30
30
  """Add an object to the scene
31
31
 
32
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
33
32
  :type execution_context: int | str | None
34
33
  :type undo: bool | None
35
34
  :param radius: Radius
@@ -58,21 +57,18 @@ def add(
58
57
  """
59
58
 
60
59
  def add_modifier_menu(
61
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
62
- execution_context: int | str | None = None,
63
- undo: bool | None = None,
60
+ execution_context: int | str | None = None, undo: bool | None = None
64
61
  ):
65
62
  """Undocumented, consider contributing.
66
63
 
67
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
68
64
  :type execution_context: int | str | None
69
65
  :type undo: bool | None
70
66
  """
71
67
 
72
68
  def add_named(
73
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
74
69
  execution_context: int | str | None = None,
75
70
  undo: bool | None = None,
71
+ /,
76
72
  *,
77
73
  linked: bool | None = False,
78
74
  name: str = "",
@@ -90,7 +86,6 @@ def add_named(
90
86
  ):
91
87
  """Add named object
92
88
 
93
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
94
89
  :type execution_context: int | str | None
95
90
  :type undo: bool | None
96
91
  :param linked: Linked, Duplicate object but not object data, linking to the original data
@@ -108,9 +103,9 @@ def add_named(
108
103
  """
109
104
 
110
105
  def align(
111
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
112
106
  execution_context: int | str | None = None,
113
107
  undo: bool | None = None,
108
+ /,
114
109
  *,
115
110
  bb_quality: bool | None = True,
116
111
  align_mode: typing.Literal["OPT_1", "OPT_2", "OPT_3"] | None = "OPT_2",
@@ -119,7 +114,6 @@ def align(
119
114
  ):
120
115
  """Align objects
121
116
 
122
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
123
117
  :type execution_context: int | str | None
124
118
  :type undo: bool | None
125
119
  :param bb_quality: High Quality, Enables high quality but slow calculation of the bounding box for perfect results on complex shape meshes with rotation/scale
@@ -145,21 +139,18 @@ def align(
145
139
  """
146
140
 
147
141
  def anim_transforms_to_deltas(
148
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
149
- execution_context: int | str | None = None,
150
- undo: bool | None = None,
142
+ execution_context: int | str | None = None, undo: bool | None = None
151
143
  ):
152
144
  """Convert object animation for normal transforms to delta transforms
153
145
 
154
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
155
146
  :type execution_context: int | str | None
156
147
  :type undo: bool | None
157
148
  """
158
149
 
159
150
  def armature_add(
160
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
161
151
  execution_context: int | str | None = None,
162
152
  undo: bool | None = None,
153
+ /,
163
154
  *,
164
155
  radius: float | None = 1.0,
165
156
  enter_editmode: bool | None = False,
@@ -178,7 +169,6 @@ def armature_add(
178
169
  ):
179
170
  """Add an armature object to the scene
180
171
 
181
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
182
172
  :type execution_context: int | str | None
183
173
  :type undo: bool | None
184
174
  :param radius: Radius
@@ -205,16 +195,15 @@ def armature_add(
205
195
  """
206
196
 
207
197
  def assign_property_defaults(
208
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
209
198
  execution_context: int | str | None = None,
210
199
  undo: bool | None = None,
200
+ /,
211
201
  *,
212
202
  process_data: bool | None = True,
213
203
  process_bones: bool | None = True,
214
204
  ):
215
205
  """Assign the current values of custom properties as their defaults, for use as part of the rest pose state in NLA track mixing
216
206
 
217
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
218
207
  :type execution_context: int | str | None
219
208
  :type undo: bool | None
220
209
  :param process_data: Process data properties
@@ -224,9 +213,9 @@ def assign_property_defaults(
224
213
  """
225
214
 
226
215
  def bake(
227
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
228
216
  execution_context: int | str | None = None,
229
217
  undo: bool | None = None,
218
+ /,
230
219
  *,
231
220
  type: bpy.typing.BakePassTypeItems | None = "COMBINED",
232
221
  pass_filter: set[bpy.typing.BakePassFilterTypeItems] | None = {},
@@ -253,7 +242,6 @@ def bake(
253
242
  ):
254
243
  """Bake image textures of selected objects
255
244
 
256
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
257
245
  :type execution_context: int | str | None
258
246
  :type undo: bool | None
259
247
  :param type: Type, Type of pass to bake, some of them may not be supported by the current render engine
@@ -302,22 +290,17 @@ def bake(
302
290
  :type uv_layer: str
303
291
  """
304
292
 
305
- def bake_image(
306
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
307
- execution_context: int | str | None = None,
308
- undo: bool | None = None,
309
- ):
293
+ def bake_image(execution_context: int | str | None = None, undo: bool | None = None):
310
294
  """Bake image textures of selected objects
311
295
 
312
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
313
296
  :type execution_context: int | str | None
314
297
  :type undo: bool | None
315
298
  """
316
299
 
317
300
  def camera_add(
318
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
319
301
  execution_context: int | str | None = None,
320
302
  undo: bool | None = None,
303
+ /,
321
304
  *,
322
305
  enter_editmode: bool | None = False,
323
306
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
@@ -335,7 +318,6 @@ def camera_add(
335
318
  ):
336
319
  """Add a camera object to the scene
337
320
 
338
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
339
321
  :type execution_context: int | str | None
340
322
  :type undo: bool | None
341
323
  :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
@@ -360,33 +342,27 @@ def camera_add(
360
342
  """
361
343
 
362
344
  def clear_override_library(
363
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
364
- execution_context: int | str | None = None,
365
- undo: bool | None = None,
345
+ execution_context: int | str | None = None, undo: bool | None = None
366
346
  ):
367
347
  """Delete the selected local overrides and relink their usages to the linked data-blocks if possible, else reset them and mark them as non editable
368
348
 
369
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
370
349
  :type execution_context: int | str | None
371
350
  :type undo: bool | None
372
351
  """
373
352
 
374
353
  def collection_add(
375
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
376
- execution_context: int | str | None = None,
377
- undo: bool | None = None,
354
+ execution_context: int | str | None = None, undo: bool | None = None
378
355
  ):
379
356
  """Add an object to a new collection
380
357
 
381
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
382
358
  :type execution_context: int | str | None
383
359
  :type undo: bool | None
384
360
  """
385
361
 
386
362
  def collection_external_asset_drop(
387
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
388
363
  execution_context: int | str | None = None,
389
364
  undo: bool | None = None,
365
+ /,
390
366
  *,
391
367
  session_uid: int | None = 0,
392
368
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
@@ -408,7 +384,6 @@ def collection_external_asset_drop(
408
384
  ):
409
385
  """Add the dragged collection to the scene
410
386
 
411
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
412
387
  :type execution_context: int | str | None
413
388
  :type undo: bool | None
414
389
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -441,9 +416,9 @@ def collection_external_asset_drop(
441
416
  """
442
417
 
443
418
  def collection_instance_add(
444
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
445
419
  execution_context: int | str | None = None,
446
420
  undo: bool | None = None,
421
+ /,
447
422
  *,
448
423
  name: str = "Collection",
449
424
  collection: str | None = "",
@@ -465,7 +440,6 @@ def collection_instance_add(
465
440
  ):
466
441
  """Add a collection instance
467
442
 
468
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
469
443
  :type execution_context: int | str | None
470
444
  :type undo: bool | None
471
445
  :param name: Name, Collection name to add
@@ -498,15 +472,14 @@ def collection_instance_add(
498
472
  """
499
473
 
500
474
  def collection_link(
501
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
502
475
  execution_context: int | str | None = None,
503
476
  undo: bool | None = None,
477
+ /,
504
478
  *,
505
479
  collection: str | None = "",
506
480
  ):
507
481
  """Add an object to an existing collection
508
482
 
509
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
510
483
  :type execution_context: int | str | None
511
484
  :type undo: bool | None
512
485
  :param collection: Collection
@@ -514,51 +487,41 @@ def collection_link(
514
487
  """
515
488
 
516
489
  def collection_objects_select(
517
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
518
- execution_context: int | str | None = None,
519
- undo: bool | None = None,
490
+ execution_context: int | str | None = None, undo: bool | None = None
520
491
  ):
521
492
  """Select all objects in collection
522
493
 
523
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
524
494
  :type execution_context: int | str | None
525
495
  :type undo: bool | None
526
496
  """
527
497
 
528
498
  def collection_remove(
529
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
530
- execution_context: int | str | None = None,
531
- undo: bool | None = None,
499
+ execution_context: int | str | None = None, undo: bool | None = None
532
500
  ):
533
501
  """Remove the active object from this collection
534
502
 
535
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
536
503
  :type execution_context: int | str | None
537
504
  :type undo: bool | None
538
505
  """
539
506
 
540
507
  def collection_unlink(
541
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
542
- execution_context: int | str | None = None,
543
- undo: bool | None = None,
508
+ execution_context: int | str | None = None, undo: bool | None = None
544
509
  ):
545
510
  """Unlink the collection from all objects
546
511
 
547
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
548
512
  :type execution_context: int | str | None
549
513
  :type undo: bool | None
550
514
  """
551
515
 
552
516
  def constraint_add(
553
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
554
517
  execution_context: int | str | None = None,
555
518
  undo: bool | None = None,
519
+ /,
556
520
  *,
557
521
  type: str | None = "",
558
522
  ):
559
523
  """Add a constraint to the active object
560
524
 
561
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
562
525
  :type execution_context: int | str | None
563
526
  :type undo: bool | None
564
527
  :param type: Type
@@ -566,15 +529,14 @@ def constraint_add(
566
529
  """
567
530
 
568
531
  def constraint_add_with_targets(
569
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
570
532
  execution_context: int | str | None = None,
571
533
  undo: bool | None = None,
534
+ /,
572
535
  *,
573
536
  type: str | None = "",
574
537
  ):
575
538
  """Add a constraint to the active object, with target (where applicable) set to the selected objects/bones
576
539
 
577
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
578
540
  :type execution_context: int | str | None
579
541
  :type undo: bool | None
580
542
  :param type: Type
@@ -582,33 +544,27 @@ def constraint_add_with_targets(
582
544
  """
583
545
 
584
546
  def constraints_clear(
585
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
586
- execution_context: int | str | None = None,
587
- undo: bool | None = None,
547
+ execution_context: int | str | None = None, undo: bool | None = None
588
548
  ):
589
549
  """Clear all constraints from the selected objects
590
550
 
591
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
592
551
  :type execution_context: int | str | None
593
552
  :type undo: bool | None
594
553
  """
595
554
 
596
555
  def constraints_copy(
597
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
598
- execution_context: int | str | None = None,
599
- undo: bool | None = None,
556
+ execution_context: int | str | None = None, undo: bool | None = None
600
557
  ):
601
558
  """Copy constraints to other selected objects
602
559
 
603
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
604
560
  :type execution_context: int | str | None
605
561
  :type undo: bool | None
606
562
  """
607
563
 
608
564
  def convert(
609
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
610
565
  execution_context: int | str | None = None,
611
566
  undo: bool | None = None,
567
+ /,
612
568
  *,
613
569
  target: typing.Literal["CURVE", "MESH", "POINTCLOUD", "CURVES", "GREASEPENCIL"]
614
570
  | None = "MESH",
@@ -622,7 +578,6 @@ def convert(
622
578
  ):
623
579
  """Convert selected objects to another type
624
580
 
625
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
626
581
  :type execution_context: int | str | None
627
582
  :type undo: bool | None
628
583
  :param target: Target, Type of object to convert to
@@ -659,15 +614,14 @@ def convert(
659
614
  """
660
615
 
661
616
  def correctivesmooth_bind(
662
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
663
617
  execution_context: int | str | None = None,
664
618
  undo: bool | None = None,
619
+ /,
665
620
  *,
666
621
  modifier: str = "",
667
622
  ):
668
623
  """Bind base pose in Corrective Smooth modifier
669
624
 
670
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
671
625
  :type execution_context: int | str | None
672
626
  :type undo: bool | None
673
627
  :param modifier: Modifier, Name of the modifier to edit
@@ -675,9 +629,9 @@ def correctivesmooth_bind(
675
629
  """
676
630
 
677
631
  def curves_empty_hair_add(
678
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
679
632
  execution_context: int | str | None = None,
680
633
  undo: bool | None = None,
634
+ /,
681
635
  *,
682
636
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
683
637
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -694,7 +648,6 @@ def curves_empty_hair_add(
694
648
  ):
695
649
  """Add an empty curve object to the scene with the selected mesh as surface
696
650
 
697
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
698
651
  :type execution_context: int | str | None
699
652
  :type undo: bool | None
700
653
  :param align: Align, The alignment of the new object
@@ -717,9 +670,9 @@ def curves_empty_hair_add(
717
670
  """
718
671
 
719
672
  def curves_random_add(
720
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
721
673
  execution_context: int | str | None = None,
722
674
  undo: bool | None = None,
675
+ /,
723
676
  *,
724
677
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
725
678
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -736,7 +689,6 @@ def curves_random_add(
736
689
  ):
737
690
  """Add a curves object with random curves to the scene
738
691
 
739
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
740
692
  :type execution_context: int | str | None
741
693
  :type undo: bool | None
742
694
  :param align: Align, The alignment of the new object
@@ -759,9 +711,9 @@ def curves_random_add(
759
711
  """
760
712
 
761
713
  def data_instance_add(
762
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
763
714
  execution_context: int | str | None = None,
764
715
  undo: bool | None = None,
716
+ /,
765
717
  *,
766
718
  name: str = "",
767
719
  session_uid: int | None = 0,
@@ -783,7 +735,6 @@ def data_instance_add(
783
735
  ):
784
736
  """Add an object data instance
785
737
 
786
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
787
738
  :type execution_context: int | str | None
788
739
  :type undo: bool | None
789
740
  :param name: Name, Name of the data-block to use by the operator
@@ -816,9 +767,9 @@ def data_instance_add(
816
767
  """
817
768
 
818
769
  def data_transfer(
819
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
820
770
  execution_context: int | str | None = None,
821
771
  undo: bool | None = None,
772
+ /,
822
773
  *,
823
774
  use_reverse_transfer: bool | None = False,
824
775
  use_freeze: bool | None = False,
@@ -856,7 +807,6 @@ def data_transfer(
856
807
  ):
857
808
  """Transfer data layer(s) (weights, edge sharp, etc.) from active to selected meshes
858
809
 
859
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
860
810
  :type execution_context: int | str | None
861
811
  :type undo: bool | None
862
812
  :param use_reverse_transfer: Reverse Transfer, Transfer from selected objects to active one
@@ -937,9 +887,9 @@ def data_transfer(
937
887
  """
938
888
 
939
889
  def datalayout_transfer(
940
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
941
890
  execution_context: int | str | None = None,
942
891
  undo: bool | None = None,
892
+ /,
943
893
  *,
944
894
  modifier: str = "",
945
895
  data_type: typing.Literal[
@@ -964,7 +914,6 @@ def datalayout_transfer(
964
914
  ):
965
915
  """Transfer layout of data layer(s) from active to selected meshes
966
916
 
967
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
968
917
  :type execution_context: int | str | None
969
918
  :type undo: bool | None
970
919
  :param modifier: Modifier, Name of the modifier to edit
@@ -1019,16 +968,15 @@ def datalayout_transfer(
1019
968
  """
1020
969
 
1021
970
  def delete(
1022
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1023
971
  execution_context: int | str | None = None,
1024
972
  undo: bool | None = None,
973
+ /,
1025
974
  *,
1026
975
  use_global: bool | None = False,
1027
976
  confirm: bool | None = True,
1028
977
  ):
1029
978
  """Delete selected objects
1030
979
 
1031
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1032
980
  :type execution_context: int | str | None
1033
981
  :type undo: bool | None
1034
982
  :param use_global: Delete Globally, Remove object from all scenes
@@ -1038,16 +986,15 @@ def delete(
1038
986
  """
1039
987
 
1040
988
  def drop_geometry_nodes(
1041
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1042
989
  execution_context: int | str | None = None,
1043
990
  undo: bool | None = None,
991
+ /,
1044
992
  *,
1045
993
  session_uid: int | None = 0,
1046
994
  show_datablock_in_modifier: bool | None = True,
1047
995
  ):
1048
996
  """Undocumented, consider contributing.
1049
997
 
1050
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1051
998
  :type execution_context: int | str | None
1052
999
  :type undo: bool | None
1053
1000
  :param session_uid: Session UID, Session UID of the geometry node group being dropped
@@ -1057,16 +1004,15 @@ def drop_geometry_nodes(
1057
1004
  """
1058
1005
 
1059
1006
  def drop_named_material(
1060
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1061
1007
  execution_context: int | str | None = None,
1062
1008
  undo: bool | None = None,
1009
+ /,
1063
1010
  *,
1064
1011
  name: str = "",
1065
1012
  session_uid: int | None = 0,
1066
1013
  ):
1067
1014
  """Undocumented, consider contributing.
1068
1015
 
1069
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1070
1016
  :type execution_context: int | str | None
1071
1017
  :type undo: bool | None
1072
1018
  :param name: Name, Name of the data-block to use by the operator
@@ -1076,16 +1022,15 @@ def drop_named_material(
1076
1022
  """
1077
1023
 
1078
1024
  def duplicate(
1079
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1080
1025
  execution_context: int | str | None = None,
1081
1026
  undo: bool | None = None,
1027
+ /,
1082
1028
  *,
1083
1029
  linked: bool | None = False,
1084
1030
  mode: bpy.typing.TransformModeTypeItems | None = "TRANSLATION",
1085
1031
  ):
1086
1032
  """Duplicate selected objects
1087
1033
 
1088
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1089
1034
  :type execution_context: int | str | None
1090
1035
  :type undo: bool | None
1091
1036
  :param linked: Linked, Duplicate object but not object data, linking to the original data
@@ -1095,16 +1040,15 @@ def duplicate(
1095
1040
  """
1096
1041
 
1097
1042
  def duplicate_move(
1098
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1099
1043
  execution_context: int | str | None = None,
1100
1044
  undo: bool | None = None,
1045
+ /,
1101
1046
  *,
1102
1047
  OBJECT_OT_duplicate: duplicate | None = None,
1103
1048
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
1104
1049
  ):
1105
1050
  """Duplicate the selected objects and move them
1106
1051
 
1107
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1108
1052
  :type execution_context: int | str | None
1109
1053
  :type undo: bool | None
1110
1054
  :param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
@@ -1114,16 +1058,15 @@ def duplicate_move(
1114
1058
  """
1115
1059
 
1116
1060
  def duplicate_move_linked(
1117
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1118
1061
  execution_context: int | str | None = None,
1119
1062
  undo: bool | None = None,
1063
+ /,
1120
1064
  *,
1121
1065
  OBJECT_OT_duplicate: duplicate | None = None,
1122
1066
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
1123
1067
  ):
1124
1068
  """Duplicate the selected objects, but not their object data, and move them
1125
1069
 
1126
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1127
1070
  :type execution_context: int | str | None
1128
1071
  :type undo: bool | None
1129
1072
  :param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
@@ -1133,16 +1076,15 @@ def duplicate_move_linked(
1133
1076
  """
1134
1077
 
1135
1078
  def duplicates_make_real(
1136
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1137
1079
  execution_context: int | str | None = None,
1138
1080
  undo: bool | None = None,
1081
+ /,
1139
1082
  *,
1140
1083
  use_base_parent: bool | None = False,
1141
1084
  use_hierarchy: bool | None = False,
1142
1085
  ):
1143
1086
  """Make instanced objects attached to this object real
1144
1087
 
1145
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1146
1088
  :type execution_context: int | str | None
1147
1089
  :type undo: bool | None
1148
1090
  :param use_base_parent: Parent, Parent newly created objects to the original instancer
@@ -1152,21 +1094,18 @@ def duplicates_make_real(
1152
1094
  """
1153
1095
 
1154
1096
  def editmode_toggle(
1155
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1156
- execution_context: int | str | None = None,
1157
- undo: bool | None = None,
1097
+ execution_context: int | str | None = None, undo: bool | None = None
1158
1098
  ):
1159
1099
  """Toggle object's edit mode
1160
1100
 
1161
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1162
1101
  :type execution_context: int | str | None
1163
1102
  :type undo: bool | None
1164
1103
  """
1165
1104
 
1166
1105
  def effector_add(
1167
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1168
1106
  execution_context: int | str | None = None,
1169
1107
  undo: bool | None = None,
1108
+ /,
1170
1109
  *,
1171
1110
  type: typing.Literal[
1172
1111
  "FORCE",
@@ -1201,7 +1140,6 @@ def effector_add(
1201
1140
  ):
1202
1141
  """Add an empty object with a physics effector to the scene
1203
1142
 
1204
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1205
1143
  :type execution_context: int | str | None
1206
1144
  :type undo: bool | None
1207
1145
  :param type: Type
@@ -1230,9 +1168,9 @@ def effector_add(
1230
1168
  """
1231
1169
 
1232
1170
  def empty_add(
1233
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1234
1171
  execution_context: int | str | None = None,
1235
1172
  undo: bool | None = None,
1173
+ /,
1236
1174
  *,
1237
1175
  type: bpy.typing.ObjectEmptyDrawtypeItems | None = "PLAIN_AXES",
1238
1176
  radius: float | None = 1.0,
@@ -1251,7 +1189,6 @@ def empty_add(
1251
1189
  ):
1252
1190
  """Add an empty object to the scene
1253
1191
 
1254
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1255
1192
  :type execution_context: int | str | None
1256
1193
  :type undo: bool | None
1257
1194
  :param type: Type
@@ -1278,9 +1215,9 @@ def empty_add(
1278
1215
  """
1279
1216
 
1280
1217
  def empty_image_add(
1281
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1282
1218
  execution_context: int | str | None = None,
1283
1219
  undo: bool | None = None,
1220
+ /,
1284
1221
  *,
1285
1222
  filepath: str = "",
1286
1223
  hide_props_region: bool | None = True,
@@ -1337,7 +1274,6 @@ def empty_image_add(
1337
1274
  ):
1338
1275
  """Add an empty image type to scene with data
1339
1276
 
1340
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1341
1277
  :type execution_context: int | str | None
1342
1278
  :type undo: bool | None
1343
1279
  :param filepath: File Path, Path to file
@@ -1448,15 +1384,14 @@ def empty_image_add(
1448
1384
  """
1449
1385
 
1450
1386
  def explode_refresh(
1451
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1452
1387
  execution_context: int | str | None = None,
1453
1388
  undo: bool | None = None,
1389
+ /,
1454
1390
  *,
1455
1391
  modifier: str = "",
1456
1392
  ):
1457
1393
  """Refresh data in the Explode modifier
1458
1394
 
1459
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1460
1395
  :type execution_context: int | str | None
1461
1396
  :type undo: bool | None
1462
1397
  :param modifier: Modifier, Name of the modifier to edit
@@ -1464,21 +1399,18 @@ def explode_refresh(
1464
1399
  """
1465
1400
 
1466
1401
  def forcefield_toggle(
1467
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1468
- execution_context: int | str | None = None,
1469
- undo: bool | None = None,
1402
+ execution_context: int | str | None = None, undo: bool | None = None
1470
1403
  ):
1471
1404
  """Toggle object's force field
1472
1405
 
1473
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1474
1406
  :type execution_context: int | str | None
1475
1407
  :type undo: bool | None
1476
1408
  """
1477
1409
 
1478
1410
  def geometry_node_bake_delete_single(
1479
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1480
1411
  execution_context: int | str | None = None,
1481
1412
  undo: bool | None = None,
1413
+ /,
1482
1414
  *,
1483
1415
  session_uid: int | None = 0,
1484
1416
  modifier_name: str = "",
@@ -1486,7 +1418,6 @@ def geometry_node_bake_delete_single(
1486
1418
  ):
1487
1419
  """Delete baked data of a single bake node or simulation
1488
1420
 
1489
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1490
1421
  :type execution_context: int | str | None
1491
1422
  :type undo: bool | None
1492
1423
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -1498,9 +1429,9 @@ def geometry_node_bake_delete_single(
1498
1429
  """
1499
1430
 
1500
1431
  def geometry_node_bake_pack_single(
1501
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1502
1432
  execution_context: int | str | None = None,
1503
1433
  undo: bool | None = None,
1434
+ /,
1504
1435
  *,
1505
1436
  session_uid: int | None = 0,
1506
1437
  modifier_name: str = "",
@@ -1508,7 +1439,6 @@ def geometry_node_bake_pack_single(
1508
1439
  ):
1509
1440
  """Pack baked data from disk into the .blend file
1510
1441
 
1511
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1512
1442
  :type execution_context: int | str | None
1513
1443
  :type undo: bool | None
1514
1444
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -1520,9 +1450,9 @@ def geometry_node_bake_pack_single(
1520
1450
  """
1521
1451
 
1522
1452
  def geometry_node_bake_single(
1523
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1524
1453
  execution_context: int | str | None = None,
1525
1454
  undo: bool | None = None,
1455
+ /,
1526
1456
  *,
1527
1457
  session_uid: int | None = 0,
1528
1458
  modifier_name: str = "",
@@ -1530,7 +1460,6 @@ def geometry_node_bake_single(
1530
1460
  ):
1531
1461
  """Bake a single bake node or simulation
1532
1462
 
1533
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1534
1463
  :type execution_context: int | str | None
1535
1464
  :type undo: bool | None
1536
1465
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -1542,9 +1471,9 @@ def geometry_node_bake_single(
1542
1471
  """
1543
1472
 
1544
1473
  def geometry_node_bake_unpack_single(
1545
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1546
1474
  execution_context: int | str | None = None,
1547
1475
  undo: bool | None = None,
1476
+ /,
1548
1477
  *,
1549
1478
  session_uid: int | None = 0,
1550
1479
  modifier_name: str = "",
@@ -1554,7 +1483,6 @@ def geometry_node_bake_unpack_single(
1554
1483
  ):
1555
1484
  """Unpack baked data from the .blend file to disk
1556
1485
 
1557
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1558
1486
  :type execution_context: int | str | None
1559
1487
  :type undo: bool | None
1560
1488
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -1568,28 +1496,24 @@ def geometry_node_bake_unpack_single(
1568
1496
  """
1569
1497
 
1570
1498
  def geometry_node_tree_copy_assign(
1571
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1572
- execution_context: int | str | None = None,
1573
- undo: bool | None = None,
1499
+ execution_context: int | str | None = None, undo: bool | None = None
1574
1500
  ):
1575
1501
  """Copy the active geometry node group and assign it to the active modifier
1576
1502
 
1577
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1578
1503
  :type execution_context: int | str | None
1579
1504
  :type undo: bool | None
1580
1505
  """
1581
1506
 
1582
1507
  def geometry_nodes_input_attribute_toggle(
1583
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1584
1508
  execution_context: int | str | None = None,
1585
1509
  undo: bool | None = None,
1510
+ /,
1586
1511
  *,
1587
1512
  input_name: str = "",
1588
1513
  modifier_name: str = "",
1589
1514
  ):
1590
1515
  """Switch between an attribute and a single value to define the data for every element
1591
1516
 
1592
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1593
1517
  :type execution_context: int | str | None
1594
1518
  :type undo: bool | None
1595
1519
  :param input_name: Input Name
@@ -1599,15 +1523,14 @@ def geometry_nodes_input_attribute_toggle(
1599
1523
  """
1600
1524
 
1601
1525
  def geometry_nodes_move_to_nodes(
1602
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1603
1526
  execution_context: int | str | None = None,
1604
1527
  undo: bool | None = None,
1528
+ /,
1605
1529
  *,
1606
1530
  use_selected_objects: bool | None = False,
1607
1531
  ):
1608
1532
  """Move inputs and outputs from in the modifier to a new node group
1609
1533
 
1610
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1611
1534
  :type execution_context: int | str | None
1612
1535
  :type undo: bool | None
1613
1536
  :param use_selected_objects: Selected Objects, Affect all selected objects instead of just the active object
@@ -1615,9 +1538,9 @@ def geometry_nodes_move_to_nodes(
1615
1538
  """
1616
1539
 
1617
1540
  def grease_pencil_add(
1618
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1619
1541
  execution_context: int | str | None = None,
1620
1542
  undo: bool | None = None,
1543
+ /,
1621
1544
  *,
1622
1545
  type: bpy.typing.ObjectGpencilTypeItems | None = "EMPTY",
1623
1546
  use_in_front: bool | None = True,
@@ -1640,7 +1563,6 @@ def grease_pencil_add(
1640
1563
  ):
1641
1564
  """Add a Grease Pencil object to the scene
1642
1565
 
1643
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1644
1566
  :type execution_context: int | str | None
1645
1567
  :type undo: bool | None
1646
1568
  :param type: Type
@@ -1681,15 +1603,14 @@ def grease_pencil_add(
1681
1603
  """
1682
1604
 
1683
1605
  def grease_pencil_dash_modifier_segment_add(
1684
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1685
1606
  execution_context: int | str | None = None,
1686
1607
  undo: bool | None = None,
1608
+ /,
1687
1609
  *,
1688
1610
  modifier: str = "",
1689
1611
  ):
1690
1612
  """Add a segment to the dash modifier
1691
1613
 
1692
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1693
1614
  :type execution_context: int | str | None
1694
1615
  :type undo: bool | None
1695
1616
  :param modifier: Modifier, Name of the modifier to edit
@@ -1697,16 +1618,15 @@ def grease_pencil_dash_modifier_segment_add(
1697
1618
  """
1698
1619
 
1699
1620
  def grease_pencil_dash_modifier_segment_move(
1700
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1701
1621
  execution_context: int | str | None = None,
1702
1622
  undo: bool | None = None,
1623
+ /,
1703
1624
  *,
1704
1625
  modifier: str = "",
1705
1626
  type: typing.Literal["UP", "DOWN"] | None = "UP",
1706
1627
  ):
1707
1628
  """Move the active dash segment up or down
1708
1629
 
1709
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1710
1630
  :type execution_context: int | str | None
1711
1631
  :type undo: bool | None
1712
1632
  :param modifier: Modifier, Name of the modifier to edit
@@ -1716,16 +1636,15 @@ def grease_pencil_dash_modifier_segment_move(
1716
1636
  """
1717
1637
 
1718
1638
  def grease_pencil_dash_modifier_segment_remove(
1719
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1720
1639
  execution_context: int | str | None = None,
1721
1640
  undo: bool | None = None,
1641
+ /,
1722
1642
  *,
1723
1643
  modifier: str = "",
1724
1644
  index: int | None = 0,
1725
1645
  ):
1726
1646
  """Remove the active segment from the dash modifier
1727
1647
 
1728
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1729
1648
  :type execution_context: int | str | None
1730
1649
  :type undo: bool | None
1731
1650
  :param modifier: Modifier, Name of the modifier to edit
@@ -1735,15 +1654,14 @@ def grease_pencil_dash_modifier_segment_remove(
1735
1654
  """
1736
1655
 
1737
1656
  def grease_pencil_time_modifier_segment_add(
1738
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1739
1657
  execution_context: int | str | None = None,
1740
1658
  undo: bool | None = None,
1659
+ /,
1741
1660
  *,
1742
1661
  modifier: str = "",
1743
1662
  ):
1744
1663
  """Add a segment to the time modifier
1745
1664
 
1746
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1747
1665
  :type execution_context: int | str | None
1748
1666
  :type undo: bool | None
1749
1667
  :param modifier: Modifier, Name of the modifier to edit
@@ -1751,16 +1669,15 @@ def grease_pencil_time_modifier_segment_add(
1751
1669
  """
1752
1670
 
1753
1671
  def grease_pencil_time_modifier_segment_move(
1754
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1755
1672
  execution_context: int | str | None = None,
1756
1673
  undo: bool | None = None,
1674
+ /,
1757
1675
  *,
1758
1676
  modifier: str = "",
1759
1677
  type: typing.Literal["UP", "DOWN"] | None = "UP",
1760
1678
  ):
1761
1679
  """Move the active time segment up or down
1762
1680
 
1763
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1764
1681
  :type execution_context: int | str | None
1765
1682
  :type undo: bool | None
1766
1683
  :param modifier: Modifier, Name of the modifier to edit
@@ -1770,16 +1687,15 @@ def grease_pencil_time_modifier_segment_move(
1770
1687
  """
1771
1688
 
1772
1689
  def grease_pencil_time_modifier_segment_remove(
1773
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1774
1690
  execution_context: int | str | None = None,
1775
1691
  undo: bool | None = None,
1692
+ /,
1776
1693
  *,
1777
1694
  modifier: str = "",
1778
1695
  index: int | None = 0,
1779
1696
  ):
1780
1697
  """Remove the active segment from the time modifier
1781
1698
 
1782
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1783
1699
  :type execution_context: int | str | None
1784
1700
  :type undo: bool | None
1785
1701
  :param modifier: Modifier, Name of the modifier to edit
@@ -1789,9 +1705,9 @@ def grease_pencil_time_modifier_segment_remove(
1789
1705
  """
1790
1706
 
1791
1707
  def hide_collection(
1792
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1793
1708
  execution_context: int | str | None = None,
1794
1709
  undo: bool | None = None,
1710
+ /,
1795
1711
  *,
1796
1712
  collection_index: int | None = -1,
1797
1713
  toggle: bool | None = False,
@@ -1799,7 +1715,6 @@ def hide_collection(
1799
1715
  ):
1800
1716
  """Show only objects in collection (Shift to extend)
1801
1717
 
1802
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1803
1718
  :type execution_context: int | str | None
1804
1719
  :type undo: bool | None
1805
1720
  :param collection_index: Collection Index, Index of the collection to change visibility
@@ -1811,27 +1726,23 @@ def hide_collection(
1811
1726
  """
1812
1727
 
1813
1728
  def hide_render_clear_all(
1814
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1815
- execution_context: int | str | None = None,
1816
- undo: bool | None = None,
1729
+ execution_context: int | str | None = None, undo: bool | None = None
1817
1730
  ):
1818
1731
  """Reveal all render objects by setting the hide render flag
1819
1732
 
1820
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1821
1733
  :type execution_context: int | str | None
1822
1734
  :type undo: bool | None
1823
1735
  """
1824
1736
 
1825
1737
  def hide_view_clear(
1826
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1827
1738
  execution_context: int | str | None = None,
1828
1739
  undo: bool | None = None,
1740
+ /,
1829
1741
  *,
1830
1742
  select: bool | None = True,
1831
1743
  ):
1832
1744
  """Reveal temporarily hidden objects
1833
1745
 
1834
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1835
1746
  :type execution_context: int | str | None
1836
1747
  :type undo: bool | None
1837
1748
  :param select: Select, Select revealed objects
@@ -1839,15 +1750,14 @@ def hide_view_clear(
1839
1750
  """
1840
1751
 
1841
1752
  def hide_view_set(
1842
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1843
1753
  execution_context: int | str | None = None,
1844
1754
  undo: bool | None = None,
1755
+ /,
1845
1756
  *,
1846
1757
  unselected: bool | None = False,
1847
1758
  ):
1848
1759
  """Temporarily hide objects from the viewport
1849
1760
 
1850
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1851
1761
  :type execution_context: int | str | None
1852
1762
  :type undo: bool | None
1853
1763
  :param unselected: Unselected, Hide unselected rather than selected objects
@@ -1855,27 +1765,23 @@ def hide_view_set(
1855
1765
  """
1856
1766
 
1857
1767
  def hook_add_newob(
1858
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1859
- execution_context: int | str | None = None,
1860
- undo: bool | None = None,
1768
+ execution_context: int | str | None = None, undo: bool | None = None
1861
1769
  ):
1862
1770
  """Hook selected vertices to a newly created object
1863
1771
 
1864
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1865
1772
  :type execution_context: int | str | None
1866
1773
  :type undo: bool | None
1867
1774
  """
1868
1775
 
1869
1776
  def hook_add_selob(
1870
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1871
1777
  execution_context: int | str | None = None,
1872
1778
  undo: bool | None = None,
1779
+ /,
1873
1780
  *,
1874
1781
  use_bone: bool | None = False,
1875
1782
  ):
1876
1783
  """Hook selected vertices to the first selected object
1877
1784
 
1878
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1879
1785
  :type execution_context: int | str | None
1880
1786
  :type undo: bool | None
1881
1787
  :param use_bone: Active Bone, Assign the hook to the hook object's active bone
@@ -1883,15 +1789,14 @@ def hook_add_selob(
1883
1789
  """
1884
1790
 
1885
1791
  def hook_assign(
1886
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1887
1792
  execution_context: int | str | None = None,
1888
1793
  undo: bool | None = None,
1794
+ /,
1889
1795
  *,
1890
1796
  modifier: str | None = "",
1891
1797
  ):
1892
1798
  """Assign the selected vertices to a hook
1893
1799
 
1894
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1895
1800
  :type execution_context: int | str | None
1896
1801
  :type undo: bool | None
1897
1802
  :param modifier: Modifier, Modifier number to assign to
@@ -1899,15 +1804,14 @@ def hook_assign(
1899
1804
  """
1900
1805
 
1901
1806
  def hook_recenter(
1902
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1903
1807
  execution_context: int | str | None = None,
1904
1808
  undo: bool | None = None,
1809
+ /,
1905
1810
  *,
1906
1811
  modifier: str | None = "",
1907
1812
  ):
1908
1813
  """Set hook center to cursor position
1909
1814
 
1910
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1911
1815
  :type execution_context: int | str | None
1912
1816
  :type undo: bool | None
1913
1817
  :param modifier: Modifier, Modifier number to assign to
@@ -1915,15 +1819,14 @@ def hook_recenter(
1915
1819
  """
1916
1820
 
1917
1821
  def hook_remove(
1918
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1919
1822
  execution_context: int | str | None = None,
1920
1823
  undo: bool | None = None,
1824
+ /,
1921
1825
  *,
1922
1826
  modifier: str | None = "",
1923
1827
  ):
1924
1828
  """Remove a hook from the active object
1925
1829
 
1926
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1927
1830
  :type execution_context: int | str | None
1928
1831
  :type undo: bool | None
1929
1832
  :param modifier: Modifier, Modifier number to remove
@@ -1931,15 +1834,14 @@ def hook_remove(
1931
1834
  """
1932
1835
 
1933
1836
  def hook_reset(
1934
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1935
1837
  execution_context: int | str | None = None,
1936
1838
  undo: bool | None = None,
1839
+ /,
1937
1840
  *,
1938
1841
  modifier: str | None = "",
1939
1842
  ):
1940
1843
  """Recalculate and clear offset transformation
1941
1844
 
1942
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1943
1845
  :type execution_context: int | str | None
1944
1846
  :type undo: bool | None
1945
1847
  :param modifier: Modifier, Modifier number to assign to
@@ -1947,15 +1849,14 @@ def hook_reset(
1947
1849
  """
1948
1850
 
1949
1851
  def hook_select(
1950
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1951
1852
  execution_context: int | str | None = None,
1952
1853
  undo: bool | None = None,
1854
+ /,
1953
1855
  *,
1954
1856
  modifier: str | None = "",
1955
1857
  ):
1956
1858
  """Select affected vertices on mesh
1957
1859
 
1958
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1959
1860
  :type execution_context: int | str | None
1960
1861
  :type undo: bool | None
1961
1862
  :param modifier: Modifier, Modifier number to remove
@@ -1963,99 +1864,71 @@ def hook_select(
1963
1864
  """
1964
1865
 
1965
1866
  def instance_offset_from_cursor(
1966
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1967
- execution_context: int | str | None = None,
1968
- undo: bool | None = None,
1867
+ execution_context: int | str | None = None, undo: bool | None = None
1969
1868
  ):
1970
1869
  """Set offset used for collection instances based on cursor position
1971
1870
 
1972
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1973
1871
  :type execution_context: int | str | None
1974
1872
  :type undo: bool | None
1975
1873
  """
1976
1874
 
1977
1875
  def instance_offset_from_object(
1978
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1979
- execution_context: int | str | None = None,
1980
- undo: bool | None = None,
1876
+ execution_context: int | str | None = None, undo: bool | None = None
1981
1877
  ):
1982
1878
  """Set offset used for collection instances based on the active object position
1983
1879
 
1984
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1985
1880
  :type execution_context: int | str | None
1986
1881
  :type undo: bool | None
1987
1882
  """
1988
1883
 
1989
1884
  def instance_offset_to_cursor(
1990
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1991
- execution_context: int | str | None = None,
1992
- undo: bool | None = None,
1885
+ execution_context: int | str | None = None, undo: bool | None = None
1993
1886
  ):
1994
1887
  """Set cursor position to the offset used for collection instances
1995
1888
 
1996
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1997
1889
  :type execution_context: int | str | None
1998
1890
  :type undo: bool | None
1999
1891
  """
2000
1892
 
2001
1893
  def isolate_type_render(
2002
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2003
- execution_context: int | str | None = None,
2004
- undo: bool | None = None,
1894
+ execution_context: int | str | None = None, undo: bool | None = None
2005
1895
  ):
2006
1896
  """Hide unselected render objects of same type as active by setting the hide render flag
2007
1897
 
2008
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2009
1898
  :type execution_context: int | str | None
2010
1899
  :type undo: bool | None
2011
1900
  """
2012
1901
 
2013
- def join(
2014
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2015
- execution_context: int | str | None = None,
2016
- undo: bool | None = None,
2017
- ):
1902
+ def join(execution_context: int | str | None = None, undo: bool | None = None):
2018
1903
  """Join selected objects into active object
2019
1904
 
2020
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2021
1905
  :type execution_context: int | str | None
2022
1906
  :type undo: bool | None
2023
1907
  """
2024
1908
 
2025
- def join_shapes(
2026
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2027
- execution_context: int | str | None = None,
2028
- undo: bool | None = None,
2029
- ):
1909
+ def join_shapes(execution_context: int | str | None = None, undo: bool | None = None):
2030
1910
  """Copy the current resulting shape of another selected object to this one
2031
1911
 
2032
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2033
1912
  :type execution_context: int | str | None
2034
1913
  :type undo: bool | None
2035
1914
  """
2036
1915
 
2037
- def join_uvs(
2038
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2039
- execution_context: int | str | None = None,
2040
- undo: bool | None = None,
2041
- ):
1916
+ def join_uvs(execution_context: int | str | None = None, undo: bool | None = None):
2042
1917
  """Transfer UV Maps from active to selected objects (needs matching geometry)
2043
1918
 
2044
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2045
1919
  :type execution_context: int | str | None
2046
1920
  :type undo: bool | None
2047
1921
  """
2048
1922
 
2049
1923
  def laplaciandeform_bind(
2050
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2051
1924
  execution_context: int | str | None = None,
2052
1925
  undo: bool | None = None,
1926
+ /,
2053
1927
  *,
2054
1928
  modifier: str = "",
2055
1929
  ):
2056
1930
  """Bind mesh to system in laplacian deform modifier
2057
1931
 
2058
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2059
1932
  :type execution_context: int | str | None
2060
1933
  :type undo: bool | None
2061
1934
  :param modifier: Modifier, Name of the modifier to edit
@@ -2063,9 +1936,9 @@ def laplaciandeform_bind(
2063
1936
  """
2064
1937
 
2065
1938
  def light_add(
2066
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2067
1939
  execution_context: int | str | None = None,
2068
1940
  undo: bool | None = None,
1941
+ /,
2069
1942
  *,
2070
1943
  type: bpy.typing.LightTypeItems | None = "POINT",
2071
1944
  radius: float | None = 1.0,
@@ -2084,7 +1957,6 @@ def light_add(
2084
1957
  ):
2085
1958
  """Add a light object to the scene
2086
1959
 
2087
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2088
1960
  :type execution_context: int | str | None
2089
1961
  :type undo: bool | None
2090
1962
  :param type: Type
@@ -2111,27 +1983,23 @@ def light_add(
2111
1983
  """
2112
1984
 
2113
1985
  def light_linking_blocker_collection_new(
2114
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2115
- execution_context: int | str | None = None,
2116
- undo: bool | None = None,
1986
+ execution_context: int | str | None = None, undo: bool | None = None
2117
1987
  ):
2118
1988
  """Create new light linking collection used by the active emitter
2119
1989
 
2120
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2121
1990
  :type execution_context: int | str | None
2122
1991
  :type undo: bool | None
2123
1992
  """
2124
1993
 
2125
1994
  def light_linking_blockers_link(
2126
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2127
1995
  execution_context: int | str | None = None,
2128
1996
  undo: bool | None = None,
1997
+ /,
2129
1998
  *,
2130
1999
  link_state: typing.Literal["INCLUDE", "EXCLUDE"] | None = "INCLUDE",
2131
2000
  ):
2132
2001
  """Light link selected blockers to the active emitter object
2133
2002
 
2134
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2135
2003
  :type execution_context: int | str | None
2136
2004
  :type undo: bool | None
2137
2005
  :param link_state: Link State, State of the shadow linking
@@ -2145,39 +2013,32 @@ def light_linking_blockers_link(
2145
2013
  """
2146
2014
 
2147
2015
  def light_linking_blockers_select(
2148
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2149
- execution_context: int | str | None = None,
2150
- undo: bool | None = None,
2016
+ execution_context: int | str | None = None, undo: bool | None = None
2151
2017
  ):
2152
2018
  """Select all objects which block light from this emitter
2153
2019
 
2154
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2155
2020
  :type execution_context: int | str | None
2156
2021
  :type undo: bool | None
2157
2022
  """
2158
2023
 
2159
2024
  def light_linking_receiver_collection_new(
2160
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2161
- execution_context: int | str | None = None,
2162
- undo: bool | None = None,
2025
+ execution_context: int | str | None = None, undo: bool | None = None
2163
2026
  ):
2164
2027
  """Create new light linking collection used by the active emitter
2165
2028
 
2166
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2167
2029
  :type execution_context: int | str | None
2168
2030
  :type undo: bool | None
2169
2031
  """
2170
2032
 
2171
2033
  def light_linking_receivers_link(
2172
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2173
2034
  execution_context: int | str | None = None,
2174
2035
  undo: bool | None = None,
2036
+ /,
2175
2037
  *,
2176
2038
  link_state: typing.Literal["INCLUDE", "EXCLUDE"] | None = "INCLUDE",
2177
2039
  ):
2178
2040
  """Light link selected receivers to the active emitter object
2179
2041
 
2180
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2181
2042
  :type execution_context: int | str | None
2182
2043
  :type undo: bool | None
2183
2044
  :param link_state: Link State, State of the light linking
@@ -2191,33 +2052,27 @@ def light_linking_receivers_link(
2191
2052
  """
2192
2053
 
2193
2054
  def light_linking_receivers_select(
2194
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2195
- execution_context: int | str | None = None,
2196
- undo: bool | None = None,
2055
+ execution_context: int | str | None = None, undo: bool | None = None
2197
2056
  ):
2198
2057
  """Select all objects which receive light from this emitter
2199
2058
 
2200
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2201
2059
  :type execution_context: int | str | None
2202
2060
  :type undo: bool | None
2203
2061
  """
2204
2062
 
2205
2063
  def light_linking_unlink_from_collection(
2206
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2207
- execution_context: int | str | None = None,
2208
- undo: bool | None = None,
2064
+ execution_context: int | str | None = None, undo: bool | None = None
2209
2065
  ):
2210
2066
  """Remove this object or collection from the light linking collection
2211
2067
 
2212
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2213
2068
  :type execution_context: int | str | None
2214
2069
  :type undo: bool | None
2215
2070
  """
2216
2071
 
2217
2072
  def lightprobe_add(
2218
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2219
2073
  execution_context: int | str | None = None,
2220
2074
  undo: bool | None = None,
2075
+ /,
2221
2076
  *,
2222
2077
  type: typing.Literal["SPHERE", "PLANE", "VOLUME"] | None = "SPHERE",
2223
2078
  radius: float | None = 1.0,
@@ -2237,7 +2092,6 @@ def lightprobe_add(
2237
2092
  ):
2238
2093
  """Add a light probe object
2239
2094
 
2240
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2241
2095
  :type execution_context: int | str | None
2242
2096
  :type undo: bool | None
2243
2097
  :param type: Type
@@ -2275,15 +2129,14 @@ def lightprobe_add(
2275
2129
  """
2276
2130
 
2277
2131
  def lightprobe_cache_bake(
2278
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2279
2132
  execution_context: int | str | None = None,
2280
2133
  undo: bool | None = None,
2134
+ /,
2281
2135
  *,
2282
2136
  subset: typing.Literal["ALL", "SELECTED", "ACTIVE"] | None = "ALL",
2283
2137
  ):
2284
2138
  """Bake irradiance volume light cache
2285
2139
 
2286
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2287
2140
  :type execution_context: int | str | None
2288
2141
  :type undo: bool | None
2289
2142
  :param subset: Subset, Subset of probes to update
@@ -2300,15 +2153,14 @@ def lightprobe_cache_bake(
2300
2153
  """
2301
2154
 
2302
2155
  def lightprobe_cache_free(
2303
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2304
2156
  execution_context: int | str | None = None,
2305
2157
  undo: bool | None = None,
2158
+ /,
2306
2159
  *,
2307
2160
  subset: typing.Literal["ALL", "SELECTED", "ACTIVE"] | None = "SELECTED",
2308
2161
  ):
2309
2162
  """Delete cached indirect lighting
2310
2163
 
2311
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2312
2164
  :type execution_context: int | str | None
2313
2165
  :type undo: bool | None
2314
2166
  :param subset: Subset, Subset of probes to update
@@ -2325,15 +2177,14 @@ def lightprobe_cache_free(
2325
2177
  """
2326
2178
 
2327
2179
  def lineart_bake_strokes(
2328
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2329
2180
  execution_context: int | str | None = None,
2330
2181
  undo: bool | None = None,
2182
+ /,
2331
2183
  *,
2332
2184
  bake_all: bool | None = False,
2333
2185
  ):
2334
2186
  """Bake Line Art for current Grease Pencil object
2335
2187
 
2336
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2337
2188
  :type execution_context: int | str | None
2338
2189
  :type undo: bool | None
2339
2190
  :param bake_all: Bake All, Bake all Line Art modifiers
@@ -2341,15 +2192,14 @@ def lineart_bake_strokes(
2341
2192
  """
2342
2193
 
2343
2194
  def lineart_clear(
2344
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2345
2195
  execution_context: int | str | None = None,
2346
2196
  undo: bool | None = None,
2197
+ /,
2347
2198
  *,
2348
2199
  clear_all: bool | None = False,
2349
2200
  ):
2350
2201
  """Clear all strokes in current Grease Pencil object
2351
2202
 
2352
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2353
2203
  :type execution_context: int | str | None
2354
2204
  :type undo: bool | None
2355
2205
  :param clear_all: Clear All, Clear all Line Art modifier bakes
@@ -2357,9 +2207,9 @@ def lineart_clear(
2357
2207
  """
2358
2208
 
2359
2209
  def link_to_collection(
2360
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2361
2210
  execution_context: int | str | None = None,
2362
2211
  undo: bool | None = None,
2212
+ /,
2363
2213
  *,
2364
2214
  collection_index: int | None = -1,
2365
2215
  is_new: bool | None = False,
@@ -2367,7 +2217,6 @@ def link_to_collection(
2367
2217
  ):
2368
2218
  """Link objects to a collection
2369
2219
 
2370
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2371
2220
  :type execution_context: int | str | None
2372
2221
  :type undo: bool | None
2373
2222
  :param collection_index: Collection Index, Index of the collection to move to
@@ -2379,15 +2228,14 @@ def link_to_collection(
2379
2228
  """
2380
2229
 
2381
2230
  def location_clear(
2382
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2383
2231
  execution_context: int | str | None = None,
2384
2232
  undo: bool | None = None,
2233
+ /,
2385
2234
  *,
2386
2235
  clear_delta: bool | None = False,
2387
2236
  ):
2388
2237
  """Clear the object's location
2389
2238
 
2390
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2391
2239
  :type execution_context: int | str | None
2392
2240
  :type undo: bool | None
2393
2241
  :param clear_delta: Clear Delta, Clear delta location in addition to clearing the normal location transform
@@ -2395,21 +2243,18 @@ def location_clear(
2395
2243
  """
2396
2244
 
2397
2245
  def make_dupli_face(
2398
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2399
- execution_context: int | str | None = None,
2400
- undo: bool | None = None,
2246
+ execution_context: int | str | None = None, undo: bool | None = None
2401
2247
  ):
2402
2248
  """Convert objects into instanced faces
2403
2249
 
2404
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2405
2250
  :type execution_context: int | str | None
2406
2251
  :type undo: bool | None
2407
2252
  """
2408
2253
 
2409
2254
  def make_links_data(
2410
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2411
2255
  execution_context: int | str | None = None,
2412
2256
  undo: bool | None = None,
2257
+ /,
2413
2258
  *,
2414
2259
  type: typing.Literal[
2415
2260
  "OBDATA",
@@ -2425,7 +2270,6 @@ def make_links_data(
2425
2270
  ):
2426
2271
  """Transfer data from active object to selected objects
2427
2272
 
2428
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2429
2273
  :type execution_context: int | str | None
2430
2274
  :type undo: bool | None
2431
2275
  :param type: Type
@@ -2457,15 +2301,14 @@ def make_links_data(
2457
2301
  """
2458
2302
 
2459
2303
  def make_links_scene(
2460
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2461
2304
  execution_context: int | str | None = None,
2462
2305
  undo: bool | None = None,
2306
+ /,
2463
2307
  *,
2464
2308
  scene: str | None = "",
2465
2309
  ):
2466
2310
  """Link selection to another scene
2467
2311
 
2468
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2469
2312
  :type execution_context: int | str | None
2470
2313
  :type undo: bool | None
2471
2314
  :param scene: Scene
@@ -2473,9 +2316,9 @@ def make_links_scene(
2473
2316
  """
2474
2317
 
2475
2318
  def make_local(
2476
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2477
2319
  execution_context: int | str | None = None,
2478
2320
  undo: bool | None = None,
2321
+ /,
2479
2322
  *,
2480
2323
  type: typing.Literal[
2481
2324
  "SELECT_OBJECT", "SELECT_OBDATA", "SELECT_OBDATA_MATERIAL", "ALL"
@@ -2484,7 +2327,6 @@ def make_local(
2484
2327
  ):
2485
2328
  """Make library linked data-blocks local to this file
2486
2329
 
2487
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2488
2330
  :type execution_context: int | str | None
2489
2331
  :type undo: bool | None
2490
2332
  :param type: Type
@@ -2492,15 +2334,14 @@ def make_local(
2492
2334
  """
2493
2335
 
2494
2336
  def make_override_library(
2495
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2496
2337
  execution_context: int | str | None = None,
2497
2338
  undo: bool | None = None,
2339
+ /,
2498
2340
  *,
2499
2341
  collection: int | None = 0,
2500
2342
  ):
2501
2343
  """Create a local override of the selected linked objects, and their hierarchy of dependencies
2502
2344
 
2503
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2504
2345
  :type execution_context: int | str | None
2505
2346
  :type undo: bool | None
2506
2347
  :param collection: Override Collection, Session UID of the directly linked collection containing the selected object, to make an override from
@@ -2508,9 +2349,9 @@ def make_override_library(
2508
2349
  """
2509
2350
 
2510
2351
  def make_single_user(
2511
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2512
2352
  execution_context: int | str | None = None,
2513
2353
  undo: bool | None = None,
2354
+ /,
2514
2355
  *,
2515
2356
  type: typing.Literal["SELECTED_OBJECTS", "ALL"] | None = "SELECTED_OBJECTS",
2516
2357
  object: bool | None = False,
@@ -2521,7 +2362,6 @@ def make_single_user(
2521
2362
  ):
2522
2363
  """Make linked data local to each object
2523
2364
 
2524
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2525
2365
  :type execution_context: int | str | None
2526
2366
  :type undo: bool | None
2527
2367
  :param type: Type
@@ -2539,63 +2379,50 @@ def make_single_user(
2539
2379
  """
2540
2380
 
2541
2381
  def material_slot_add(
2542
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2543
- execution_context: int | str | None = None,
2544
- undo: bool | None = None,
2382
+ execution_context: int | str | None = None, undo: bool | None = None
2545
2383
  ):
2546
2384
  """Add a new material slot
2547
2385
 
2548
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2549
2386
  :type execution_context: int | str | None
2550
2387
  :type undo: bool | None
2551
2388
  """
2552
2389
 
2553
2390
  def material_slot_assign(
2554
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2555
- execution_context: int | str | None = None,
2556
- undo: bool | None = None,
2391
+ execution_context: int | str | None = None, undo: bool | None = None
2557
2392
  ):
2558
2393
  """Assign active material slot to selection
2559
2394
 
2560
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2561
2395
  :type execution_context: int | str | None
2562
2396
  :type undo: bool | None
2563
2397
  """
2564
2398
 
2565
2399
  def material_slot_copy(
2566
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2567
- execution_context: int | str | None = None,
2568
- undo: bool | None = None,
2400
+ execution_context: int | str | None = None, undo: bool | None = None
2569
2401
  ):
2570
2402
  """Copy material to selected objects
2571
2403
 
2572
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2573
2404
  :type execution_context: int | str | None
2574
2405
  :type undo: bool | None
2575
2406
  """
2576
2407
 
2577
2408
  def material_slot_deselect(
2578
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2579
- execution_context: int | str | None = None,
2580
- undo: bool | None = None,
2409
+ execution_context: int | str | None = None, undo: bool | None = None
2581
2410
  ):
2582
2411
  """Deselect by active material slot
2583
2412
 
2584
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2585
2413
  :type execution_context: int | str | None
2586
2414
  :type undo: bool | None
2587
2415
  """
2588
2416
 
2589
2417
  def material_slot_move(
2590
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2591
2418
  execution_context: int | str | None = None,
2592
2419
  undo: bool | None = None,
2420
+ /,
2593
2421
  *,
2594
2422
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
2595
2423
  ):
2596
2424
  """Move the active material up/down in the list
2597
2425
 
2598
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2599
2426
  :type execution_context: int | str | None
2600
2427
  :type undo: bool | None
2601
2428
  :param direction: Direction, Direction to move the active material towards
@@ -2603,51 +2430,41 @@ def material_slot_move(
2603
2430
  """
2604
2431
 
2605
2432
  def material_slot_remove(
2606
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2607
- execution_context: int | str | None = None,
2608
- undo: bool | None = None,
2433
+ execution_context: int | str | None = None, undo: bool | None = None
2609
2434
  ):
2610
2435
  """Remove the selected material slot
2611
2436
 
2612
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2613
2437
  :type execution_context: int | str | None
2614
2438
  :type undo: bool | None
2615
2439
  """
2616
2440
 
2617
2441
  def material_slot_remove_unused(
2618
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2619
- execution_context: int | str | None = None,
2620
- undo: bool | None = None,
2442
+ execution_context: int | str | None = None, undo: bool | None = None
2621
2443
  ):
2622
2444
  """Remove unused material slots
2623
2445
 
2624
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2625
2446
  :type execution_context: int | str | None
2626
2447
  :type undo: bool | None
2627
2448
  """
2628
2449
 
2629
2450
  def material_slot_select(
2630
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2631
- execution_context: int | str | None = None,
2632
- undo: bool | None = None,
2451
+ execution_context: int | str | None = None, undo: bool | None = None
2633
2452
  ):
2634
2453
  """Select by active material slot
2635
2454
 
2636
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2637
2455
  :type execution_context: int | str | None
2638
2456
  :type undo: bool | None
2639
2457
  """
2640
2458
 
2641
2459
  def meshdeform_bind(
2642
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2643
2460
  execution_context: int | str | None = None,
2644
2461
  undo: bool | None = None,
2462
+ /,
2645
2463
  *,
2646
2464
  modifier: str = "",
2647
2465
  ):
2648
2466
  """Bind mesh to cage in mesh deform modifier
2649
2467
 
2650
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2651
2468
  :type execution_context: int | str | None
2652
2469
  :type undo: bool | None
2653
2470
  :param modifier: Modifier, Name of the modifier to edit
@@ -2655,9 +2472,9 @@ def meshdeform_bind(
2655
2472
  """
2656
2473
 
2657
2474
  def metaball_add(
2658
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2659
2475
  execution_context: int | str | None = None,
2660
2476
  undo: bool | None = None,
2477
+ /,
2661
2478
  *,
2662
2479
  type: bpy.typing.MetaelemTypeItems | None = "BALL",
2663
2480
  radius: float | None = 2.0,
@@ -2677,7 +2494,6 @@ def metaball_add(
2677
2494
  ):
2678
2495
  """Add an metaball object to the scene
2679
2496
 
2680
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2681
2497
  :type execution_context: int | str | None
2682
2498
  :type undo: bool | None
2683
2499
  :param type: Primitive
@@ -2706,16 +2522,15 @@ def metaball_add(
2706
2522
  """
2707
2523
 
2708
2524
  def mode_set(
2709
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2710
2525
  execution_context: int | str | None = None,
2711
2526
  undo: bool | None = None,
2527
+ /,
2712
2528
  *,
2713
2529
  mode: bpy.typing.ObjectModeItems | None = "OBJECT",
2714
2530
  toggle: bool | None = False,
2715
2531
  ):
2716
2532
  """Sets the object interaction mode
2717
2533
 
2718
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2719
2534
  :type execution_context: int | str | None
2720
2535
  :type undo: bool | None
2721
2536
  :param mode: Mode
@@ -2725,9 +2540,9 @@ def mode_set(
2725
2540
  """
2726
2541
 
2727
2542
  def mode_set_with_submode(
2728
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2729
2543
  execution_context: int | str | None = None,
2730
2544
  undo: bool | None = None,
2545
+ /,
2731
2546
  *,
2732
2547
  mode: bpy.typing.ObjectModeItems | None = "OBJECT",
2733
2548
  toggle: bool | None = False,
@@ -2735,7 +2550,6 @@ def mode_set_with_submode(
2735
2550
  ):
2736
2551
  """Sets the object interaction mode
2737
2552
 
2738
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2739
2553
  :type execution_context: int | str | None
2740
2554
  :type undo: bool | None
2741
2555
  :param mode: Mode
@@ -2747,16 +2561,15 @@ def mode_set_with_submode(
2747
2561
  """
2748
2562
 
2749
2563
  def modifier_add(
2750
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2751
2564
  execution_context: int | str | None = None,
2752
2565
  undo: bool | None = None,
2566
+ /,
2753
2567
  *,
2754
2568
  type: bpy.typing.ObjectModifierTypeItems | None = "SUBSURF",
2755
2569
  use_selected_objects: bool | None = False,
2756
2570
  ):
2757
2571
  """Add a procedural operation/effect to the active object
2758
2572
 
2759
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2760
2573
  :type execution_context: int | str | None
2761
2574
  :type undo: bool | None
2762
2575
  :param type: Type
@@ -2766,9 +2579,9 @@ def modifier_add(
2766
2579
  """
2767
2580
 
2768
2581
  def modifier_add_node_group(
2769
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2770
2582
  execution_context: int | str | None = None,
2771
2583
  undo: bool | None = None,
2584
+ /,
2772
2585
  *,
2773
2586
  asset_library_type: bpy.typing.AssetLibraryTypeItems | None = "LOCAL",
2774
2587
  asset_library_identifier: str = "",
@@ -2778,7 +2591,6 @@ def modifier_add_node_group(
2778
2591
  ):
2779
2592
  """Add a procedural operation/effect to the active object
2780
2593
 
2781
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2782
2594
  :type execution_context: int | str | None
2783
2595
  :type undo: bool | None
2784
2596
  :param asset_library_type: Asset Library Type
@@ -2794,9 +2606,9 @@ def modifier_add_node_group(
2794
2606
  """
2795
2607
 
2796
2608
  def modifier_apply(
2797
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2798
2609
  execution_context: int | str | None = None,
2799
2610
  undo: bool | None = None,
2611
+ /,
2800
2612
  *,
2801
2613
  modifier: str = "",
2802
2614
  report: bool | None = False,
@@ -2807,7 +2619,6 @@ def modifier_apply(
2807
2619
  ):
2808
2620
  """Apply modifier and remove from the stack
2809
2621
 
2810
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2811
2622
  :type execution_context: int | str | None
2812
2623
  :type undo: bool | None
2813
2624
  :param modifier: Modifier, Name of the modifier to edit
@@ -2825,9 +2636,9 @@ def modifier_apply(
2825
2636
  """
2826
2637
 
2827
2638
  def modifier_apply_as_shapekey(
2828
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2829
2639
  execution_context: int | str | None = None,
2830
2640
  undo: bool | None = None,
2641
+ /,
2831
2642
  *,
2832
2643
  keep_modifier: bool | None = False,
2833
2644
  modifier: str = "",
@@ -2836,7 +2647,6 @@ def modifier_apply_as_shapekey(
2836
2647
  ):
2837
2648
  """Apply modifier as a new shape key and remove from the stack
2838
2649
 
2839
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2840
2650
  :type execution_context: int | str | None
2841
2651
  :type undo: bool | None
2842
2652
  :param keep_modifier: Keep Modifier, Do not remove the modifier from stack
@@ -2850,15 +2660,14 @@ def modifier_apply_as_shapekey(
2850
2660
  """
2851
2661
 
2852
2662
  def modifier_convert(
2853
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2854
2663
  execution_context: int | str | None = None,
2855
2664
  undo: bool | None = None,
2665
+ /,
2856
2666
  *,
2857
2667
  modifier: str = "",
2858
2668
  ):
2859
2669
  """Convert particles to a mesh object
2860
2670
 
2861
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2862
2671
  :type execution_context: int | str | None
2863
2672
  :type undo: bool | None
2864
2673
  :param modifier: Modifier, Name of the modifier to edit
@@ -2866,16 +2675,15 @@ def modifier_convert(
2866
2675
  """
2867
2676
 
2868
2677
  def modifier_copy(
2869
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2870
2678
  execution_context: int | str | None = None,
2871
2679
  undo: bool | None = None,
2680
+ /,
2872
2681
  *,
2873
2682
  modifier: str = "",
2874
2683
  use_selected_objects: bool | None = False,
2875
2684
  ):
2876
2685
  """Duplicate modifier at the same position in the stack
2877
2686
 
2878
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2879
2687
  :type execution_context: int | str | None
2880
2688
  :type undo: bool | None
2881
2689
  :param modifier: Modifier, Name of the modifier to edit
@@ -2885,15 +2693,14 @@ def modifier_copy(
2885
2693
  """
2886
2694
 
2887
2695
  def modifier_copy_to_selected(
2888
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2889
2696
  execution_context: int | str | None = None,
2890
2697
  undo: bool | None = None,
2698
+ /,
2891
2699
  *,
2892
2700
  modifier: str = "",
2893
2701
  ):
2894
2702
  """Copy the modifier from the active object to all selected objects
2895
2703
 
2896
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2897
2704
  :type execution_context: int | str | None
2898
2705
  :type undo: bool | None
2899
2706
  :param modifier: Modifier, Name of the modifier to edit
@@ -2901,15 +2708,14 @@ def modifier_copy_to_selected(
2901
2708
  """
2902
2709
 
2903
2710
  def modifier_move_down(
2904
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2905
2711
  execution_context: int | str | None = None,
2906
2712
  undo: bool | None = None,
2713
+ /,
2907
2714
  *,
2908
2715
  modifier: str = "",
2909
2716
  ):
2910
2717
  """Move modifier down in the stack
2911
2718
 
2912
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2913
2719
  :type execution_context: int | str | None
2914
2720
  :type undo: bool | None
2915
2721
  :param modifier: Modifier, Name of the modifier to edit
@@ -2917,9 +2723,9 @@ def modifier_move_down(
2917
2723
  """
2918
2724
 
2919
2725
  def modifier_move_to_index(
2920
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2921
2726
  execution_context: int | str | None = None,
2922
2727
  undo: bool | None = None,
2728
+ /,
2923
2729
  *,
2924
2730
  modifier: str = "",
2925
2731
  index: int | None = 0,
@@ -2927,7 +2733,6 @@ def modifier_move_to_index(
2927
2733
  ):
2928
2734
  """Change the modifier's index in the stack so it evaluates after the set number of others
2929
2735
 
2930
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2931
2736
  :type execution_context: int | str | None
2932
2737
  :type undo: bool | None
2933
2738
  :param modifier: Modifier, Name of the modifier to edit
@@ -2939,15 +2744,14 @@ def modifier_move_to_index(
2939
2744
  """
2940
2745
 
2941
2746
  def modifier_move_up(
2942
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2943
2747
  execution_context: int | str | None = None,
2944
2748
  undo: bool | None = None,
2749
+ /,
2945
2750
  *,
2946
2751
  modifier: str = "",
2947
2752
  ):
2948
2753
  """Move modifier up in the stack
2949
2754
 
2950
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2951
2755
  :type execution_context: int | str | None
2952
2756
  :type undo: bool | None
2953
2757
  :param modifier: Modifier, Name of the modifier to edit
@@ -2955,9 +2759,9 @@ def modifier_move_up(
2955
2759
  """
2956
2760
 
2957
2761
  def modifier_remove(
2958
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2959
2762
  execution_context: int | str | None = None,
2960
2763
  undo: bool | None = None,
2764
+ /,
2961
2765
  *,
2962
2766
  modifier: str = "",
2963
2767
  report: bool | None = False,
@@ -2965,7 +2769,6 @@ def modifier_remove(
2965
2769
  ):
2966
2770
  """Remove a modifier from the active object
2967
2771
 
2968
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2969
2772
  :type execution_context: int | str | None
2970
2773
  :type undo: bool | None
2971
2774
  :param modifier: Modifier, Name of the modifier to edit
@@ -2977,15 +2780,14 @@ def modifier_remove(
2977
2780
  """
2978
2781
 
2979
2782
  def modifier_set_active(
2980
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2981
2783
  execution_context: int | str | None = None,
2982
2784
  undo: bool | None = None,
2785
+ /,
2983
2786
  *,
2984
2787
  modifier: str = "",
2985
2788
  ):
2986
2789
  """Activate the modifier to use as the context
2987
2790
 
2988
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2989
2791
  :type execution_context: int | str | None
2990
2792
  :type undo: bool | None
2991
2793
  :param modifier: Modifier, Name of the modifier to edit
@@ -2993,33 +2795,27 @@ def modifier_set_active(
2993
2795
  """
2994
2796
 
2995
2797
  def modifiers_clear(
2996
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2997
- execution_context: int | str | None = None,
2998
- undo: bool | None = None,
2798
+ execution_context: int | str | None = None, undo: bool | None = None
2999
2799
  ):
3000
2800
  """Clear all modifiers from the selected objects
3001
2801
 
3002
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3003
2802
  :type execution_context: int | str | None
3004
2803
  :type undo: bool | None
3005
2804
  """
3006
2805
 
3007
2806
  def modifiers_copy_to_selected(
3008
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3009
- execution_context: int | str | None = None,
3010
- undo: bool | None = None,
2807
+ execution_context: int | str | None = None, undo: bool | None = None
3011
2808
  ):
3012
2809
  """Copy modifiers to other selected objects
3013
2810
 
3014
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3015
2811
  :type execution_context: int | str | None
3016
2812
  :type undo: bool | None
3017
2813
  """
3018
2814
 
3019
2815
  def move_to_collection(
3020
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3021
2816
  execution_context: int | str | None = None,
3022
2817
  undo: bool | None = None,
2818
+ /,
3023
2819
  *,
3024
2820
  collection_index: int | None = -1,
3025
2821
  is_new: bool | None = False,
@@ -3027,7 +2823,6 @@ def move_to_collection(
3027
2823
  ):
3028
2824
  """Move objects to a collection
3029
2825
 
3030
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3031
2826
  :type execution_context: int | str | None
3032
2827
  :type undo: bool | None
3033
2828
  :param collection_index: Collection Index, Index of the collection to move to
@@ -3039,15 +2834,14 @@ def move_to_collection(
3039
2834
  """
3040
2835
 
3041
2836
  def multires_base_apply(
3042
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3043
2837
  execution_context: int | str | None = None,
3044
2838
  undo: bool | None = None,
2839
+ /,
3045
2840
  *,
3046
2841
  modifier: str = "",
3047
2842
  ):
3048
2843
  """Modify the base mesh to conform to the displaced mesh
3049
2844
 
3050
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3051
2845
  :type execution_context: int | str | None
3052
2846
  :type undo: bool | None
3053
2847
  :param modifier: Modifier, Name of the modifier to edit
@@ -3055,21 +2849,18 @@ def multires_base_apply(
3055
2849
  """
3056
2850
 
3057
2851
  def multires_external_pack(
3058
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3059
- execution_context: int | str | None = None,
3060
- undo: bool | None = None,
2852
+ execution_context: int | str | None = None, undo: bool | None = None
3061
2853
  ):
3062
2854
  """Pack displacements from an external file
3063
2855
 
3064
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3065
2856
  :type execution_context: int | str | None
3066
2857
  :type undo: bool | None
3067
2858
  """
3068
2859
 
3069
2860
  def multires_external_save(
3070
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3071
2861
  execution_context: int | str | None = None,
3072
2862
  undo: bool | None = None,
2863
+ /,
3073
2864
  *,
3074
2865
  filepath: str = "",
3075
2866
  hide_props_region: bool | None = True,
@@ -3102,7 +2893,6 @@ def multires_external_save(
3102
2893
  ):
3103
2894
  """Save displacements to an external file
3104
2895
 
3105
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3106
2896
  :type execution_context: int | str | None
3107
2897
  :type undo: bool | None
3108
2898
  :param filepath: File Path, Path to file
@@ -3170,15 +2960,14 @@ def multires_external_save(
3170
2960
  """
3171
2961
 
3172
2962
  def multires_higher_levels_delete(
3173
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3174
2963
  execution_context: int | str | None = None,
3175
2964
  undo: bool | None = None,
2965
+ /,
3176
2966
  *,
3177
2967
  modifier: str = "",
3178
2968
  ):
3179
2969
  """Deletes the higher resolution mesh, potential loss of detail
3180
2970
 
3181
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3182
2971
  :type execution_context: int | str | None
3183
2972
  :type undo: bool | None
3184
2973
  :param modifier: Modifier, Name of the modifier to edit
@@ -3186,15 +2975,14 @@ def multires_higher_levels_delete(
3186
2975
  """
3187
2976
 
3188
2977
  def multires_rebuild_subdiv(
3189
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3190
2978
  execution_context: int | str | None = None,
3191
2979
  undo: bool | None = None,
2980
+ /,
3192
2981
  *,
3193
2982
  modifier: str = "",
3194
2983
  ):
3195
2984
  """Rebuilds all possible subdivisions levels to generate a lower resolution base mesh
3196
2985
 
3197
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3198
2986
  :type execution_context: int | str | None
3199
2987
  :type undo: bool | None
3200
2988
  :param modifier: Modifier, Name of the modifier to edit
@@ -3202,15 +2990,14 @@ def multires_rebuild_subdiv(
3202
2990
  """
3203
2991
 
3204
2992
  def multires_reshape(
3205
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3206
2993
  execution_context: int | str | None = None,
3207
2994
  undo: bool | None = None,
2995
+ /,
3208
2996
  *,
3209
2997
  modifier: str = "",
3210
2998
  ):
3211
2999
  """Copy vertex coordinates from other object
3212
3000
 
3213
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3214
3001
  :type execution_context: int | str | None
3215
3002
  :type undo: bool | None
3216
3003
  :param modifier: Modifier, Name of the modifier to edit
@@ -3218,16 +3005,15 @@ def multires_reshape(
3218
3005
  """
3219
3006
 
3220
3007
  def multires_subdivide(
3221
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3222
3008
  execution_context: int | str | None = None,
3223
3009
  undo: bool | None = None,
3010
+ /,
3224
3011
  *,
3225
3012
  modifier: str = "",
3226
3013
  mode: typing.Literal["CATMULL_CLARK", "SIMPLE", "LINEAR"] | None = "CATMULL_CLARK",
3227
3014
  ):
3228
3015
  """Add a new level of subdivision
3229
3016
 
3230
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3231
3017
  :type execution_context: int | str | None
3232
3018
  :type undo: bool | None
3233
3019
  :param modifier: Modifier, Name of the modifier to edit
@@ -3246,15 +3032,14 @@ def multires_subdivide(
3246
3032
  """
3247
3033
 
3248
3034
  def multires_unsubdivide(
3249
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3250
3035
  execution_context: int | str | None = None,
3251
3036
  undo: bool | None = None,
3037
+ /,
3252
3038
  *,
3253
3039
  modifier: str = "",
3254
3040
  ):
3255
3041
  """Rebuild a lower subdivision level of the current base mesh
3256
3042
 
3257
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3258
3043
  :type execution_context: int | str | None
3259
3044
  :type undo: bool | None
3260
3045
  :param modifier: Modifier, Name of the modifier to edit
@@ -3262,16 +3047,15 @@ def multires_unsubdivide(
3262
3047
  """
3263
3048
 
3264
3049
  def ocean_bake(
3265
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3266
3050
  execution_context: int | str | None = None,
3267
3051
  undo: bool | None = None,
3052
+ /,
3268
3053
  *,
3269
3054
  modifier: str = "",
3270
3055
  free: bool | None = False,
3271
3056
  ):
3272
3057
  """Bake an image sequence of ocean data
3273
3058
 
3274
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3275
3059
  :type execution_context: int | str | None
3276
3060
  :type undo: bool | None
3277
3061
  :param modifier: Modifier, Name of the modifier to edit
@@ -3280,22 +3064,17 @@ def ocean_bake(
3280
3064
  :type free: bool | None
3281
3065
  """
3282
3066
 
3283
- def origin_clear(
3284
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3285
- execution_context: int | str | None = None,
3286
- undo: bool | None = None,
3287
- ):
3067
+ def origin_clear(execution_context: int | str | None = None, undo: bool | None = None):
3288
3068
  """Clear the object's origin
3289
3069
 
3290
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3291
3070
  :type execution_context: int | str | None
3292
3071
  :type undo: bool | None
3293
3072
  """
3294
3073
 
3295
3074
  def origin_set(
3296
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3297
3075
  execution_context: int | str | None = None,
3298
3076
  undo: bool | None = None,
3077
+ /,
3299
3078
  *,
3300
3079
  type: typing.Literal[
3301
3080
  "GEOMETRY_ORIGIN",
@@ -3309,7 +3088,6 @@ def origin_set(
3309
3088
  ):
3310
3089
  """Set the object's origin, by either moving the data, or set to center of data, or use 3D cursor
3311
3090
 
3312
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3313
3091
  :type execution_context: int | str | None
3314
3092
  :type undo: bool | None
3315
3093
  :param type: Type
@@ -3334,16 +3112,15 @@ def origin_set(
3334
3112
  """
3335
3113
 
3336
3114
  def parent_clear(
3337
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3338
3115
  execution_context: int | str | None = None,
3339
3116
  undo: bool | None = None,
3117
+ /,
3340
3118
  *,
3341
3119
  type: typing.Literal["CLEAR", "CLEAR_KEEP_TRANSFORM", "CLEAR_INVERSE"]
3342
3120
  | None = "CLEAR",
3343
3121
  ):
3344
3122
  """Clear the object's parenting
3345
3123
 
3346
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3347
3124
  :type execution_context: int | str | None
3348
3125
  :type undo: bool | None
3349
3126
  :param type: Type
@@ -3360,27 +3137,23 @@ def parent_clear(
3360
3137
  """
3361
3138
 
3362
3139
  def parent_inverse_apply(
3363
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3364
- execution_context: int | str | None = None,
3365
- undo: bool | None = None,
3140
+ execution_context: int | str | None = None, undo: bool | None = None
3366
3141
  ):
3367
3142
  """Apply the object's parent inverse to its data
3368
3143
 
3369
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3370
3144
  :type execution_context: int | str | None
3371
3145
  :type undo: bool | None
3372
3146
  """
3373
3147
 
3374
3148
  def parent_no_inverse_set(
3375
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3376
3149
  execution_context: int | str | None = None,
3377
3150
  undo: bool | None = None,
3151
+ /,
3378
3152
  *,
3379
3153
  keep_transform: bool | None = False,
3380
3154
  ):
3381
3155
  """Set the object's parenting without setting the inverse parent correction
3382
3156
 
3383
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3384
3157
  :type execution_context: int | str | None
3385
3158
  :type undo: bool | None
3386
3159
  :param keep_transform: Keep Transform, Preserve the world transform throughout parenting
@@ -3388,9 +3161,9 @@ def parent_no_inverse_set(
3388
3161
  """
3389
3162
 
3390
3163
  def parent_set(
3391
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3392
3164
  execution_context: int | str | None = None,
3393
3165
  undo: bool | None = None,
3166
+ /,
3394
3167
  *,
3395
3168
  type: typing.Literal[
3396
3169
  "OBJECT",
@@ -3413,7 +3186,6 @@ def parent_set(
3413
3186
  ):
3414
3187
  """Set the object's parenting
3415
3188
 
3416
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3417
3189
  :type execution_context: int | str | None
3418
3190
  :type undo: bool | None
3419
3191
  :param type: Type
@@ -3425,40 +3197,33 @@ def parent_set(
3425
3197
  """
3426
3198
 
3427
3199
  def particle_system_add(
3428
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3429
- execution_context: int | str | None = None,
3430
- undo: bool | None = None,
3200
+ execution_context: int | str | None = None, undo: bool | None = None
3431
3201
  ):
3432
3202
  """Add a particle system
3433
3203
 
3434
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3435
3204
  :type execution_context: int | str | None
3436
3205
  :type undo: bool | None
3437
3206
  """
3438
3207
 
3439
3208
  def particle_system_remove(
3440
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3441
- execution_context: int | str | None = None,
3442
- undo: bool | None = None,
3209
+ execution_context: int | str | None = None, undo: bool | None = None
3443
3210
  ):
3444
3211
  """Remove the selected particle system
3445
3212
 
3446
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3447
3213
  :type execution_context: int | str | None
3448
3214
  :type undo: bool | None
3449
3215
  """
3450
3216
 
3451
3217
  def paths_calculate(
3452
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3453
3218
  execution_context: int | str | None = None,
3454
3219
  undo: bool | None = None,
3220
+ /,
3455
3221
  *,
3456
3222
  display_type: bpy.typing.MotionpathDisplayTypeItems | None = "RANGE",
3457
3223
  range: bpy.typing.MotionpathRangeItems | None = "SCENE",
3458
3224
  ):
3459
3225
  """Generate motion paths for the selected objects
3460
3226
 
3461
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3462
3227
  :type execution_context: int | str | None
3463
3228
  :type undo: bool | None
3464
3229
  :param display_type: Display type
@@ -3468,49 +3233,40 @@ def paths_calculate(
3468
3233
  """
3469
3234
 
3470
3235
  def paths_clear(
3471
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3472
3236
  execution_context: int | str | None = None,
3473
3237
  undo: bool | None = None,
3238
+ /,
3474
3239
  *,
3475
3240
  only_selected: bool | None = False,
3476
3241
  ):
3477
3242
  """Undocumented, consider contributing.
3478
3243
 
3479
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3480
3244
  :type execution_context: int | str | None
3481
3245
  :type undo: bool | None
3482
3246
  :param only_selected: Only Selected, Only clear motion paths of selected objects
3483
3247
  :type only_selected: bool | None
3484
3248
  """
3485
3249
 
3486
- def paths_update(
3487
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3488
- execution_context: int | str | None = None,
3489
- undo: bool | None = None,
3490
- ):
3250
+ def paths_update(execution_context: int | str | None = None, undo: bool | None = None):
3491
3251
  """Recalculate motion paths for selected objects
3492
3252
 
3493
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3494
3253
  :type execution_context: int | str | None
3495
3254
  :type undo: bool | None
3496
3255
  """
3497
3256
 
3498
3257
  def paths_update_visible(
3499
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3500
- execution_context: int | str | None = None,
3501
- undo: bool | None = None,
3258
+ execution_context: int | str | None = None, undo: bool | None = None
3502
3259
  ):
3503
3260
  """Recalculate all visible motion paths for objects and poses
3504
3261
 
3505
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3506
3262
  :type execution_context: int | str | None
3507
3263
  :type undo: bool | None
3508
3264
  """
3509
3265
 
3510
3266
  def pointcloud_add(
3511
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3512
3267
  execution_context: int | str | None = None,
3513
3268
  undo: bool | None = None,
3269
+ /,
3514
3270
  *,
3515
3271
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
3516
3272
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -3527,7 +3283,6 @@ def pointcloud_add(
3527
3283
  ):
3528
3284
  """Add a point cloud object to the scene
3529
3285
 
3530
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3531
3286
  :type execution_context: int | str | None
3532
3287
  :type undo: bool | None
3533
3288
  :param align: Align, The alignment of the new object
@@ -3550,21 +3305,18 @@ def pointcloud_add(
3550
3305
  """
3551
3306
 
3552
3307
  def posemode_toggle(
3553
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3554
- execution_context: int | str | None = None,
3555
- undo: bool | None = None,
3308
+ execution_context: int | str | None = None, undo: bool | None = None
3556
3309
  ):
3557
3310
  """Enable or disable posing/selecting bones
3558
3311
 
3559
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3560
3312
  :type execution_context: int | str | None
3561
3313
  :type undo: bool | None
3562
3314
  """
3563
3315
 
3564
3316
  def quadriflow_remesh(
3565
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3566
3317
  execution_context: int | str | None = None,
3567
3318
  undo: bool | None = None,
3319
+ /,
3568
3320
  *,
3569
3321
  use_mesh_symmetry: bool | None = True,
3570
3322
  use_preserve_sharp: bool | None = False,
@@ -3580,7 +3332,6 @@ def quadriflow_remesh(
3580
3332
  ):
3581
3333
  """Create a new quad based mesh using the surface data of the current mesh. All data layers will be lost
3582
3334
 
3583
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3584
3335
  :type execution_context: int | str | None
3585
3336
  :type undo: bool | None
3586
3337
  :param use_mesh_symmetry: Use Mesh Symmetry, Generates a symmetrical mesh using the mesh symmetry configuration
@@ -3617,9 +3368,9 @@ def quadriflow_remesh(
3617
3368
  """
3618
3369
 
3619
3370
  def quick_explode(
3620
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3621
3371
  execution_context: int | str | None = None,
3622
3372
  undo: bool | None = None,
3373
+ /,
3623
3374
  *,
3624
3375
  style: typing.Literal["EXPLODE", "BLEND"] | None = "EXPLODE",
3625
3376
  amount: int | None = 100,
@@ -3631,7 +3382,6 @@ def quick_explode(
3631
3382
  ):
3632
3383
  """Make selected objects explode
3633
3384
 
3634
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3635
3385
  :type execution_context: int | str | None
3636
3386
  :type undo: bool | None
3637
3387
  :param style: Explode Style
@@ -3651,9 +3401,9 @@ def quick_explode(
3651
3401
  """
3652
3402
 
3653
3403
  def quick_fur(
3654
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3655
3404
  execution_context: int | str | None = None,
3656
3405
  undo: bool | None = None,
3406
+ /,
3657
3407
  *,
3658
3408
  density: typing.Literal["LOW", "MEDIUM", "HIGH"] | None = "MEDIUM",
3659
3409
  length: float | None = 0.1,
@@ -3665,7 +3415,6 @@ def quick_fur(
3665
3415
  ):
3666
3416
  """Add a fur setup to the selected objects
3667
3417
 
3668
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3669
3418
  :type execution_context: int | str | None
3670
3419
  :type undo: bool | None
3671
3420
  :param density: Density
@@ -3685,15 +3434,14 @@ def quick_fur(
3685
3434
  """
3686
3435
 
3687
3436
  def quick_liquid(
3688
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3689
3437
  execution_context: int | str | None = None,
3690
3438
  undo: bool | None = None,
3439
+ /,
3691
3440
  *,
3692
3441
  show_flows: bool | None = False,
3693
3442
  ):
3694
3443
  """Make selected objects liquid
3695
3444
 
3696
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3697
3445
  :type execution_context: int | str | None
3698
3446
  :type undo: bool | None
3699
3447
  :param show_flows: Render Liquid Objects, Keep the liquid objects visible during rendering
@@ -3701,16 +3449,15 @@ def quick_liquid(
3701
3449
  """
3702
3450
 
3703
3451
  def quick_smoke(
3704
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3705
3452
  execution_context: int | str | None = None,
3706
3453
  undo: bool | None = None,
3454
+ /,
3707
3455
  *,
3708
3456
  style: typing.Literal["SMOKE", "FIRE", "BOTH"] | None = "SMOKE",
3709
3457
  show_flows: bool | None = False,
3710
3458
  ):
3711
3459
  """Use selected objects as smoke emitters
3712
3460
 
3713
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3714
3461
  :type execution_context: int | str | None
3715
3462
  :type undo: bool | None
3716
3463
  :param style: Smoke Style
@@ -3720,9 +3467,9 @@ def quick_smoke(
3720
3467
  """
3721
3468
 
3722
3469
  def randomize_transform(
3723
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3724
3470
  execution_context: int | str | None = None,
3725
3471
  undo: bool | None = None,
3472
+ /,
3726
3473
  *,
3727
3474
  random_seed: int | None = 0,
3728
3475
  use_delta: bool | None = False,
@@ -3736,7 +3483,6 @@ def randomize_transform(
3736
3483
  ):
3737
3484
  """Randomize objects location, rotation, and scale
3738
3485
 
3739
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3740
3486
  :type execution_context: int | str | None
3741
3487
  :type undo: bool | None
3742
3488
  :param random_seed: Random Seed, Seed value for the random generator
@@ -3760,27 +3506,23 @@ def randomize_transform(
3760
3506
  """
3761
3507
 
3762
3508
  def reset_override_library(
3763
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3764
- execution_context: int | str | None = None,
3765
- undo: bool | None = None,
3509
+ execution_context: int | str | None = None, undo: bool | None = None
3766
3510
  ):
3767
3511
  """Reset the selected local overrides to their linked references values
3768
3512
 
3769
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3770
3513
  :type execution_context: int | str | None
3771
3514
  :type undo: bool | None
3772
3515
  """
3773
3516
 
3774
3517
  def rotation_clear(
3775
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3776
3518
  execution_context: int | str | None = None,
3777
3519
  undo: bool | None = None,
3520
+ /,
3778
3521
  *,
3779
3522
  clear_delta: bool | None = False,
3780
3523
  ):
3781
3524
  """Clear the object's rotation
3782
3525
 
3783
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3784
3526
  :type execution_context: int | str | None
3785
3527
  :type undo: bool | None
3786
3528
  :param clear_delta: Clear Delta, Clear delta rotation in addition to clearing the normal rotation transform
@@ -3788,15 +3530,14 @@ def rotation_clear(
3788
3530
  """
3789
3531
 
3790
3532
  def scale_clear(
3791
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3792
3533
  execution_context: int | str | None = None,
3793
3534
  undo: bool | None = None,
3535
+ /,
3794
3536
  *,
3795
3537
  clear_delta: bool | None = False,
3796
3538
  ):
3797
3539
  """Clear the object's scale
3798
3540
 
3799
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3800
3541
  :type execution_context: int | str | None
3801
3542
  :type undo: bool | None
3802
3543
  :param clear_delta: Clear Delta, Clear delta scale in addition to clearing the normal scale transform
@@ -3804,15 +3545,14 @@ def scale_clear(
3804
3545
  """
3805
3546
 
3806
3547
  def select_all(
3807
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3808
3548
  execution_context: int | str | None = None,
3809
3549
  undo: bool | None = None,
3550
+ /,
3810
3551
  *,
3811
3552
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
3812
3553
  ):
3813
3554
  """Change selection of all visible objects in scene
3814
3555
 
3815
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3816
3556
  :type execution_context: int | str | None
3817
3557
  :type undo: bool | None
3818
3558
  :param action: Action, Selection action to execute
@@ -3832,16 +3572,15 @@ def select_all(
3832
3572
  """
3833
3573
 
3834
3574
  def select_by_type(
3835
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3836
3575
  execution_context: int | str | None = None,
3837
3576
  undo: bool | None = None,
3577
+ /,
3838
3578
  *,
3839
3579
  extend: bool | None = False,
3840
3580
  type: bpy.typing.ObjectTypeItems | None = "MESH",
3841
3581
  ):
3842
3582
  """Select all visible objects that are of a type
3843
3583
 
3844
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3845
3584
  :type execution_context: int | str | None
3846
3585
  :type undo: bool | None
3847
3586
  :param extend: Extend, Extend selection instead of deselecting everything first
@@ -3851,15 +3590,14 @@ def select_by_type(
3851
3590
  """
3852
3591
 
3853
3592
  def select_camera(
3854
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3855
3593
  execution_context: int | str | None = None,
3856
3594
  undo: bool | None = None,
3595
+ /,
3857
3596
  *,
3858
3597
  extend: bool | None = False,
3859
3598
  ):
3860
3599
  """Select the active camera
3861
3600
 
3862
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3863
3601
  :type execution_context: int | str | None
3864
3602
  :type undo: bool | None
3865
3603
  :param extend: Extend, Extend the selection
@@ -3867,9 +3605,9 @@ def select_camera(
3867
3605
  """
3868
3606
 
3869
3607
  def select_grouped(
3870
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3871
3608
  execution_context: int | str | None = None,
3872
3609
  undo: bool | None = None,
3610
+ /,
3873
3611
  *,
3874
3612
  extend: bool | None = False,
3875
3613
  type: typing.Literal[
@@ -3889,7 +3627,6 @@ def select_grouped(
3889
3627
  ):
3890
3628
  """Select all visible objects grouped by various properties
3891
3629
 
3892
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3893
3630
  :type execution_context: int | str | None
3894
3631
  :type undo: bool | None
3895
3632
  :param extend: Extend, Extend selection instead of deselecting everything first
@@ -3932,16 +3669,15 @@ def select_grouped(
3932
3669
  """
3933
3670
 
3934
3671
  def select_hierarchy(
3935
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3936
3672
  execution_context: int | str | None = None,
3937
3673
  undo: bool | None = None,
3674
+ /,
3938
3675
  *,
3939
3676
  direction: typing.Literal["PARENT", "CHILD"] | None = "PARENT",
3940
3677
  extend: bool | None = False,
3941
3678
  ):
3942
3679
  """Select object relative to the active object's position in the hierarchy
3943
3680
 
3944
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3945
3681
  :type execution_context: int | str | None
3946
3682
  :type undo: bool | None
3947
3683
  :param direction: Direction, Direction to select in the hierarchy
@@ -3950,22 +3686,17 @@ def select_hierarchy(
3950
3686
  :type extend: bool | None
3951
3687
  """
3952
3688
 
3953
- def select_less(
3954
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3955
- execution_context: int | str | None = None,
3956
- undo: bool | None = None,
3957
- ):
3689
+ def select_less(execution_context: int | str | None = None, undo: bool | None = None):
3958
3690
  """Deselect objects at the boundaries of parent/child relationships
3959
3691
 
3960
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3961
3692
  :type execution_context: int | str | None
3962
3693
  :type undo: bool | None
3963
3694
  """
3964
3695
 
3965
3696
  def select_linked(
3966
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3967
3697
  execution_context: int | str | None = None,
3968
3698
  undo: bool | None = None,
3699
+ /,
3969
3700
  *,
3970
3701
  extend: bool | None = False,
3971
3702
  type: typing.Literal[
@@ -3975,7 +3706,6 @@ def select_linked(
3975
3706
  ):
3976
3707
  """Select all visible objects that are linked
3977
3708
 
3978
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3979
3709
  :type execution_context: int | str | None
3980
3710
  :type undo: bool | None
3981
3711
  :param extend: Extend, Extend selection instead of deselecting everything first
@@ -3985,37 +3715,31 @@ def select_linked(
3985
3715
  """
3986
3716
 
3987
3717
  def select_mirror(
3988
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3989
3718
  execution_context: int | str | None = None,
3990
3719
  undo: bool | None = None,
3720
+ /,
3991
3721
  *,
3992
3722
  extend: bool | None = False,
3993
3723
  ):
3994
3724
  """Select the mirror objects of the selected object e.g. "L.sword" and "R.sword"
3995
3725
 
3996
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3997
3726
  :type execution_context: int | str | None
3998
3727
  :type undo: bool | None
3999
3728
  :param extend: Extend, Extend selection instead of deselecting everything first
4000
3729
  :type extend: bool | None
4001
3730
  """
4002
3731
 
4003
- def select_more(
4004
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4005
- execution_context: int | str | None = None,
4006
- undo: bool | None = None,
4007
- ):
3732
+ def select_more(execution_context: int | str | None = None, undo: bool | None = None):
4008
3733
  """Select connected parent/child objects
4009
3734
 
4010
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4011
3735
  :type execution_context: int | str | None
4012
3736
  :type undo: bool | None
4013
3737
  """
4014
3738
 
4015
3739
  def select_pattern(
4016
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4017
3740
  execution_context: int | str | None = None,
4018
3741
  undo: bool | None = None,
3742
+ /,
4019
3743
  *,
4020
3744
  pattern: str = "*",
4021
3745
  case_sensitive: bool | None = False,
@@ -4023,7 +3747,6 @@ def select_pattern(
4023
3747
  ):
4024
3748
  """Select objects matching a naming pattern
4025
3749
 
4026
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4027
3750
  :type execution_context: int | str | None
4028
3751
  :type undo: bool | None
4029
3752
  :param pattern: Pattern, Name filter using '*', '?' and '[abc]' unix style wildcards
@@ -4035,9 +3758,9 @@ def select_pattern(
4035
3758
  """
4036
3759
 
4037
3760
  def select_random(
4038
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4039
3761
  execution_context: int | str | None = None,
4040
3762
  undo: bool | None = None,
3763
+ /,
4041
3764
  *,
4042
3765
  ratio: float | None = 0.5,
4043
3766
  seed: int | None = 0,
@@ -4045,7 +3768,6 @@ def select_random(
4045
3768
  ):
4046
3769
  """Select or deselect random visible objects
4047
3770
 
4048
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4049
3771
  :type execution_context: int | str | None
4050
3772
  :type undo: bool | None
4051
3773
  :param ratio: Ratio, Portion of items to select randomly
@@ -4063,15 +3785,14 @@ def select_random(
4063
3785
  """
4064
3786
 
4065
3787
  def select_same_collection(
4066
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4067
3788
  execution_context: int | str | None = None,
4068
3789
  undo: bool | None = None,
3790
+ /,
4069
3791
  *,
4070
3792
  collection: str = "",
4071
3793
  ):
4072
3794
  """Select object in the same collection
4073
3795
 
4074
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4075
3796
  :type execution_context: int | str | None
4076
3797
  :type undo: bool | None
4077
3798
  :param collection: Collection, Name of the collection to select
@@ -4079,16 +3800,15 @@ def select_same_collection(
4079
3800
  """
4080
3801
 
4081
3802
  def shade_auto_smooth(
4082
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4083
3803
  execution_context: int | str | None = None,
4084
3804
  undo: bool | None = None,
3805
+ /,
4085
3806
  *,
4086
3807
  use_auto_smooth: bool | None = True,
4087
3808
  angle: float | None = 0.523599,
4088
3809
  ):
4089
3810
  """Add modifier to automatically set the sharpness of mesh edges based on the angle between the neighboring faces
4090
3811
 
4091
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4092
3812
  :type execution_context: int | str | None
4093
3813
  :type undo: bool | None
4094
3814
  :param use_auto_smooth: Auto Smooth, Add modifier to set edge sharpness automatically
@@ -4098,15 +3818,14 @@ def shade_auto_smooth(
4098
3818
  """
4099
3819
 
4100
3820
  def shade_flat(
4101
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4102
3821
  execution_context: int | str | None = None,
4103
3822
  undo: bool | None = None,
3823
+ /,
4104
3824
  *,
4105
3825
  keep_sharp_edges: bool | None = True,
4106
3826
  ):
4107
3827
  """Render and display faces uniform, using face normals
4108
3828
 
4109
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4110
3829
  :type execution_context: int | str | None
4111
3830
  :type undo: bool | None
4112
3831
  :param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges, which are redundant with faces shaded smooth
@@ -4114,15 +3833,14 @@ def shade_flat(
4114
3833
  """
4115
3834
 
4116
3835
  def shade_smooth(
4117
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4118
3836
  execution_context: int | str | None = None,
4119
3837
  undo: bool | None = None,
3838
+ /,
4120
3839
  *,
4121
3840
  keep_sharp_edges: bool | None = True,
4122
3841
  ):
4123
3842
  """Render and display faces smooth, using interpolated vertex normals
4124
3843
 
4125
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4126
3844
  :type execution_context: int | str | None
4127
3845
  :type undo: bool | None
4128
3846
  :param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges. Tagged edges will remain sharp
@@ -4130,16 +3848,15 @@ def shade_smooth(
4130
3848
  """
4131
3849
 
4132
3850
  def shade_smooth_by_angle(
4133
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4134
3851
  execution_context: int | str | None = None,
4135
3852
  undo: bool | None = None,
3853
+ /,
4136
3854
  *,
4137
3855
  angle: float | None = 0.523599,
4138
3856
  keep_sharp_edges: bool | None = True,
4139
3857
  ):
4140
3858
  """Set the sharpness of mesh edges based on the angle between the neighboring faces
4141
3859
 
4142
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4143
3860
  :type execution_context: int | str | None
4144
3861
  :type undo: bool | None
4145
3862
  :param angle: Angle, Maximum angle between face normals that will be considered as smooth
@@ -4149,15 +3866,14 @@ def shade_smooth_by_angle(
4149
3866
  """
4150
3867
 
4151
3868
  def shaderfx_add(
4152
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4153
3869
  execution_context: int | str | None = None,
4154
3870
  undo: bool | None = None,
3871
+ /,
4155
3872
  *,
4156
3873
  type: bpy.typing.ObjectShaderfxTypeItems | None = "FX_BLUR",
4157
3874
  ):
4158
3875
  """Add a visual effect to the active object
4159
3876
 
4160
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4161
3877
  :type execution_context: int | str | None
4162
3878
  :type undo: bool | None
4163
3879
  :param type: Type
@@ -4165,15 +3881,14 @@ def shaderfx_add(
4165
3881
  """
4166
3882
 
4167
3883
  def shaderfx_copy(
4168
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4169
3884
  execution_context: int | str | None = None,
4170
3885
  undo: bool | None = None,
3886
+ /,
4171
3887
  *,
4172
3888
  shaderfx: str = "",
4173
3889
  ):
4174
3890
  """Duplicate effect at the same position in the stack
4175
3891
 
4176
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4177
3892
  :type execution_context: int | str | None
4178
3893
  :type undo: bool | None
4179
3894
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4181,15 +3896,14 @@ def shaderfx_copy(
4181
3896
  """
4182
3897
 
4183
3898
  def shaderfx_move_down(
4184
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4185
3899
  execution_context: int | str | None = None,
4186
3900
  undo: bool | None = None,
3901
+ /,
4187
3902
  *,
4188
3903
  shaderfx: str = "",
4189
3904
  ):
4190
3905
  """Move effect down in the stack
4191
3906
 
4192
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4193
3907
  :type execution_context: int | str | None
4194
3908
  :type undo: bool | None
4195
3909
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4197,16 +3911,15 @@ def shaderfx_move_down(
4197
3911
  """
4198
3912
 
4199
3913
  def shaderfx_move_to_index(
4200
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4201
3914
  execution_context: int | str | None = None,
4202
3915
  undo: bool | None = None,
3916
+ /,
4203
3917
  *,
4204
3918
  shaderfx: str = "",
4205
3919
  index: int | None = 0,
4206
3920
  ):
4207
3921
  """Change the effect's position in the list so it evaluates after the set number of others
4208
3922
 
4209
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4210
3923
  :type execution_context: int | str | None
4211
3924
  :type undo: bool | None
4212
3925
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4216,15 +3929,14 @@ def shaderfx_move_to_index(
4216
3929
  """
4217
3930
 
4218
3931
  def shaderfx_move_up(
4219
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4220
3932
  execution_context: int | str | None = None,
4221
3933
  undo: bool | None = None,
3934
+ /,
4222
3935
  *,
4223
3936
  shaderfx: str = "",
4224
3937
  ):
4225
3938
  """Move effect up in the stack
4226
3939
 
4227
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4228
3940
  :type execution_context: int | str | None
4229
3941
  :type undo: bool | None
4230
3942
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4232,16 +3944,15 @@ def shaderfx_move_up(
4232
3944
  """
4233
3945
 
4234
3946
  def shaderfx_remove(
4235
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4236
3947
  execution_context: int | str | None = None,
4237
3948
  undo: bool | None = None,
3949
+ /,
4238
3950
  *,
4239
3951
  shaderfx: str = "",
4240
3952
  report: bool | None = False,
4241
3953
  ):
4242
3954
  """Remove a effect from the active Grease Pencil object
4243
3955
 
4244
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4245
3956
  :type execution_context: int | str | None
4246
3957
  :type undo: bool | None
4247
3958
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4251,15 +3962,14 @@ def shaderfx_remove(
4251
3962
  """
4252
3963
 
4253
3964
  def shape_key_add(
4254
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4255
3965
  execution_context: int | str | None = None,
4256
3966
  undo: bool | None = None,
3967
+ /,
4257
3968
  *,
4258
3969
  from_mix: bool | None = True,
4259
3970
  ):
4260
3971
  """Add shape key to the object
4261
3972
 
4262
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4263
3973
  :type execution_context: int | str | None
4264
3974
  :type undo: bool | None
4265
3975
  :param from_mix: From Mix, Create the new shape key from the existing mix of keys
@@ -4267,27 +3977,23 @@ def shape_key_add(
4267
3977
  """
4268
3978
 
4269
3979
  def shape_key_clear(
4270
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4271
- execution_context: int | str | None = None,
4272
- undo: bool | None = None,
3980
+ execution_context: int | str | None = None, undo: bool | None = None
4273
3981
  ):
4274
3982
  """Reset the weights of all shape keys to 0 or to the closest value respecting the limits
4275
3983
 
4276
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4277
3984
  :type execution_context: int | str | None
4278
3985
  :type undo: bool | None
4279
3986
  """
4280
3987
 
4281
3988
  def shape_key_lock(
4282
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4283
3989
  execution_context: int | str | None = None,
4284
3990
  undo: bool | None = None,
3991
+ /,
4285
3992
  *,
4286
3993
  action: typing.Literal["LOCK", "UNLOCK"] | None = "LOCK",
4287
3994
  ):
4288
3995
  """Change the lock state of all shape keys of active object
4289
3996
 
4290
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4291
3997
  :type execution_context: int | str | None
4292
3998
  :type undo: bool | None
4293
3999
  :param action: Action, Lock action to execute on vertex groups
@@ -4301,15 +4007,14 @@ def shape_key_lock(
4301
4007
  """
4302
4008
 
4303
4009
  def shape_key_mirror(
4304
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4305
4010
  execution_context: int | str | None = None,
4306
4011
  undo: bool | None = None,
4012
+ /,
4307
4013
  *,
4308
4014
  use_topology: bool | None = False,
4309
4015
  ):
4310
4016
  """Mirror the current shape key along the local X axis
4311
4017
 
4312
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4313
4018
  :type execution_context: int | str | None
4314
4019
  :type undo: bool | None
4315
4020
  :param use_topology: Topology Mirror, Use topology based mirroring (for when both sides of mesh have matching, unique topology)
@@ -4317,15 +4022,14 @@ def shape_key_mirror(
4317
4022
  """
4318
4023
 
4319
4024
  def shape_key_move(
4320
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4321
4025
  execution_context: int | str | None = None,
4322
4026
  undo: bool | None = None,
4027
+ /,
4323
4028
  *,
4324
4029
  type: typing.Literal["TOP", "UP", "DOWN", "BOTTOM"] | None = "TOP",
4325
4030
  ):
4326
4031
  """Move the active shape key up/down in the list
4327
4032
 
4328
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4329
4033
  :type execution_context: int | str | None
4330
4034
  :type undo: bool | None
4331
4035
  :param type: Type
@@ -4345,16 +4049,15 @@ def shape_key_move(
4345
4049
  """
4346
4050
 
4347
4051
  def shape_key_remove(
4348
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4349
4052
  execution_context: int | str | None = None,
4350
4053
  undo: bool | None = None,
4054
+ /,
4351
4055
  *,
4352
4056
  all: bool | None = False,
4353
4057
  apply_mix: bool | None = False,
4354
4058
  ):
4355
4059
  """Remove shape key from the object
4356
4060
 
4357
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4358
4061
  :type execution_context: int | str | None
4359
4062
  :type undo: bool | None
4360
4063
  :param all: All, Remove all shape keys
@@ -4364,28 +4067,24 @@ def shape_key_remove(
4364
4067
  """
4365
4068
 
4366
4069
  def shape_key_retime(
4367
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4368
- execution_context: int | str | None = None,
4369
- undo: bool | None = None,
4070
+ execution_context: int | str | None = None, undo: bool | None = None
4370
4071
  ):
4371
4072
  """Resets the timing for absolute shape keys
4372
4073
 
4373
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4374
4074
  :type execution_context: int | str | None
4375
4075
  :type undo: bool | None
4376
4076
  """
4377
4077
 
4378
4078
  def shape_key_transfer(
4379
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4380
4079
  execution_context: int | str | None = None,
4381
4080
  undo: bool | None = None,
4081
+ /,
4382
4082
  *,
4383
4083
  mode: typing.Literal["OFFSET", "RELATIVE_FACE", "RELATIVE_EDGE"] | None = "OFFSET",
4384
4084
  use_clamp: bool | None = False,
4385
4085
  ):
4386
4086
  """Copy the active shape key of another selected object to this one
4387
4087
 
4388
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4389
4088
  :type execution_context: int | str | None
4390
4089
  :type undo: bool | None
4391
4090
  :param mode: Transformation Mode, Relative shape positions to the new shape method
@@ -4404,15 +4103,14 @@ def shape_key_transfer(
4404
4103
  """
4405
4104
 
4406
4105
  def simulation_nodes_cache_bake(
4407
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4408
4106
  execution_context: int | str | None = None,
4409
4107
  undo: bool | None = None,
4108
+ /,
4410
4109
  *,
4411
4110
  selected: bool | None = False,
4412
4111
  ):
4413
4112
  """Bake simulations in geometry nodes modifiers
4414
4113
 
4415
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4416
4114
  :type execution_context: int | str | None
4417
4115
  :type undo: bool | None
4418
4116
  :param selected: Selected, Bake cache on all selected objects
@@ -4420,15 +4118,14 @@ def simulation_nodes_cache_bake(
4420
4118
  """
4421
4119
 
4422
4120
  def simulation_nodes_cache_calculate_to_frame(
4423
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4424
4121
  execution_context: int | str | None = None,
4425
4122
  undo: bool | None = None,
4123
+ /,
4426
4124
  *,
4427
4125
  selected: bool | None = False,
4428
4126
  ):
4429
4127
  """Calculate simulations in geometry nodes modifiers from the start to current frame
4430
4128
 
4431
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4432
4129
  :type execution_context: int | str | None
4433
4130
  :type undo: bool | None
4434
4131
  :param selected: Selected, Calculate all selected objects instead of just the active object
@@ -4436,15 +4133,14 @@ def simulation_nodes_cache_calculate_to_frame(
4436
4133
  """
4437
4134
 
4438
4135
  def simulation_nodes_cache_delete(
4439
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4440
4136
  execution_context: int | str | None = None,
4441
4137
  undo: bool | None = None,
4138
+ /,
4442
4139
  *,
4443
4140
  selected: bool | None = False,
4444
4141
  ):
4445
4142
  """Delete cached/baked simulations in geometry nodes modifiers
4446
4143
 
4447
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4448
4144
  :type execution_context: int | str | None
4449
4145
  :type undo: bool | None
4450
4146
  :param selected: Selected, Delete cache on all selected objects
@@ -4452,15 +4148,14 @@ def simulation_nodes_cache_delete(
4452
4148
  """
4453
4149
 
4454
4150
  def skin_armature_create(
4455
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4456
4151
  execution_context: int | str | None = None,
4457
4152
  undo: bool | None = None,
4153
+ /,
4458
4154
  *,
4459
4155
  modifier: str = "",
4460
4156
  ):
4461
4157
  """Create an armature that parallels the skin layout
4462
4158
 
4463
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4464
4159
  :type execution_context: int | str | None
4465
4160
  :type undo: bool | None
4466
4161
  :param modifier: Modifier, Name of the modifier to edit
@@ -4468,15 +4163,14 @@ def skin_armature_create(
4468
4163
  """
4469
4164
 
4470
4165
  def skin_loose_mark_clear(
4471
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4472
4166
  execution_context: int | str | None = None,
4473
4167
  undo: bool | None = None,
4168
+ /,
4474
4169
  *,
4475
4170
  action: typing.Literal["MARK", "CLEAR"] | None = "MARK",
4476
4171
  ):
4477
4172
  """Mark/clear selected vertices as loose
4478
4173
 
4479
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4480
4174
  :type execution_context: int | str | None
4481
4175
  :type undo: bool | None
4482
4176
  :param action: Action
@@ -4490,33 +4184,27 @@ def skin_loose_mark_clear(
4490
4184
  """
4491
4185
 
4492
4186
  def skin_radii_equalize(
4493
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4494
- execution_context: int | str | None = None,
4495
- undo: bool | None = None,
4187
+ execution_context: int | str | None = None, undo: bool | None = None
4496
4188
  ):
4497
4189
  """Make skin radii of selected vertices equal on each axis
4498
4190
 
4499
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4500
4191
  :type execution_context: int | str | None
4501
4192
  :type undo: bool | None
4502
4193
  """
4503
4194
 
4504
4195
  def skin_root_mark(
4505
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4506
- execution_context: int | str | None = None,
4507
- undo: bool | None = None,
4196
+ execution_context: int | str | None = None, undo: bool | None = None
4508
4197
  ):
4509
4198
  """Mark selected vertices as roots
4510
4199
 
4511
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4512
4200
  :type execution_context: int | str | None
4513
4201
  :type undo: bool | None
4514
4202
  """
4515
4203
 
4516
4204
  def speaker_add(
4517
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4518
4205
  execution_context: int | str | None = None,
4519
4206
  undo: bool | None = None,
4207
+ /,
4520
4208
  *,
4521
4209
  enter_editmode: bool | None = False,
4522
4210
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
@@ -4534,7 +4222,6 @@ def speaker_add(
4534
4222
  ):
4535
4223
  """Add a speaker object to the scene
4536
4224
 
4537
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4538
4225
  :type execution_context: int | str | None
4539
4226
  :type undo: bool | None
4540
4227
  :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
@@ -4559,16 +4246,15 @@ def speaker_add(
4559
4246
  """
4560
4247
 
4561
4248
  def subdivision_set(
4562
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4563
4249
  execution_context: int | str | None = None,
4564
4250
  undo: bool | None = None,
4251
+ /,
4565
4252
  *,
4566
4253
  level: int | None = 1,
4567
4254
  relative: bool | None = False,
4568
4255
  ):
4569
4256
  """Sets a Subdivision Surface level (1 to 5)
4570
4257
 
4571
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4572
4258
  :type execution_context: int | str | None
4573
4259
  :type undo: bool | None
4574
4260
  :param level: Level
@@ -4578,15 +4264,14 @@ def subdivision_set(
4578
4264
  """
4579
4265
 
4580
4266
  def surfacedeform_bind(
4581
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4582
4267
  execution_context: int | str | None = None,
4583
4268
  undo: bool | None = None,
4269
+ /,
4584
4270
  *,
4585
4271
  modifier: str = "",
4586
4272
  ):
4587
4273
  """Bind mesh to target in surface deform modifier
4588
4274
 
4589
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4590
4275
  :type execution_context: int | str | None
4591
4276
  :type undo: bool | None
4592
4277
  :param modifier: Modifier, Name of the modifier to edit
@@ -4594,9 +4279,9 @@ def surfacedeform_bind(
4594
4279
  """
4595
4280
 
4596
4281
  def text_add(
4597
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4598
4282
  execution_context: int | str | None = None,
4599
4283
  undo: bool | None = None,
4284
+ /,
4600
4285
  *,
4601
4286
  radius: float | None = 1.0,
4602
4287
  enter_editmode: bool | None = False,
@@ -4615,7 +4300,6 @@ def text_add(
4615
4300
  ):
4616
4301
  """Add a text object to the scene
4617
4302
 
4618
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4619
4303
  :type execution_context: int | str | None
4620
4304
  :type undo: bool | None
4621
4305
  :param radius: Radius
@@ -4642,15 +4326,14 @@ def text_add(
4642
4326
  """
4643
4327
 
4644
4328
  def track_clear(
4645
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4646
4329
  execution_context: int | str | None = None,
4647
4330
  undo: bool | None = None,
4331
+ /,
4648
4332
  *,
4649
4333
  type: typing.Literal["CLEAR", "CLEAR_KEEP_TRANSFORM"] | None = "CLEAR",
4650
4334
  ):
4651
4335
  """Clear tracking constraint or flag from object
4652
4336
 
4653
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4654
4337
  :type execution_context: int | str | None
4655
4338
  :type undo: bool | None
4656
4339
  :param type: Type
@@ -4658,15 +4341,14 @@ def track_clear(
4658
4341
  """
4659
4342
 
4660
4343
  def track_set(
4661
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4662
4344
  execution_context: int | str | None = None,
4663
4345
  undo: bool | None = None,
4346
+ /,
4664
4347
  *,
4665
4348
  type: typing.Literal["DAMPTRACK", "TRACKTO", "LOCKTRACK"] | None = "DAMPTRACK",
4666
4349
  ):
4667
4350
  """Make the object track another object, using various methods/constraints
4668
4351
 
4669
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4670
4352
  :type execution_context: int | str | None
4671
4353
  :type undo: bool | None
4672
4354
  :param type: Type
@@ -4674,15 +4356,14 @@ def track_set(
4674
4356
  """
4675
4357
 
4676
4358
  def transfer_mode(
4677
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4678
4359
  execution_context: int | str | None = None,
4679
4360
  undo: bool | None = None,
4361
+ /,
4680
4362
  *,
4681
4363
  use_flash_on_transfer: bool | None = True,
4682
4364
  ):
4683
4365
  """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
4684
4366
 
4685
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4686
4367
  :type execution_context: int | str | None
4687
4368
  :type undo: bool | None
4688
4369
  :param use_flash_on_transfer: Flash On Transfer, Flash the target object when transferring the mode
@@ -4690,9 +4371,9 @@ def transfer_mode(
4690
4371
  """
4691
4372
 
4692
4373
  def transform_apply(
4693
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4694
4374
  execution_context: int | str | None = None,
4695
4375
  undo: bool | None = None,
4376
+ /,
4696
4377
  *,
4697
4378
  location: bool | None = True,
4698
4379
  rotation: bool | None = True,
@@ -4702,7 +4383,6 @@ def transform_apply(
4702
4383
  ):
4703
4384
  """Apply the object's transformation to its data
4704
4385
 
4705
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4706
4386
  :type execution_context: int | str | None
4707
4387
  :type undo: bool | None
4708
4388
  :param location: Location
@@ -4718,21 +4398,18 @@ def transform_apply(
4718
4398
  """
4719
4399
 
4720
4400
  def transform_axis_target(
4721
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4722
- execution_context: int | str | None = None,
4723
- undo: bool | None = None,
4401
+ execution_context: int | str | None = None, undo: bool | None = None
4724
4402
  ):
4725
4403
  """Interactively point cameras and lights to a location (Ctrl translates)
4726
4404
 
4727
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4728
4405
  :type execution_context: int | str | None
4729
4406
  :type undo: bool | None
4730
4407
  """
4731
4408
 
4732
4409
  def transform_to_mouse(
4733
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4734
4410
  execution_context: int | str | None = None,
4735
4411
  undo: bool | None = None,
4412
+ /,
4736
4413
  *,
4737
4414
  name: str = "",
4738
4415
  session_uid: int | None = 0,
@@ -4749,7 +4426,6 @@ def transform_to_mouse(
4749
4426
  ):
4750
4427
  """Snap selected item(s) to the mouse location
4751
4428
 
4752
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4753
4429
  :type execution_context: int | str | None
4754
4430
  :type undo: bool | None
4755
4431
  :param name: Name, Object name to place (uses the active object when this and 'session_uid' are unset)
@@ -4765,16 +4441,15 @@ def transform_to_mouse(
4765
4441
  """
4766
4442
 
4767
4443
  def transforms_to_deltas(
4768
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4769
4444
  execution_context: int | str | None = None,
4770
4445
  undo: bool | None = None,
4446
+ /,
4771
4447
  *,
4772
4448
  mode: typing.Literal["ALL", "LOC", "ROT", "SCALE"] | None = "ALL",
4773
4449
  reset_values: bool | None = True,
4774
4450
  ):
4775
4451
  """Convert normal object transforms to delta transforms, any existing delta transforms will be included as well
4776
4452
 
4777
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4778
4453
  :type execution_context: int | str | None
4779
4454
  :type undo: bool | None
4780
4455
  :param mode: Mode, Which transforms to transfer
@@ -4795,58 +4470,44 @@ def transforms_to_deltas(
4795
4470
  :type reset_values: bool | None
4796
4471
  """
4797
4472
 
4798
- def unlink_data(
4799
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4800
- execution_context: int | str | None = None,
4801
- undo: bool | None = None,
4802
- ):
4473
+ def unlink_data(execution_context: int | str | None = None, undo: bool | None = None):
4803
4474
  """Undocumented, consider contributing.
4804
4475
 
4805
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4806
4476
  :type execution_context: int | str | None
4807
4477
  :type undo: bool | None
4808
4478
  """
4809
4479
 
4810
4480
  def vertex_group_add(
4811
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4812
- execution_context: int | str | None = None,
4813
- undo: bool | None = None,
4481
+ execution_context: int | str | None = None, undo: bool | None = None
4814
4482
  ):
4815
4483
  """Add a new vertex group to the active object
4816
4484
 
4817
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4818
4485
  :type execution_context: int | str | None
4819
4486
  :type undo: bool | None
4820
4487
  """
4821
4488
 
4822
4489
  def vertex_group_assign(
4823
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4824
- execution_context: int | str | None = None,
4825
- undo: bool | None = None,
4490
+ execution_context: int | str | None = None, undo: bool | None = None
4826
4491
  ):
4827
4492
  """Assign the selected vertices to the active vertex group
4828
4493
 
4829
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4830
4494
  :type execution_context: int | str | None
4831
4495
  :type undo: bool | None
4832
4496
  """
4833
4497
 
4834
4498
  def vertex_group_assign_new(
4835
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4836
- execution_context: int | str | None = None,
4837
- undo: bool | None = None,
4499
+ execution_context: int | str | None = None, undo: bool | None = None
4838
4500
  ):
4839
4501
  """Assign the selected vertices to a new vertex group
4840
4502
 
4841
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4842
4503
  :type execution_context: int | str | None
4843
4504
  :type undo: bool | None
4844
4505
  """
4845
4506
 
4846
4507
  def vertex_group_clean(
4847
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4848
4508
  execution_context: int | str | None = None,
4849
4509
  undo: bool | None = None,
4510
+ /,
4850
4511
  *,
4851
4512
  group_select_mode: str | None = "",
4852
4513
  limit: float | None = 0.0,
@@ -4854,7 +4515,6 @@ def vertex_group_clean(
4854
4515
  ):
4855
4516
  """Remove vertex group assignments which are not required
4856
4517
 
4857
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4858
4518
  :type execution_context: int | str | None
4859
4519
  :type undo: bool | None
4860
4520
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -4866,45 +4526,36 @@ def vertex_group_clean(
4866
4526
  """
4867
4527
 
4868
4528
  def vertex_group_copy(
4869
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4870
- execution_context: int | str | None = None,
4871
- undo: bool | None = None,
4529
+ execution_context: int | str | None = None, undo: bool | None = None
4872
4530
  ):
4873
4531
  """Make a copy of the active vertex group
4874
4532
 
4875
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4876
4533
  :type execution_context: int | str | None
4877
4534
  :type undo: bool | None
4878
4535
  """
4879
4536
 
4880
4537
  def vertex_group_copy_to_selected(
4881
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4882
- execution_context: int | str | None = None,
4883
- undo: bool | None = None,
4538
+ execution_context: int | str | None = None, undo: bool | None = None
4884
4539
  ):
4885
4540
  """Replace vertex groups of selected objects by vertex groups of active object
4886
4541
 
4887
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4888
4542
  :type execution_context: int | str | None
4889
4543
  :type undo: bool | None
4890
4544
  """
4891
4545
 
4892
4546
  def vertex_group_deselect(
4893
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4894
- execution_context: int | str | None = None,
4895
- undo: bool | None = None,
4547
+ execution_context: int | str | None = None, undo: bool | None = None
4896
4548
  ):
4897
4549
  """Deselect all selected vertices assigned to the active vertex group
4898
4550
 
4899
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4900
4551
  :type execution_context: int | str | None
4901
4552
  :type undo: bool | None
4902
4553
  """
4903
4554
 
4904
4555
  def vertex_group_invert(
4905
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4906
4556
  execution_context: int | str | None = None,
4907
4557
  undo: bool | None = None,
4558
+ /,
4908
4559
  *,
4909
4560
  group_select_mode: str | None = "",
4910
4561
  auto_assign: bool | None = True,
@@ -4912,7 +4563,6 @@ def vertex_group_invert(
4912
4563
  ):
4913
4564
  """Invert active vertex group's weights
4914
4565
 
4915
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4916
4566
  :type execution_context: int | str | None
4917
4567
  :type undo: bool | None
4918
4568
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -4924,9 +4574,9 @@ def vertex_group_invert(
4924
4574
  """
4925
4575
 
4926
4576
  def vertex_group_levels(
4927
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4928
4577
  execution_context: int | str | None = None,
4929
4578
  undo: bool | None = None,
4579
+ /,
4930
4580
  *,
4931
4581
  group_select_mode: str | None = "",
4932
4582
  offset: float | None = 0.0,
@@ -4934,7 +4584,6 @@ def vertex_group_levels(
4934
4584
  ):
4935
4585
  """Add some offset and multiply with some gain the weights of the active vertex group
4936
4586
 
4937
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4938
4587
  :type execution_context: int | str | None
4939
4588
  :type undo: bool | None
4940
4589
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -4946,16 +4595,15 @@ def vertex_group_levels(
4946
4595
  """
4947
4596
 
4948
4597
  def vertex_group_limit_total(
4949
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4950
4598
  execution_context: int | str | None = None,
4951
4599
  undo: bool | None = None,
4600
+ /,
4952
4601
  *,
4953
4602
  group_select_mode: str | None = "",
4954
4603
  limit: int | None = 4,
4955
4604
  ):
4956
4605
  """Limit deform weights associated with a vertex to a specified number by removing lowest weights
4957
4606
 
4958
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4959
4607
  :type execution_context: int | str | None
4960
4608
  :type undo: bool | None
4961
4609
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -4965,9 +4613,9 @@ def vertex_group_limit_total(
4965
4613
  """
4966
4614
 
4967
4615
  def vertex_group_lock(
4968
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4969
4616
  execution_context: int | str | None = None,
4970
4617
  undo: bool | None = None,
4618
+ /,
4971
4619
  *,
4972
4620
  action: typing.Literal["TOGGLE", "LOCK", "UNLOCK", "INVERT"] | None = "TOGGLE",
4973
4621
  mask: typing.Literal["ALL", "SELECTED", "UNSELECTED", "INVERT_UNSELECTED"]
@@ -4975,7 +4623,6 @@ def vertex_group_lock(
4975
4623
  ):
4976
4624
  """Change the lock state of all or some vertex groups of active object
4977
4625
 
4978
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4979
4626
  :type execution_context: int | str | None
4980
4627
  :type undo: bool | None
4981
4628
  :param action: Action, Lock action to execute on vertex groups
@@ -5009,9 +4656,9 @@ def vertex_group_lock(
5009
4656
  """
5010
4657
 
5011
4658
  def vertex_group_mirror(
5012
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5013
4659
  execution_context: int | str | None = None,
5014
4660
  undo: bool | None = None,
4661
+ /,
5015
4662
  *,
5016
4663
  mirror_weights: bool | None = True,
5017
4664
  flip_group_names: bool | None = True,
@@ -5020,7 +4667,6 @@ def vertex_group_mirror(
5020
4667
  ):
5021
4668
  """Mirror vertex group, flip weights and/or names, editing only selected vertices, flipping when both sides are selected otherwise copy from unselected
5022
4669
 
5023
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5024
4670
  :type execution_context: int | str | None
5025
4671
  :type undo: bool | None
5026
4672
  :param mirror_weights: Mirror Weights, Mirror weights
@@ -5034,15 +4680,14 @@ def vertex_group_mirror(
5034
4680
  """
5035
4681
 
5036
4682
  def vertex_group_move(
5037
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5038
4683
  execution_context: int | str | None = None,
5039
4684
  undo: bool | None = None,
4685
+ /,
5040
4686
  *,
5041
4687
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
5042
4688
  ):
5043
4689
  """Move the active vertex group up/down in the list
5044
4690
 
5045
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5046
4691
  :type execution_context: int | str | None
5047
4692
  :type undo: bool | None
5048
4693
  :param direction: Direction, Direction to move the active vertex group towards
@@ -5050,28 +4695,24 @@ def vertex_group_move(
5050
4695
  """
5051
4696
 
5052
4697
  def vertex_group_normalize(
5053
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5054
- execution_context: int | str | None = None,
5055
- undo: bool | None = None,
4698
+ execution_context: int | str | None = None, undo: bool | None = None
5056
4699
  ):
5057
4700
  """Normalize weights of the active vertex group, so that the highest ones are now 1.0
5058
4701
 
5059
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5060
4702
  :type execution_context: int | str | None
5061
4703
  :type undo: bool | None
5062
4704
  """
5063
4705
 
5064
4706
  def vertex_group_normalize_all(
5065
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5066
4707
  execution_context: int | str | None = None,
5067
4708
  undo: bool | None = None,
4709
+ /,
5068
4710
  *,
5069
4711
  group_select_mode: str | None = "",
5070
4712
  lock_active: bool | None = True,
5071
4713
  ):
5072
4714
  """Normalize all weights of all vertex groups, so that for each vertex, the sum of all weights is 1.0
5073
4715
 
5074
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5075
4716
  :type execution_context: int | str | None
5076
4717
  :type undo: bool | None
5077
4718
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5081,16 +4722,15 @@ def vertex_group_normalize_all(
5081
4722
  """
5082
4723
 
5083
4724
  def vertex_group_quantize(
5084
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5085
4725
  execution_context: int | str | None = None,
5086
4726
  undo: bool | None = None,
4727
+ /,
5087
4728
  *,
5088
4729
  group_select_mode: str | None = "",
5089
4730
  steps: int | None = 4,
5090
4731
  ):
5091
4732
  """Set weights to a fixed number of steps
5092
4733
 
5093
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5094
4734
  :type execution_context: int | str | None
5095
4735
  :type undo: bool | None
5096
4736
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5100,16 +4740,15 @@ def vertex_group_quantize(
5100
4740
  """
5101
4741
 
5102
4742
  def vertex_group_remove(
5103
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5104
4743
  execution_context: int | str | None = None,
5105
4744
  undo: bool | None = None,
4745
+ /,
5106
4746
  *,
5107
4747
  all: bool | None = False,
5108
4748
  all_unlocked: bool | None = False,
5109
4749
  ):
5110
4750
  """Delete the active or all vertex groups from the active object
5111
4751
 
5112
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5113
4752
  :type execution_context: int | str | None
5114
4753
  :type undo: bool | None
5115
4754
  :param all: All, Remove all vertex groups
@@ -5119,16 +4758,15 @@ def vertex_group_remove(
5119
4758
  """
5120
4759
 
5121
4760
  def vertex_group_remove_from(
5122
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5123
4761
  execution_context: int | str | None = None,
5124
4762
  undo: bool | None = None,
4763
+ /,
5125
4764
  *,
5126
4765
  use_all_groups: bool | None = False,
5127
4766
  use_all_verts: bool | None = False,
5128
4767
  ):
5129
4768
  """Remove the selected vertices from active or all vertex group(s)
5130
4769
 
5131
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5132
4770
  :type execution_context: int | str | None
5133
4771
  :type undo: bool | None
5134
4772
  :param use_all_groups: All Groups, Remove from all groups
@@ -5138,27 +4776,23 @@ def vertex_group_remove_from(
5138
4776
  """
5139
4777
 
5140
4778
  def vertex_group_select(
5141
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5142
- execution_context: int | str | None = None,
5143
- undo: bool | None = None,
4779
+ execution_context: int | str | None = None, undo: bool | None = None
5144
4780
  ):
5145
4781
  """Select all the vertices assigned to the active vertex group
5146
4782
 
5147
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5148
4783
  :type execution_context: int | str | None
5149
4784
  :type undo: bool | None
5150
4785
  """
5151
4786
 
5152
4787
  def vertex_group_set_active(
5153
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5154
4788
  execution_context: int | str | None = None,
5155
4789
  undo: bool | None = None,
4790
+ /,
5156
4791
  *,
5157
4792
  group: str | None = "",
5158
4793
  ):
5159
4794
  """Set the active vertex group
5160
4795
 
5161
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5162
4796
  :type execution_context: int | str | None
5163
4797
  :type undo: bool | None
5164
4798
  :param group: Group, Vertex group to set as active
@@ -5166,9 +4800,9 @@ def vertex_group_set_active(
5166
4800
  """
5167
4801
 
5168
4802
  def vertex_group_smooth(
5169
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5170
4803
  execution_context: int | str | None = None,
5171
4804
  undo: bool | None = None,
4805
+ /,
5172
4806
  *,
5173
4807
  group_select_mode: str | None = "",
5174
4808
  factor: float | None = 0.5,
@@ -5177,7 +4811,6 @@ def vertex_group_smooth(
5177
4811
  ):
5178
4812
  """Smooth weights for selected vertices
5179
4813
 
5180
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5181
4814
  :type execution_context: int | str | None
5182
4815
  :type undo: bool | None
5183
4816
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5191,15 +4824,14 @@ def vertex_group_smooth(
5191
4824
  """
5192
4825
 
5193
4826
  def vertex_group_sort(
5194
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5195
4827
  execution_context: int | str | None = None,
5196
4828
  undo: bool | None = None,
4829
+ /,
5197
4830
  *,
5198
4831
  sort_type: typing.Literal["NAME", "BONE_HIERARCHY"] | None = "NAME",
5199
4832
  ):
5200
4833
  """Sort vertex groups
5201
4834
 
5202
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5203
4835
  :type execution_context: int | str | None
5204
4836
  :type undo: bool | None
5205
4837
  :param sort_type: Sort Type, Sort type
@@ -5207,39 +4839,32 @@ def vertex_group_sort(
5207
4839
  """
5208
4840
 
5209
4841
  def vertex_parent_set(
5210
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5211
- execution_context: int | str | None = None,
5212
- undo: bool | None = None,
4842
+ execution_context: int | str | None = None, undo: bool | None = None
5213
4843
  ):
5214
4844
  """Parent selected objects to the selected vertices
5215
4845
 
5216
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5217
4846
  :type execution_context: int | str | None
5218
4847
  :type undo: bool | None
5219
4848
  """
5220
4849
 
5221
4850
  def vertex_weight_copy(
5222
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5223
- execution_context: int | str | None = None,
5224
- undo: bool | None = None,
4851
+ execution_context: int | str | None = None, undo: bool | None = None
5225
4852
  ):
5226
4853
  """Copy weights from active to selected
5227
4854
 
5228
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5229
4855
  :type execution_context: int | str | None
5230
4856
  :type undo: bool | None
5231
4857
  """
5232
4858
 
5233
4859
  def vertex_weight_delete(
5234
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5235
4860
  execution_context: int | str | None = None,
5236
4861
  undo: bool | None = None,
4862
+ /,
5237
4863
  *,
5238
4864
  weight_group: int | None = -1,
5239
4865
  ):
5240
4866
  """Delete this weight from the vertex (disabled if vertex group is locked)
5241
4867
 
5242
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5243
4868
  :type execution_context: int | str | None
5244
4869
  :type undo: bool | None
5245
4870
  :param weight_group: Weight Index, Index of source weight in active vertex group
@@ -5247,27 +4872,23 @@ def vertex_weight_delete(
5247
4872
  """
5248
4873
 
5249
4874
  def vertex_weight_normalize_active_vertex(
5250
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5251
- execution_context: int | str | None = None,
5252
- undo: bool | None = None,
4875
+ execution_context: int | str | None = None, undo: bool | None = None
5253
4876
  ):
5254
4877
  """Normalize active vertex's weights
5255
4878
 
5256
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5257
4879
  :type execution_context: int | str | None
5258
4880
  :type undo: bool | None
5259
4881
  """
5260
4882
 
5261
4883
  def vertex_weight_paste(
5262
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5263
4884
  execution_context: int | str | None = None,
5264
4885
  undo: bool | None = None,
4886
+ /,
5265
4887
  *,
5266
4888
  weight_group: int | None = -1,
5267
4889
  ):
5268
4890
  """Copy this group's weight to other selected vertices (disabled if vertex group is locked)
5269
4891
 
5270
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5271
4892
  :type execution_context: int | str | None
5272
4893
  :type undo: bool | None
5273
4894
  :param weight_group: Weight Index, Index of source weight in active vertex group
@@ -5275,15 +4896,14 @@ def vertex_weight_paste(
5275
4896
  """
5276
4897
 
5277
4898
  def vertex_weight_set_active(
5278
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5279
4899
  execution_context: int | str | None = None,
5280
4900
  undo: bool | None = None,
4901
+ /,
5281
4902
  *,
5282
4903
  weight_group: int | None = -1,
5283
4904
  ):
5284
4905
  """Set as active vertex group
5285
4906
 
5286
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5287
4907
  :type execution_context: int | str | None
5288
4908
  :type undo: bool | None
5289
4909
  :param weight_group: Weight Index, Index of source weight in active vertex group
@@ -5291,21 +4911,18 @@ def vertex_weight_set_active(
5291
4911
  """
5292
4912
 
5293
4913
  def visual_transform_apply(
5294
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5295
- execution_context: int | str | None = None,
5296
- undo: bool | None = None,
4914
+ execution_context: int | str | None = None, undo: bool | None = None
5297
4915
  ):
5298
4916
  """Apply the object's visual transformation to its data
5299
4917
 
5300
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5301
4918
  :type execution_context: int | str | None
5302
4919
  :type undo: bool | None
5303
4920
  """
5304
4921
 
5305
4922
  def volume_add(
5306
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5307
4923
  execution_context: int | str | None = None,
5308
4924
  undo: bool | None = None,
4925
+ /,
5309
4926
  *,
5310
4927
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
5311
4928
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -5322,7 +4939,6 @@ def volume_add(
5322
4939
  ):
5323
4940
  """Add a volume object to the scene
5324
4941
 
5325
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5326
4942
  :type execution_context: int | str | None
5327
4943
  :type undo: bool | None
5328
4944
  :param align: Align, The alignment of the new object
@@ -5345,9 +4961,9 @@ def volume_add(
5345
4961
  """
5346
4962
 
5347
4963
  def volume_import(
5348
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5349
4964
  execution_context: int | str | None = None,
5350
4965
  undo: bool | None = None,
4966
+ /,
5351
4967
  *,
5352
4968
  filepath: str = "",
5353
4969
  directory: str = "",
@@ -5395,7 +5011,6 @@ def volume_import(
5395
5011
  ):
5396
5012
  """Import OpenVDB volume file
5397
5013
 
5398
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5399
5014
  :type execution_context: int | str | None
5400
5015
  :type undo: bool | None
5401
5016
  :param filepath: File Path, Path to file
@@ -5483,26 +5098,18 @@ def volume_import(
5483
5098
  :type scale: collections.abc.Sequence[float] | mathutils.Vector | None
5484
5099
  """
5485
5100
 
5486
- def voxel_remesh(
5487
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5488
- execution_context: int | str | None = None,
5489
- undo: bool | None = None,
5490
- ):
5101
+ def voxel_remesh(execution_context: int | str | None = None, undo: bool | None = None):
5491
5102
  """Calculates a new manifold mesh based on the volume of the current mesh. All data layers will be lost
5492
5103
 
5493
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5494
5104
  :type execution_context: int | str | None
5495
5105
  :type undo: bool | None
5496
5106
  """
5497
5107
 
5498
5108
  def voxel_size_edit(
5499
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5500
- execution_context: int | str | None = None,
5501
- undo: bool | None = None,
5109
+ execution_context: int | str | None = None, undo: bool | None = None
5502
5110
  ):
5503
5111
  """Modify the mesh voxel size interactively used in the voxel remesher
5504
5112
 
5505
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5506
5113
  :type execution_context: int | str | None
5507
5114
  :type undo: bool | None
5508
5115
  """