fake-bpy-module 20241208__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 (80) hide show
  1. bpy/ops/action/__init__.pyi +38 -138
  2. bpy/ops/anim/__init__.pyi +61 -179
  3. bpy/ops/armature/__init__.pyi +48 -147
  4. bpy/ops/asset/__init__.pyi +16 -71
  5. bpy/ops/boid/__init__.pyi +8 -41
  6. bpy/ops/brush/__init__.pyi +13 -39
  7. bpy/ops/buttons/__init__.pyi +6 -29
  8. bpy/ops/cachefile/__init__.pyi +5 -19
  9. bpy/ops/camera/__init__.pyi +2 -5
  10. bpy/ops/clip/__init__.pyi +92 -290
  11. bpy/ops/cloth/__init__.pyi +1 -3
  12. bpy/ops/collection/__init__.pyi +9 -25
  13. bpy/ops/console/__init__.pyi +21 -79
  14. bpy/ops/constraint/__init__.pyi +18 -45
  15. bpy/ops/curve/__init__.pyi +51 -180
  16. bpy/ops/curves/__init__.pyi +28 -100
  17. bpy/ops/cycles/__init__.pyi +3 -9
  18. bpy/ops/dpaint/__init__.pyi +5 -19
  19. bpy/ops/ed/__init__.pyi +12 -53
  20. bpy/ops/export_anim/__init__.pyi +1 -3
  21. bpy/ops/export_scene/__init__.pyi +2 -5
  22. bpy/ops/extensions/__init__.pyi +34 -110
  23. bpy/ops/file/__init__.pyi +40 -167
  24. bpy/ops/fluid/__init__.pyi +14 -77
  25. bpy/ops/font/__init__.pyi +23 -85
  26. bpy/ops/geometry/__init__.pyi +10 -27
  27. bpy/ops/gizmogroup/__init__.pyi +2 -9
  28. bpy/ops/gpencil/__init__.pyi +8 -32
  29. bpy/ops/graph/__init__.pyi +65 -184
  30. bpy/ops/grease_pencil/__init__.pyi +108 -290
  31. bpy/ops/image/__init__.pyi +49 -154
  32. bpy/ops/import_anim/__init__.pyi +1 -3
  33. bpy/ops/import_curve/__init__.pyi +1 -3
  34. bpy/ops/import_scene/__init__.pyi +2 -4
  35. bpy/ops/info/__init__.pyi +7 -29
  36. bpy/ops/lattice/__init__.pyi +8 -29
  37. bpy/ops/marker/__init__.pyi +11 -31
  38. bpy/ops/mask/__init__.pyi +39 -132
  39. bpy/ops/material/__init__.pyi +3 -19
  40. bpy/ops/mball/__init__.pyi +8 -19
  41. bpy/ops/mesh/__init__.pyi +164 -401
  42. bpy/ops/nla/__init__.pyi +39 -147
  43. bpy/ops/node/__init__.pyi +115 -390
  44. bpy/ops/object/__init__.pyi +237 -630
  45. bpy/ops/outliner/__init__.pyi +71 -263
  46. bpy/ops/paint/__init__.pyi +54 -140
  47. bpy/ops/paintcurve/__init__.pyi +8 -33
  48. bpy/ops/palette/__init__.pyi +7 -27
  49. bpy/ops/particle/__init__.pyi +36 -134
  50. bpy/ops/pose/__init__.pyi +51 -169
  51. bpy/ops/poselib/__init__.pyi +9 -33
  52. bpy/ops/preferences/__init__.pyi +35 -94
  53. bpy/ops/ptcache/__init__.pyi +7 -33
  54. bpy/ops/render/__init__.pyi +13 -37
  55. bpy/ops/rigidbody/__init__.pyi +13 -45
  56. bpy/ops/scene/__init__.pyi +37 -121
  57. bpy/ops/screen/__init__.pyi +39 -137
  58. bpy/ops/script/__init__.pyi +3 -11
  59. bpy/ops/sculpt/__init__.pyi +37 -94
  60. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  61. bpy/ops/sequencer/__init__.pyi +89 -284
  62. bpy/ops/sound/__init__.pyi +7 -23
  63. bpy/ops/spreadsheet/__init__.pyi +4 -15
  64. bpy/ops/surface/__init__.pyi +6 -13
  65. bpy/ops/text/__init__.pyi +43 -175
  66. bpy/ops/text_editor/__init__.pyi +1 -3
  67. bpy/ops/texture/__init__.pyi +4 -21
  68. bpy/ops/transform/__init__.pyi +27 -61
  69. bpy/ops/ui/__init__.pyi +34 -117
  70. bpy/ops/uilist/__init__.pyi +3 -7
  71. bpy/ops/uv/__init__.pyi +49 -134
  72. bpy/ops/view2d/__init__.pyi +14 -39
  73. bpy/ops/view3d/__init__.pyi +67 -232
  74. bpy/ops/wm/__init__.pyi +114 -298
  75. bpy/ops/workspace/__init__.pyi +7 -33
  76. bpy/ops/world/__init__.pyi +2 -11
  77. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  78. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
  79. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  80. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
@@ -6,21 +6,18 @@ import bpy.typing
6
6
  import mathutils
7
7
 
8
8
  def add_simple_uvs(
9
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
10
- execution_context: int | str | None = None,
11
- undo: bool | None = None,
9
+ execution_context: int | str | None = None, undo: bool | None = None
12
10
  ):
13
11
  """Add cube map UVs on mesh
14
12
 
15
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
16
13
  :type execution_context: int | str | None
17
14
  :type undo: bool | None
18
15
  """
19
16
 
20
17
  def add_texture_paint_slot(
21
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
22
18
  execution_context: int | str | None = None,
23
19
  undo: bool | None = None,
20
+ /,
24
21
  *,
25
22
  type: typing.Literal[
26
23
  "BASE_COLOR",
@@ -45,7 +42,6 @@ def add_texture_paint_slot(
45
42
  ):
46
43
  """Add a paint slot
47
44
 
48
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
49
45
  :type execution_context: int | str | None
50
46
  :type undo: bool | None
51
47
  :param type: Material Layer Type, Material layer type of new paint slot
@@ -73,27 +69,23 @@ def add_texture_paint_slot(
73
69
  """
74
70
 
75
71
  def brush_colors_flip(
76
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
77
- execution_context: int | str | None = None,
78
- undo: bool | None = None,
72
+ execution_context: int | str | None = None, undo: bool | None = None
79
73
  ):
80
74
  """Swap primary and secondary brush colors
81
75
 
82
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
83
76
  :type execution_context: int | str | None
84
77
  :type undo: bool | None
85
78
  """
86
79
 
87
80
  def face_select_all(
88
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
89
81
  execution_context: int | str | None = None,
90
82
  undo: bool | None = None,
83
+ /,
91
84
  *,
92
85
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
93
86
  ):
94
87
  """Change selection for all faces
95
88
 
96
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
97
89
  :type execution_context: int | str | None
98
90
  :type undo: bool | None
99
91
  :param action: Action, Selection action to execute
@@ -113,15 +105,14 @@ def face_select_all(
113
105
  """
114
106
 
115
107
  def face_select_hide(
116
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
117
108
  execution_context: int | str | None = None,
118
109
  undo: bool | None = None,
110
+ /,
119
111
  *,
120
112
  unselected: bool | None = False,
121
113
  ):
122
114
  """Hide selected faces
123
115
 
124
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
125
116
  :type execution_context: int | str | None
126
117
  :type undo: bool | None
127
118
  :param unselected: Unselected, Hide unselected rather than selected objects
@@ -129,15 +120,14 @@ def face_select_hide(
129
120
  """
130
121
 
131
122
  def face_select_less(
132
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
133
123
  execution_context: int | str | None = None,
134
124
  undo: bool | None = None,
125
+ /,
135
126
  *,
136
127
  face_step: bool | None = True,
137
128
  ):
138
129
  """Deselect Faces connected to existing selection
139
130
 
140
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
141
131
  :type execution_context: int | str | None
142
132
  :type undo: bool | None
143
133
  :param face_step: Face Step, Also deselect faces that only touch on a corner
@@ -145,27 +135,23 @@ def face_select_less(
145
135
  """
146
136
 
147
137
  def face_select_linked(
148
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
149
- execution_context: int | str | None = None,
150
- undo: bool | None = None,
138
+ execution_context: int | str | None = None, undo: bool | None = None
151
139
  ):
152
140
  """Select linked faces
153
141
 
154
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
155
142
  :type execution_context: int | str | None
156
143
  :type undo: bool | None
157
144
  """
158
145
 
159
146
  def face_select_linked_pick(
160
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
161
147
  execution_context: int | str | None = None,
162
148
  undo: bool | None = None,
149
+ /,
163
150
  *,
164
151
  deselect: bool | None = False,
165
152
  ):
166
153
  """Select linked faces under the cursor
167
154
 
168
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
169
155
  :type execution_context: int | str | None
170
156
  :type undo: bool | None
171
157
  :param deselect: Deselect, Deselect rather than select items
@@ -173,16 +159,15 @@ def face_select_linked_pick(
173
159
  """
174
160
 
175
161
  def face_select_loop(
176
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
177
162
  execution_context: int | str | None = None,
178
163
  undo: bool | None = None,
164
+ /,
179
165
  *,
180
166
  select: bool | None = True,
181
167
  extend: bool | None = False,
182
168
  ):
183
169
  """Select face loop under the cursor
184
170
 
185
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
186
171
  :type execution_context: int | str | None
187
172
  :type undo: bool | None
188
173
  :param select: Select, If false, faces will be deselected
@@ -192,15 +177,14 @@ def face_select_loop(
192
177
  """
193
178
 
194
179
  def face_select_more(
195
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
196
180
  execution_context: int | str | None = None,
197
181
  undo: bool | None = None,
182
+ /,
198
183
  *,
199
184
  face_step: bool | None = True,
200
185
  ):
201
186
  """Select Faces connected to existing selection
202
187
 
203
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
204
188
  :type execution_context: int | str | None
205
189
  :type undo: bool | None
206
190
  :param face_step: Face Step, Also select faces that only touch on a corner
@@ -208,15 +192,14 @@ def face_select_more(
208
192
  """
209
193
 
210
194
  def face_vert_reveal(
211
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
212
195
  execution_context: int | str | None = None,
213
196
  undo: bool | None = None,
197
+ /,
214
198
  *,
215
199
  select: bool | None = True,
216
200
  ):
217
201
  """Reveal hidden faces and vertices
218
202
 
219
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
220
203
  :type execution_context: int | str | None
221
204
  :type undo: bool | None
222
205
  :param select: Select, Specifies whether the newly revealed geometry should be selected
@@ -224,15 +207,14 @@ def face_vert_reveal(
224
207
  """
225
208
 
226
209
  def grab_clone(
227
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
228
210
  execution_context: int | str | None = None,
229
211
  undo: bool | None = None,
212
+ /,
230
213
  *,
231
214
  delta: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
232
215
  ):
233
216
  """Move the clone source image
234
217
 
235
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
236
218
  :type execution_context: int | str | None
237
219
  :type undo: bool | None
238
220
  :param delta: Delta, Delta offset of clone image in 0.0 to 1.0 coordinates
@@ -240,9 +222,9 @@ def grab_clone(
240
222
  """
241
223
 
242
224
  def hide_show(
243
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
244
225
  execution_context: int | str | None = None,
245
226
  undo: bool | None = None,
227
+ /,
246
228
  *,
247
229
  xmin: int | None = 0,
248
230
  xmax: int | None = 0,
@@ -255,7 +237,6 @@ def hide_show(
255
237
  ):
256
238
  """Hide/show some vertices
257
239
 
258
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
259
240
  :type execution_context: int | str | None
260
241
  :type undo: bool | None
261
242
  :param xmin: X Min
@@ -289,15 +270,14 @@ def hide_show(
289
270
  """
290
271
 
291
272
  def hide_show_all(
292
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
293
273
  execution_context: int | str | None = None,
294
274
  undo: bool | None = None,
275
+ /,
295
276
  *,
296
277
  action: typing.Literal["HIDE", "SHOW"] | None = "HIDE",
297
278
  ):
298
279
  """Hide/show all vertices
299
280
 
300
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
301
281
  :type execution_context: int | str | None
302
282
  :type undo: bool | None
303
283
  :param action: Visibility Action, Whether to hide or show vertices
@@ -311,9 +291,9 @@ def hide_show_all(
311
291
  """
312
292
 
313
293
  def hide_show_lasso_gesture(
314
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
315
294
  execution_context: int | str | None = None,
316
295
  undo: bool | None = None,
296
+ /,
317
297
  *,
318
298
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
319
299
  use_smooth_stroke: bool | None = False,
@@ -325,7 +305,6 @@ def hide_show_lasso_gesture(
325
305
  ):
326
306
  """Hide/show some vertices
327
307
 
328
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
329
308
  :type execution_context: int | str | None
330
309
  :type undo: bool | None
331
310
  :param path: Path
@@ -357,9 +336,9 @@ def hide_show_lasso_gesture(
357
336
  """
358
337
 
359
338
  def hide_show_line_gesture(
360
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
361
339
  execution_context: int | str | None = None,
362
340
  undo: bool | None = None,
341
+ /,
363
342
  *,
364
343
  xstart: int | None = 0,
365
344
  xend: int | None = 0,
@@ -374,7 +353,6 @@ def hide_show_line_gesture(
374
353
  ):
375
354
  """Hide/show some vertices
376
355
 
377
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
378
356
  :type execution_context: int | str | None
379
357
  :type undo: bool | None
380
358
  :param xstart: X Start
@@ -412,15 +390,14 @@ def hide_show_line_gesture(
412
390
  """
413
391
 
414
392
  def hide_show_masked(
415
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
416
393
  execution_context: int | str | None = None,
417
394
  undo: bool | None = None,
395
+ /,
418
396
  *,
419
397
  action: typing.Literal["HIDE", "SHOW"] | None = "HIDE",
420
398
  ):
421
399
  """Hide/show all masked vertices above a threshold
422
400
 
423
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
424
401
  :type execution_context: int | str | None
425
402
  :type undo: bool | None
426
403
  :param action: Visibility Action, Whether to hide or show vertices
@@ -434,9 +411,9 @@ def hide_show_masked(
434
411
  """
435
412
 
436
413
  def hide_show_polyline_gesture(
437
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
438
414
  execution_context: int | str | None = None,
439
415
  undo: bool | None = None,
416
+ /,
440
417
  *,
441
418
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
442
419
  action: typing.Literal["HIDE", "SHOW"] | None = "HIDE",
@@ -445,7 +422,6 @@ def hide_show_polyline_gesture(
445
422
  ):
446
423
  """Hide/show some vertices
447
424
 
448
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
449
425
  :type execution_context: int | str | None
450
426
  :type undo: bool | None
451
427
  :param path: Path
@@ -471,15 +447,14 @@ def hide_show_polyline_gesture(
471
447
  """
472
448
 
473
449
  def image_from_view(
474
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
475
450
  execution_context: int | str | None = None,
476
451
  undo: bool | None = None,
452
+ /,
477
453
  *,
478
454
  filepath: str = "",
479
455
  ):
480
456
  """Make an image from biggest 3D view for reprojection
481
457
 
482
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
483
458
  :type execution_context: int | str | None
484
459
  :type undo: bool | None
485
460
  :param filepath: File Path, Name of the file
@@ -487,9 +462,9 @@ def image_from_view(
487
462
  """
488
463
 
489
464
  def image_paint(
490
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
491
465
  execution_context: int | str | None = None,
492
466
  undo: bool | None = None,
467
+ /,
493
468
  *,
494
469
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
495
470
  | None = None,
@@ -498,7 +473,6 @@ def image_paint(
498
473
  ):
499
474
  """Paint a stroke into the image
500
475
 
501
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
502
476
  :type execution_context: int | str | None
503
477
  :type undo: bool | None
504
478
  :param stroke: Stroke
@@ -522,9 +496,9 @@ def image_paint(
522
496
  """
523
497
 
524
498
  def mask_box_gesture(
525
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
526
499
  execution_context: int | str | None = None,
527
500
  undo: bool | None = None,
501
+ /,
528
502
  *,
529
503
  xmin: int | None = 0,
530
504
  xmax: int | None = 0,
@@ -537,7 +511,6 @@ def mask_box_gesture(
537
511
  ):
538
512
  """Mask within a rectangle defined by the cursor
539
513
 
540
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
541
514
  :type execution_context: int | str | None
542
515
  :type undo: bool | None
543
516
  :param xmin: X Min
@@ -568,16 +541,15 @@ def mask_box_gesture(
568
541
  """
569
542
 
570
543
  def mask_flood_fill(
571
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
572
544
  execution_context: int | str | None = None,
573
545
  undo: bool | None = None,
546
+ /,
574
547
  *,
575
548
  mode: typing.Literal["VALUE", "VALUE_INVERSE", "INVERT"] | None = "VALUE",
576
549
  value: float | None = 0.0,
577
550
  ):
578
551
  """Fill the whole mask with a given value, or invert its values
579
552
 
580
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
581
553
  :type execution_context: int | str | None
582
554
  :type undo: bool | None
583
555
  :param mode: Mode
@@ -596,9 +568,9 @@ def mask_flood_fill(
596
568
  """
597
569
 
598
570
  def mask_lasso_gesture(
599
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
600
571
  execution_context: int | str | None = None,
601
572
  undo: bool | None = None,
573
+ /,
602
574
  *,
603
575
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
604
576
  use_smooth_stroke: bool | None = False,
@@ -610,7 +582,6 @@ def mask_lasso_gesture(
610
582
  ):
611
583
  """Mask within a shape defined by the cursor
612
584
 
613
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
614
585
  :type execution_context: int | str | None
615
586
  :type undo: bool | None
616
587
  :param path: Path
@@ -639,9 +610,9 @@ def mask_lasso_gesture(
639
610
  """
640
611
 
641
612
  def mask_line_gesture(
642
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
643
613
  execution_context: int | str | None = None,
644
614
  undo: bool | None = None,
615
+ /,
645
616
  *,
646
617
  xstart: int | None = 0,
647
618
  xend: int | None = 0,
@@ -656,7 +627,6 @@ def mask_line_gesture(
656
627
  ):
657
628
  """Mask to one side of a line defined by the cursor
658
629
 
659
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
660
630
  :type execution_context: int | str | None
661
631
  :type undo: bool | None
662
632
  :param xstart: X Start
@@ -691,9 +661,9 @@ def mask_line_gesture(
691
661
  """
692
662
 
693
663
  def mask_polyline_gesture(
694
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
695
664
  execution_context: int | str | None = None,
696
665
  undo: bool | None = None,
666
+ /,
697
667
  *,
698
668
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
699
669
  use_front_faces_only: bool | None = False,
@@ -702,7 +672,6 @@ def mask_polyline_gesture(
702
672
  ):
703
673
  """Mask within a shape defined by the cursor
704
674
 
705
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
706
675
  :type execution_context: int | str | None
707
676
  :type undo: bool | None
708
677
  :param path: Path
@@ -725,15 +694,14 @@ def mask_polyline_gesture(
725
694
  """
726
695
 
727
696
  def project_image(
728
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
729
697
  execution_context: int | str | None = None,
730
698
  undo: bool | None = None,
699
+ /,
731
700
  *,
732
701
  image: str | None = "",
733
702
  ):
734
703
  """Project an edited render from the active camera back onto the object
735
704
 
736
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
737
705
  :type execution_context: int | str | None
738
706
  :type undo: bool | None
739
707
  :param image: Image
@@ -741,9 +709,9 @@ def project_image(
741
709
  """
742
710
 
743
711
  def sample_color(
744
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
745
712
  execution_context: int | str | None = None,
746
713
  undo: bool | None = None,
714
+ /,
747
715
  *,
748
716
  location: collections.abc.Iterable[int] | None = (0, 0),
749
717
  merged: bool | None = False,
@@ -751,7 +719,6 @@ def sample_color(
751
719
  ):
752
720
  """Use the mouse to sample a color in the image
753
721
 
754
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
755
722
  :type execution_context: int | str | None
756
723
  :type undo: bool | None
757
724
  :param location: Location
@@ -763,27 +730,23 @@ def sample_color(
763
730
  """
764
731
 
765
732
  def texture_paint_toggle(
766
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
767
- execution_context: int | str | None = None,
768
- undo: bool | None = None,
733
+ execution_context: int | str | None = None, undo: bool | None = None
769
734
  ):
770
735
  """Toggle texture paint mode in 3D view
771
736
 
772
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
773
737
  :type execution_context: int | str | None
774
738
  :type undo: bool | None
775
739
  """
776
740
 
777
741
  def vert_select_all(
778
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
779
742
  execution_context: int | str | None = None,
780
743
  undo: bool | None = None,
744
+ /,
781
745
  *,
782
746
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
783
747
  ):
784
748
  """Change selection for all vertices
785
749
 
786
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
787
750
  :type execution_context: int | str | None
788
751
  :type undo: bool | None
789
752
  :param action: Action, Selection action to execute
@@ -803,15 +766,14 @@ def vert_select_all(
803
766
  """
804
767
 
805
768
  def vert_select_hide(
806
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
807
769
  execution_context: int | str | None = None,
808
770
  undo: bool | None = None,
771
+ /,
809
772
  *,
810
773
  unselected: bool | None = False,
811
774
  ):
812
775
  """Hide selected vertices
813
776
 
814
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
815
777
  :type execution_context: int | str | None
816
778
  :type undo: bool | None
817
779
  :param unselected: Unselected, Hide unselected rather than selected vertices
@@ -819,15 +781,14 @@ def vert_select_hide(
819
781
  """
820
782
 
821
783
  def vert_select_less(
822
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
823
784
  execution_context: int | str | None = None,
824
785
  undo: bool | None = None,
786
+ /,
825
787
  *,
826
788
  face_step: bool | None = True,
827
789
  ):
828
790
  """Deselect Vertices connected to existing selection
829
791
 
830
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
831
792
  :type execution_context: int | str | None
832
793
  :type undo: bool | None
833
794
  :param face_step: Face Step, Also deselect faces that only touch on a corner
@@ -835,27 +796,23 @@ def vert_select_less(
835
796
  """
836
797
 
837
798
  def vert_select_linked(
838
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
839
- execution_context: int | str | None = None,
840
- undo: bool | None = None,
799
+ execution_context: int | str | None = None, undo: bool | None = None
841
800
  ):
842
801
  """Select linked vertices
843
802
 
844
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
845
803
  :type execution_context: int | str | None
846
804
  :type undo: bool | None
847
805
  """
848
806
 
849
807
  def vert_select_linked_pick(
850
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
851
808
  execution_context: int | str | None = None,
852
809
  undo: bool | None = None,
810
+ /,
853
811
  *,
854
812
  select: bool | None = True,
855
813
  ):
856
814
  """Select linked vertices under the cursor
857
815
 
858
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
859
816
  :type execution_context: int | str | None
860
817
  :type undo: bool | None
861
818
  :param select: Select, Whether to select or deselect linked vertices under the cursor
@@ -863,15 +820,14 @@ def vert_select_linked_pick(
863
820
  """
864
821
 
865
822
  def vert_select_more(
866
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
867
823
  execution_context: int | str | None = None,
868
824
  undo: bool | None = None,
825
+ /,
869
826
  *,
870
827
  face_step: bool | None = True,
871
828
  ):
872
829
  """Select Vertices connected to existing selection
873
830
 
874
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
875
831
  :type execution_context: int | str | None
876
832
  :type undo: bool | None
877
833
  :param face_step: Face Step, Also select faces that only touch on a corner
@@ -879,15 +835,14 @@ def vert_select_more(
879
835
  """
880
836
 
881
837
  def vert_select_ungrouped(
882
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
883
838
  execution_context: int | str | None = None,
884
839
  undo: bool | None = None,
840
+ /,
885
841
  *,
886
842
  extend: bool | None = False,
887
843
  ):
888
844
  """Select vertices without a group
889
845
 
890
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
891
846
  :type execution_context: int | str | None
892
847
  :type undo: bool | None
893
848
  :param extend: Extend, Extend the selection
@@ -895,16 +850,15 @@ def vert_select_ungrouped(
895
850
  """
896
851
 
897
852
  def vertex_color_brightness_contrast(
898
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
899
853
  execution_context: int | str | None = None,
900
854
  undo: bool | None = None,
855
+ /,
901
856
  *,
902
857
  brightness: float | None = 0.0,
903
858
  contrast: float | None = 0.0,
904
859
  ):
905
860
  """Adjust vertex color brightness/contrast
906
861
 
907
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
908
862
  :type execution_context: int | str | None
909
863
  :type undo: bool | None
910
864
  :param brightness: Brightness
@@ -914,9 +868,9 @@ def vertex_color_brightness_contrast(
914
868
  """
915
869
 
916
870
  def vertex_color_dirt(
917
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
918
871
  execution_context: int | str | None = None,
919
872
  undo: bool | None = None,
873
+ /,
920
874
  *,
921
875
  blur_strength: float | None = 1.0,
922
876
  blur_iterations: int | None = 1,
@@ -927,7 +881,6 @@ def vertex_color_dirt(
927
881
  ):
928
882
  """Generate a dirt map gradient based on cavity
929
883
 
930
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
931
884
  :type execution_context: int | str | None
932
885
  :type undo: bool | None
933
886
  :param blur_strength: Blur Strength, Blur strength per iteration
@@ -945,21 +898,18 @@ def vertex_color_dirt(
945
898
  """
946
899
 
947
900
  def vertex_color_from_weight(
948
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
949
- execution_context: int | str | None = None,
950
- undo: bool | None = None,
901
+ execution_context: int | str | None = None, undo: bool | None = None
951
902
  ):
952
903
  """Convert active weight into gray scale vertex colors
953
904
 
954
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
955
905
  :type execution_context: int | str | None
956
906
  :type undo: bool | None
957
907
  """
958
908
 
959
909
  def vertex_color_hsv(
960
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
961
910
  execution_context: int | str | None = None,
962
911
  undo: bool | None = None,
912
+ /,
963
913
  *,
964
914
  h: float | None = 0.5,
965
915
  s: float | None = 1.0,
@@ -967,7 +917,6 @@ def vertex_color_hsv(
967
917
  ):
968
918
  """Adjust vertex color Hue/Saturation/Value
969
919
 
970
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
971
920
  :type execution_context: int | str | None
972
921
  :type undo: bool | None
973
922
  :param h: Hue
@@ -979,28 +928,24 @@ def vertex_color_hsv(
979
928
  """
980
929
 
981
930
  def vertex_color_invert(
982
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
983
- execution_context: int | str | None = None,
984
- undo: bool | None = None,
931
+ execution_context: int | str | None = None, undo: bool | None = None
985
932
  ):
986
933
  """Invert RGB values
987
934
 
988
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
989
935
  :type execution_context: int | str | None
990
936
  :type undo: bool | None
991
937
  """
992
938
 
993
939
  def vertex_color_levels(
994
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
995
940
  execution_context: int | str | None = None,
996
941
  undo: bool | None = None,
942
+ /,
997
943
  *,
998
944
  offset: float | None = 0.0,
999
945
  gain: float | None = 1.0,
1000
946
  ):
1001
947
  """Adjust levels of vertex colors
1002
948
 
1003
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1004
949
  :type execution_context: int | str | None
1005
950
  :type undo: bool | None
1006
951
  :param offset: Offset, Value to add to colors
@@ -1010,15 +955,14 @@ def vertex_color_levels(
1010
955
  """
1011
956
 
1012
957
  def vertex_color_set(
1013
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1014
958
  execution_context: int | str | None = None,
1015
959
  undo: bool | None = None,
960
+ /,
1016
961
  *,
1017
962
  use_alpha: bool | None = True,
1018
963
  ):
1019
964
  """Fill the active vertex color layer with the current paint color
1020
965
 
1021
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1022
966
  :type execution_context: int | str | None
1023
967
  :type undo: bool | None
1024
968
  :param use_alpha: Affect Alpha, Set color completely opaque instead of reusing existing alpha
@@ -1026,21 +970,18 @@ def vertex_color_set(
1026
970
  """
1027
971
 
1028
972
  def vertex_color_smooth(
1029
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1030
- execution_context: int | str | None = None,
1031
- undo: bool | None = None,
973
+ execution_context: int | str | None = None, undo: bool | None = None
1032
974
  ):
1033
975
  """Smooth colors across vertices
1034
976
 
1035
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1036
977
  :type execution_context: int | str | None
1037
978
  :type undo: bool | None
1038
979
  """
1039
980
 
1040
981
  def vertex_paint(
1041
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1042
982
  execution_context: int | str | None = None,
1043
983
  undo: bool | None = None,
984
+ /,
1044
985
  *,
1045
986
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1046
987
  | None = None,
@@ -1049,7 +990,6 @@ def vertex_paint(
1049
990
  ):
1050
991
  """Paint a stroke in the active color attribute layer
1051
992
 
1052
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1053
993
  :type execution_context: int | str | None
1054
994
  :type undo: bool | None
1055
995
  :param stroke: Stroke
@@ -1073,21 +1013,18 @@ def vertex_paint(
1073
1013
  """
1074
1014
 
1075
1015
  def vertex_paint_toggle(
1076
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1077
- execution_context: int | str | None = None,
1078
- undo: bool | None = None,
1016
+ execution_context: int | str | None = None, undo: bool | None = None
1079
1017
  ):
1080
1018
  """Toggle the vertex paint mode in 3D view
1081
1019
 
1082
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1083
1020
  :type execution_context: int | str | None
1084
1021
  :type undo: bool | None
1085
1022
  """
1086
1023
 
1087
1024
  def visibility_filter(
1088
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1089
1025
  execution_context: int | str | None = None,
1090
1026
  undo: bool | None = None,
1027
+ /,
1091
1028
  *,
1092
1029
  action: typing.Literal["GROW", "SHRINK"] | None = "GROW",
1093
1030
  iterations: int | None = 1,
@@ -1095,7 +1032,6 @@ def visibility_filter(
1095
1032
  ):
1096
1033
  """Edit the visibility of the current mesh
1097
1034
 
1098
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1099
1035
  :type execution_context: int | str | None
1100
1036
  :type undo: bool | None
1101
1037
  :param action: Action
@@ -1113,27 +1049,23 @@ def visibility_filter(
1113
1049
  """
1114
1050
 
1115
1051
  def visibility_invert(
1116
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1117
- execution_context: int | str | None = None,
1118
- undo: bool | None = None,
1052
+ execution_context: int | str | None = None, undo: bool | None = None
1119
1053
  ):
1120
1054
  """Invert the visibility of all vertices
1121
1055
 
1122
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1123
1056
  :type execution_context: int | str | None
1124
1057
  :type undo: bool | None
1125
1058
  """
1126
1059
 
1127
1060
  def weight_from_bones(
1128
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1129
1061
  execution_context: int | str | None = None,
1130
1062
  undo: bool | None = None,
1063
+ /,
1131
1064
  *,
1132
1065
  type: typing.Literal["AUTOMATIC", "ENVELOPES"] | None = "AUTOMATIC",
1133
1066
  ):
1134
1067
  """Set the weights of the groups matching the attached armature's selected bones, using the distance between the vertices and the bones
1135
1068
 
1136
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1137
1069
  :type execution_context: int | str | None
1138
1070
  :type undo: bool | None
1139
1071
  :param type: Type, Method to use for assigning weights
@@ -1147,9 +1079,9 @@ def weight_from_bones(
1147
1079
  """
1148
1080
 
1149
1081
  def weight_gradient(
1150
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1151
1082
  execution_context: int | str | None = None,
1152
1083
  undo: bool | None = None,
1084
+ /,
1153
1085
  *,
1154
1086
  type: typing.Literal["LINEAR", "RADIAL"] | None = "LINEAR",
1155
1087
  xstart: int | None = 0,
@@ -1161,7 +1093,6 @@ def weight_gradient(
1161
1093
  ):
1162
1094
  """Draw a line to apply a weight gradient to selected vertices
1163
1095
 
1164
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1165
1096
  :type execution_context: int | str | None
1166
1097
  :type undo: bool | None
1167
1098
  :param type: Type
@@ -1181,9 +1112,9 @@ def weight_gradient(
1181
1112
  """
1182
1113
 
1183
1114
  def weight_paint(
1184
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1185
1115
  execution_context: int | str | None = None,
1186
1116
  undo: bool | None = None,
1117
+ /,
1187
1118
  *,
1188
1119
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1189
1120
  | None = None,
@@ -1192,7 +1123,6 @@ def weight_paint(
1192
1123
  ):
1193
1124
  """Paint a stroke in the current vertex group's weights
1194
1125
 
1195
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1196
1126
  :type execution_context: int | str | None
1197
1127
  :type undo: bool | None
1198
1128
  :param stroke: Stroke
@@ -1216,49 +1146,33 @@ def weight_paint(
1216
1146
  """
1217
1147
 
1218
1148
  def weight_paint_toggle(
1219
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1220
- execution_context: int | str | None = None,
1221
- undo: bool | None = None,
1149
+ execution_context: int | str | None = None, undo: bool | None = None
1222
1150
  ):
1223
1151
  """Toggle weight paint mode in 3D view
1224
1152
 
1225
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1226
1153
  :type execution_context: int | str | None
1227
1154
  :type undo: bool | None
1228
1155
  """
1229
1156
 
1230
- def weight_sample(
1231
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1232
- execution_context: int | str | None = None,
1233
- undo: bool | None = None,
1234
- ):
1157
+ def weight_sample(execution_context: int | str | None = None, undo: bool | None = None):
1235
1158
  """Use the mouse to sample a weight in the 3D view
1236
1159
 
1237
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1238
1160
  :type execution_context: int | str | None
1239
1161
  :type undo: bool | None
1240
1162
  """
1241
1163
 
1242
1164
  def weight_sample_group(
1243
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1244
- execution_context: int | str | None = None,
1245
- undo: bool | None = None,
1165
+ execution_context: int | str | None = None, undo: bool | None = None
1246
1166
  ):
1247
1167
  """Select one of the vertex groups available under current mouse position
1248
1168
 
1249
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1250
1169
  :type execution_context: int | str | None
1251
1170
  :type undo: bool | None
1252
1171
  """
1253
1172
 
1254
- def weight_set(
1255
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1256
- execution_context: int | str | None = None,
1257
- undo: bool | None = None,
1258
- ):
1173
+ def weight_set(execution_context: int | str | None = None, undo: bool | None = None):
1259
1174
  """Fill the active vertex group with the current paint weight
1260
1175
 
1261
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1262
1176
  :type execution_context: int | str | None
1263
1177
  :type undo: bool | None
1264
1178
  """