fake-bpy-module 20240523__py3-none-any.whl → 20240528__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (94) hide show
  1. bl_operators/__init__.pyi +1 -0
  2. bl_operators/image_as_planes/__init__.pyi +457 -0
  3. bl_operators/userpref/__init__.pyi +0 -214
  4. bl_ui/properties_data_modifier/__init__.pyi +284 -0
  5. bl_ui/properties_render/__init__.pyi +1 -1
  6. bl_ui/space_userpref/__init__.pyi +233 -0
  7. bpy/app/__init__.pyi +9 -1
  8. bpy/ops/action/__init__.pyi +21 -0
  9. bpy/ops/anim/__init__.pyi +34 -0
  10. bpy/ops/armature/__init__.pyi +31 -0
  11. bpy/ops/asset/__init__.pyi +5 -0
  12. bpy/ops/bl_pkg/__init__.pyi +28 -17
  13. bpy/ops/boid/__init__.pyi +1 -0
  14. bpy/ops/brush/__init__.pyi +6 -0
  15. bpy/ops/buttons/__init__.pyi +2 -0
  16. bpy/ops/cachefile/__init__.pyi +3 -0
  17. bpy/ops/camera/__init__.pyi +2 -0
  18. bpy/ops/clip/__init__.pyi +49 -0
  19. bpy/ops/cloth/__init__.pyi +1 -0
  20. bpy/ops/collection/__init__.pyi +7 -0
  21. bpy/ops/console/__init__.pyi +11 -0
  22. bpy/ops/constraint/__init__.pyi +15 -0
  23. bpy/ops/curve/__init__.pyi +28 -0
  24. bpy/ops/curves/__init__.pyi +14 -0
  25. bpy/ops/cycles/__init__.pyi +2 -0
  26. bpy/ops/dpaint/__init__.pyi +2 -0
  27. bpy/ops/ed/__init__.pyi +3 -0
  28. bpy/ops/export_anim/__init__.pyi +1 -0
  29. bpy/ops/export_scene/__init__.pyi +20 -3
  30. bpy/ops/file/__init__.pyi +14 -0
  31. bpy/ops/fluid/__init__.pyi +1 -0
  32. bpy/ops/font/__init__.pyi +13 -0
  33. bpy/ops/geometry/__init__.pyi +7 -0
  34. bpy/ops/gizmogroup/__init__.pyi +1 -0
  35. bpy/ops/gpencil/__init__.pyi +106 -0
  36. bpy/ops/graph/__init__.pyi +47 -0
  37. bpy/ops/grease_pencil/__init__.pyi +58 -0
  38. bpy/ops/image/__init__.pyi +308 -0
  39. bpy/ops/import_anim/__init__.pyi +1 -0
  40. bpy/ops/import_curve/__init__.pyi +1 -0
  41. bpy/ops/import_scene/__init__.pyi +2 -0
  42. bpy/ops/info/__init__.pyi +3 -0
  43. bpy/ops/lattice/__init__.pyi +5 -0
  44. bpy/ops/marker/__init__.pyi +9 -0
  45. bpy/ops/mask/__init__.pyi +22 -0
  46. bpy/ops/mball/__init__.pyi +7 -0
  47. bpy/ops/mesh/__init__.pyi +134 -0
  48. bpy/ops/nla/__init__.pyi +20 -0
  49. bpy/ops/node/__init__.pyi +47 -0
  50. bpy/ops/object/__init__.pyi +174 -0
  51. bpy/ops/outliner/__init__.pyi +53 -0
  52. bpy/ops/paint/__init__.pyi +39 -0
  53. bpy/ops/paintcurve/__init__.pyi +4 -0
  54. bpy/ops/palette/__init__.pyi +4 -0
  55. bpy/ops/particle/__init__.pyi +17 -0
  56. bpy/ops/pose/__init__.pyi +24 -0
  57. bpy/ops/poselib/__init__.pyi +4 -0
  58. bpy/ops/preferences/__init__.pyi +26 -14
  59. bpy/ops/ptcache/__init__.pyi +2 -0
  60. bpy/ops/render/__init__.pyi +9 -0
  61. bpy/ops/rigidbody/__init__.pyi +7 -0
  62. bpy/ops/scene/__init__.pyi +16 -0
  63. bpy/ops/screen/__init__.pyi +21 -0
  64. bpy/ops/script/__init__.pyi +2 -0
  65. bpy/ops/sculpt/__init__.pyi +26 -1
  66. bpy/ops/sculpt_curves/__init__.pyi +3 -0
  67. bpy/ops/sequencer/__init__.pyi +57 -0
  68. bpy/ops/sound/__init__.pyi +4 -0
  69. bpy/ops/spreadsheet/__init__.pyi +2 -0
  70. bpy/ops/surface/__init__.pyi +6 -0
  71. bpy/ops/text/__init__.pyi +18 -0
  72. bpy/ops/text_editor/__init__.pyi +1 -0
  73. bpy/ops/texture/__init__.pyi +1 -0
  74. bpy/ops/transform/__init__.pyi +25 -0
  75. bpy/ops/ui/__init__.pyi +13 -0
  76. bpy/ops/uilist/__init__.pyi +3 -0
  77. bpy/ops/uv/__init__.pyi +40 -0
  78. bpy/ops/view2d/__init__.pyi +11 -0
  79. bpy/ops/view3d/__init__.pyi +30 -0
  80. bpy/ops/wm/__init__.pyi +114 -0
  81. bpy/ops/workspace/__init__.pyi +1 -0
  82. bpy/path/__init__.pyi +6 -6
  83. bpy/props/__init__.pyi +11 -1
  84. bpy/types/__init__.pyi +594 -342
  85. bpy/utils/__init__.pyi +10 -8
  86. bpy_extras/anim_utils/__init__.pyi +3 -3
  87. bpy_extras/view3d_utils/__init__.pyi +2 -0
  88. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/METADATA +1 -1
  89. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/RECORD +94 -93
  90. gpu/types/__init__.pyi +4 -2
  91. gpu_extras/batch/__init__.pyi +1 -1
  92. gpu_extras/presets/__init__.pyi +1 -1
  93. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/WHEEL +0 -0
  94. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/top_level.txt +0 -0
@@ -9,6 +9,7 @@ def action_set(
9
9
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
10
10
  execution_context: str | int | None = None,
11
11
  undo: bool | None = None,
12
+ *,
12
13
  action: str | None = "",
13
14
  ):
14
15
  """Change the active action used
@@ -26,6 +27,7 @@ def animdata_operation(
26
27
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
27
28
  execution_context: str | int | None = None,
28
29
  undo: bool | None = None,
30
+ *,
29
31
  type: str | None = "CLEAR_ANIMDATA",
30
32
  ):
31
33
  """Undocumented, consider contributing.
@@ -54,10 +56,25 @@ def animdata_operation(
54
56
 
55
57
  ...
56
58
 
59
+ def clear_filter(
60
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
61
+ execution_context: str | int | None = None,
62
+ undo: bool | None = None,
63
+ ):
64
+ """Clear the search filter
65
+
66
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
67
+ :type execution_context: str | int | None
68
+ :type undo: bool | None
69
+ """
70
+
71
+ ...
72
+
57
73
  def collection_color_tag_set(
58
74
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
59
75
  execution_context: str | int | None = None,
60
76
  undo: bool | None = None,
77
+ *,
61
78
  color: str | None = "NONE",
62
79
  ):
63
80
  """Set a color tag for the selected collections
@@ -313,6 +330,7 @@ def collection_isolate(
313
330
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
314
331
  execution_context: str | int | None = None,
315
332
  undo: bool | None = None,
333
+ *,
316
334
  extend: bool | typing.Any | None = False,
317
335
  ):
318
336
  """Hide all but this collection and its parents
@@ -344,6 +362,7 @@ def collection_new(
344
362
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
345
363
  execution_context: str | int | None = None,
346
364
  undo: bool | None = None,
365
+ *,
347
366
  nested: bool | typing.Any | None = True,
348
367
  ):
349
368
  """Add a new collection inside selected collection
@@ -417,6 +436,7 @@ def constraint_operation(
417
436
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
418
437
  execution_context: str | int | None = None,
419
438
  undo: bool | None = None,
439
+ *,
420
440
  type: str | None = "ENABLE",
421
441
  ):
422
442
  """Undocumented, consider contributing.
@@ -434,6 +454,7 @@ def data_operation(
434
454
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
435
455
  execution_context: str | int | None = None,
436
456
  undo: bool | None = None,
457
+ *,
437
458
  type: str | None = "DEFAULT",
438
459
  ):
439
460
  """Undocumented, consider contributing.
@@ -465,6 +486,7 @@ def delete(
465
486
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
466
487
  execution_context: str | int | None = None,
467
488
  undo: bool | None = None,
489
+ *,
468
490
  hierarchy: bool | typing.Any | None = False,
469
491
  ):
470
492
  """Delete selected objects and collections
@@ -580,6 +602,7 @@ def id_operation(
580
602
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
581
603
  execution_context: str | int | None = None,
582
604
  undo: bool | None = None,
605
+ *,
583
606
  type: str | None = "UNLINK",
584
607
  ):
585
608
  """General data-block management operations
@@ -644,6 +667,7 @@ def id_remap(
644
667
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
645
668
  execution_context: str | int | None = None,
646
669
  undo: bool | None = None,
670
+ *,
647
671
  id_type: str | None = "OBJECT",
648
672
  old_id: str | None = "",
649
673
  new_id: str | None = "",
@@ -667,6 +691,7 @@ def item_activate(
667
691
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
668
692
  execution_context: str | int | None = None,
669
693
  undo: bool | None = None,
694
+ *,
670
695
  extend: bool | typing.Any | None = False,
671
696
  extend_range: bool | typing.Any | None = False,
672
697
  deselect_all: bool | typing.Any | None = False,
@@ -707,6 +732,7 @@ def item_openclose(
707
732
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
708
733
  execution_context: str | int | None = None,
709
734
  undo: bool | None = None,
735
+ *,
710
736
  all: bool | typing.Any | None = False,
711
737
  ):
712
738
  """Toggle whether item under cursor is enabled or closed
@@ -724,6 +750,7 @@ def item_rename(
724
750
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
725
751
  execution_context: str | int | None = None,
726
752
  undo: bool | None = None,
753
+ *,
727
754
  use_active: bool | typing.Any | None = False,
728
755
  ):
729
756
  """Rename the active element
@@ -769,6 +796,7 @@ def lib_operation(
769
796
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
770
797
  execution_context: str | int | None = None,
771
798
  undo: bool | None = None,
799
+ *,
772
800
  type: str | None = "DELETE",
773
801
  ):
774
802
  """Undocumented, consider contributing.
@@ -810,6 +838,7 @@ def liboverride_operation(
810
838
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
811
839
  execution_context: str | int | None = None,
812
840
  undo: bool | None = None,
841
+ *,
813
842
  type: str | None = "OVERRIDE_LIBRARY_CREATE_HIERARCHY",
814
843
  selection_set: str | None = "SELECTED",
815
844
  ):
@@ -848,6 +877,7 @@ def liboverride_troubleshoot_operation(
848
877
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
849
878
  execution_context: str | int | None = None,
850
879
  undo: bool | None = None,
880
+ *,
851
881
  type: str | None = "OVERRIDE_LIBRARY_RESYNC_HIERARCHY",
852
882
  selection_set: str | None = "SELECTED",
853
883
  ):
@@ -900,6 +930,7 @@ def modifier_operation(
900
930
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
901
931
  execution_context: str | int | None = None,
902
932
  undo: bool | None = None,
933
+ *,
903
934
  type: str | None = "APPLY",
904
935
  ):
905
936
  """Undocumented, consider contributing.
@@ -917,6 +948,7 @@ def object_operation(
917
948
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
918
949
  execution_context: str | int | None = None,
919
950
  undo: bool | None = None,
951
+ *,
920
952
  type: str | None = "SELECT",
921
953
  ):
922
954
  """Undocumented, consider contributing.
@@ -977,6 +1009,7 @@ def orphans_purge(
977
1009
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
978
1010
  execution_context: str | int | None = None,
979
1011
  undo: bool | None = None,
1012
+ *,
980
1013
  do_local_ids: bool | typing.Any | None = True,
981
1014
  do_linked_ids: bool | typing.Any | None = True,
982
1015
  do_recursive: bool | typing.Any | None = True,
@@ -1042,6 +1075,7 @@ def scene_operation(
1042
1075
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1043
1076
  execution_context: str | int | None = None,
1044
1077
  undo: bool | None = None,
1078
+ *,
1045
1079
  type: str | None = "DELETE",
1046
1080
  ):
1047
1081
  """Context menu for scene operations
@@ -1059,6 +1093,7 @@ def scroll_page(
1059
1093
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1060
1094
  execution_context: str | int | None = None,
1061
1095
  undo: bool | None = None,
1096
+ *,
1062
1097
  up: bool | typing.Any | None = False,
1063
1098
  ):
1064
1099
  """Scroll page up or down
@@ -1076,6 +1111,7 @@ def select_all(
1076
1111
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1077
1112
  execution_context: str | int | None = None,
1078
1113
  undo: bool | None = None,
1114
+ *,
1079
1115
  action: str | None = "TOGGLE",
1080
1116
  ):
1081
1117
  """Toggle the Outliner selection of items
@@ -1105,6 +1141,7 @@ def select_box(
1105
1141
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1106
1142
  execution_context: str | int | None = None,
1107
1143
  undo: bool | None = None,
1144
+ *,
1108
1145
  tweak: bool | typing.Any | None = False,
1109
1146
  xmin: typing.Any | None = 0,
1110
1147
  xmax: typing.Any | None = 0,
@@ -1149,6 +1186,7 @@ def select_walk(
1149
1186
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1150
1187
  execution_context: str | int | None = None,
1151
1188
  undo: bool | None = None,
1189
+ *,
1152
1190
  direction: str | None = "UP",
1153
1191
  extend: bool | typing.Any | None = False,
1154
1192
  toggle_all: bool | typing.Any | None = False,
@@ -1200,6 +1238,7 @@ def show_one_level(
1200
1238
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1201
1239
  execution_context: str | int | None = None,
1202
1240
  undo: bool | None = None,
1241
+ *,
1203
1242
  open: bool | typing.Any | None = True,
1204
1243
  ):
1205
1244
  """Expand/collapse all entries by one level
@@ -1213,6 +1252,20 @@ def show_one_level(
1213
1252
 
1214
1253
  ...
1215
1254
 
1255
+ def start_filter(
1256
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1257
+ execution_context: str | int | None = None,
1258
+ undo: bool | None = None,
1259
+ ):
1260
+ """Start entering filter text
1261
+
1262
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
1263
+ :type execution_context: str | int | None
1264
+ :type undo: bool | None
1265
+ """
1266
+
1267
+ ...
1268
+
1216
1269
  def unhide_all(
1217
1270
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1218
1271
  execution_context: str | int | None = None,
@@ -23,6 +23,7 @@ def add_texture_paint_slot(
23
23
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
24
24
  execution_context: str | int | None = None,
25
25
  undo: bool | None = None,
26
+ *,
26
27
  type: str | None = "BASE_COLOR",
27
28
  slot_type: str | None = "IMAGE",
28
29
  name: str | typing.Any = "Untitled",
@@ -84,6 +85,7 @@ def brush_select(
84
85
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
85
86
  execution_context: str | int | None = None,
86
87
  undo: bool | None = None,
88
+ *,
87
89
  sculpt_tool: str | None = "DRAW",
88
90
  vertex_tool: str | None = "DRAW",
89
91
  weight_tool: str | None = "DRAW",
@@ -131,6 +133,7 @@ def face_select_all(
131
133
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
132
134
  execution_context: str | int | None = None,
133
135
  undo: bool | None = None,
136
+ *,
134
137
  action: str | None = "TOGGLE",
135
138
  ):
136
139
  """Change selection for all faces
@@ -160,6 +163,7 @@ def face_select_hide(
160
163
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
161
164
  execution_context: str | int | None = None,
162
165
  undo: bool | None = None,
166
+ *,
163
167
  unselected: bool | typing.Any | None = False,
164
168
  ):
165
169
  """Hide selected faces
@@ -177,6 +181,7 @@ def face_select_less(
177
181
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
178
182
  execution_context: str | int | None = None,
179
183
  undo: bool | None = None,
184
+ *,
180
185
  face_step: bool | typing.Any | None = True,
181
186
  ):
182
187
  """Deselect Faces connected to existing selection
@@ -208,6 +213,7 @@ def face_select_linked_pick(
208
213
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
209
214
  execution_context: str | int | None = None,
210
215
  undo: bool | None = None,
216
+ *,
211
217
  deselect: bool | typing.Any | None = False,
212
218
  ):
213
219
  """Select linked faces under the cursor
@@ -225,6 +231,7 @@ def face_select_loop(
225
231
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
226
232
  execution_context: str | int | None = None,
227
233
  undo: bool | None = None,
234
+ *,
228
235
  select: bool | typing.Any | None = True,
229
236
  extend: bool | typing.Any | None = False,
230
237
  ):
@@ -245,6 +252,7 @@ def face_select_more(
245
252
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
246
253
  execution_context: str | int | None = None,
247
254
  undo: bool | None = None,
255
+ *,
248
256
  face_step: bool | typing.Any | None = True,
249
257
  ):
250
258
  """Select Faces connected to existing selection
@@ -262,6 +270,7 @@ def face_vert_reveal(
262
270
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
263
271
  execution_context: str | int | None = None,
264
272
  undo: bool | None = None,
273
+ *,
265
274
  select: bool | typing.Any | None = True,
266
275
  ):
267
276
  """Reveal hidden faces and vertices
@@ -279,6 +288,7 @@ def grab_clone(
279
288
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
280
289
  execution_context: str | int | None = None,
281
290
  undo: bool | None = None,
291
+ *,
282
292
  delta: typing.Any | None = (0.0, 0.0),
283
293
  ):
284
294
  """Move the clone source image
@@ -296,6 +306,7 @@ def hide_show(
296
306
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
297
307
  execution_context: str | int | None = None,
298
308
  undo: bool | None = None,
309
+ *,
299
310
  xmin: typing.Any | None = 0,
300
311
  xmax: typing.Any | None = 0,
301
312
  ymin: typing.Any | None = 0,
@@ -346,6 +357,7 @@ def hide_show_all(
346
357
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
347
358
  execution_context: str | int | None = None,
348
359
  undo: bool | None = None,
360
+ *,
349
361
  action: str | None = "HIDE",
350
362
  ):
351
363
  """Hide/show all vertices
@@ -369,6 +381,7 @@ def hide_show_lasso_gesture(
369
381
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
370
382
  execution_context: str | int | None = None,
371
383
  undo: bool | None = None,
384
+ *,
372
385
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
373
386
  action: str | None = "HIDE",
374
387
  area: str | None = "Inside",
@@ -407,6 +420,7 @@ def hide_show_line_gesture(
407
420
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
408
421
  execution_context: str | int | None = None,
409
422
  undo: bool | None = None,
423
+ *,
410
424
  xstart: typing.Any | None = 0,
411
425
  xend: typing.Any | None = 0,
412
426
  ystart: typing.Any | None = 0,
@@ -463,6 +477,7 @@ def hide_show_masked(
463
477
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
464
478
  execution_context: str | int | None = None,
465
479
  undo: bool | None = None,
480
+ *,
466
481
  action: str | None = "HIDE",
467
482
  ):
468
483
  """Hide/show all masked vertices above a threshold
@@ -486,6 +501,7 @@ def hide_show_polyline_gesture(
486
501
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
487
502
  execution_context: str | int | None = None,
488
503
  undo: bool | None = None,
504
+ *,
489
505
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
490
506
  action: str | None = "HIDE",
491
507
  area: str | None = "Inside",
@@ -524,6 +540,7 @@ def image_from_view(
524
540
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
525
541
  execution_context: str | int | None = None,
526
542
  undo: bool | None = None,
543
+ *,
527
544
  filepath: str | typing.Any = "",
528
545
  ):
529
546
  """Make an image from biggest 3D view for reprojection
@@ -541,6 +558,7 @@ def image_paint(
541
558
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
542
559
  execution_context: str | int | None = None,
543
560
  undo: bool | None = None,
561
+ *,
544
562
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
545
563
  | None = None,
546
564
  mode: str | None = "NORMAL",
@@ -571,6 +589,7 @@ def mask_box_gesture(
571
589
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
572
590
  execution_context: str | int | None = None,
573
591
  undo: bool | None = None,
592
+ *,
574
593
  xmin: typing.Any | None = 0,
575
594
  xmax: typing.Any | None = 0,
576
595
  ymin: typing.Any | None = 0,
@@ -618,6 +637,7 @@ def mask_flood_fill(
618
637
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
619
638
  execution_context: str | int | None = None,
620
639
  undo: bool | None = None,
640
+ *,
621
641
  mode: str | None = "VALUE",
622
642
  value: typing.Any | None = 0.0,
623
643
  ):
@@ -647,6 +667,7 @@ def mask_lasso_gesture(
647
667
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
648
668
  execution_context: str | int | None = None,
649
669
  undo: bool | None = None,
670
+ *,
650
671
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
651
672
  use_front_faces_only: bool | typing.Any | None = False,
652
673
  mode: str | None = "VALUE",
@@ -682,6 +703,7 @@ def mask_line_gesture(
682
703
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
683
704
  execution_context: str | int | None = None,
684
705
  undo: bool | None = None,
706
+ *,
685
707
  xstart: typing.Any | None = 0,
686
708
  xend: typing.Any | None = 0,
687
709
  ystart: typing.Any | None = 0,
@@ -735,6 +757,7 @@ def project_image(
735
757
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
736
758
  execution_context: str | int | None = None,
737
759
  undo: bool | None = None,
760
+ *,
738
761
  image: str | None = "",
739
762
  ):
740
763
  """Project an edited render from the active camera back onto the object
@@ -752,6 +775,7 @@ def sample_color(
752
775
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
753
776
  execution_context: str | int | None = None,
754
777
  undo: bool | None = None,
778
+ *,
755
779
  location: typing.Any | None = (0, 0),
756
780
  merged: bool | typing.Any | None = False,
757
781
  palette: bool | typing.Any | None = False,
@@ -789,6 +813,7 @@ def vert_select_all(
789
813
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
790
814
  execution_context: str | int | None = None,
791
815
  undo: bool | None = None,
816
+ *,
792
817
  action: str | None = "TOGGLE",
793
818
  ):
794
819
  """Change selection for all vertices
@@ -818,6 +843,7 @@ def vert_select_hide(
818
843
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
819
844
  execution_context: str | int | None = None,
820
845
  undo: bool | None = None,
846
+ *,
821
847
  unselected: bool | typing.Any | None = False,
822
848
  ):
823
849
  """Hide selected vertices
@@ -835,6 +861,7 @@ def vert_select_less(
835
861
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
836
862
  execution_context: str | int | None = None,
837
863
  undo: bool | None = None,
864
+ *,
838
865
  face_step: bool | typing.Any | None = True,
839
866
  ):
840
867
  """Deselect Vertices connected to existing selection
@@ -866,6 +893,7 @@ def vert_select_linked_pick(
866
893
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
867
894
  execution_context: str | int | None = None,
868
895
  undo: bool | None = None,
896
+ *,
869
897
  select: bool | typing.Any | None = True,
870
898
  ):
871
899
  """Select linked vertices under the cursor
@@ -883,6 +911,7 @@ def vert_select_more(
883
911
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
884
912
  execution_context: str | int | None = None,
885
913
  undo: bool | None = None,
914
+ *,
886
915
  face_step: bool | typing.Any | None = True,
887
916
  ):
888
917
  """Select Vertices connected to existing selection
@@ -900,6 +929,7 @@ def vert_select_ungrouped(
900
929
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
901
930
  execution_context: str | int | None = None,
902
931
  undo: bool | None = None,
932
+ *,
903
933
  extend: bool | typing.Any | None = False,
904
934
  ):
905
935
  """Select vertices without a group
@@ -917,6 +947,7 @@ def vertex_color_brightness_contrast(
917
947
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
918
948
  execution_context: str | int | None = None,
919
949
  undo: bool | None = None,
950
+ *,
920
951
  brightness: typing.Any | None = 0.0,
921
952
  contrast: typing.Any | None = 0.0,
922
953
  ):
@@ -937,6 +968,7 @@ def vertex_color_dirt(
937
968
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
938
969
  execution_context: str | int | None = None,
939
970
  undo: bool | None = None,
971
+ *,
940
972
  blur_strength: typing.Any | None = 1.0,
941
973
  blur_iterations: typing.Any | None = 1,
942
974
  clean_angle: typing.Any | None = 3.14159,
@@ -983,6 +1015,7 @@ def vertex_color_hsv(
983
1015
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
984
1016
  execution_context: str | int | None = None,
985
1017
  undo: bool | None = None,
1018
+ *,
986
1019
  h: typing.Any | None = 0.5,
987
1020
  s: typing.Any | None = 1.0,
988
1021
  v: typing.Any | None = 1.0,
@@ -1020,6 +1053,7 @@ def vertex_color_levels(
1020
1053
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1021
1054
  execution_context: str | int | None = None,
1022
1055
  undo: bool | None = None,
1056
+ *,
1023
1057
  offset: typing.Any | None = 0.0,
1024
1058
  gain: typing.Any | None = 1.0,
1025
1059
  ):
@@ -1040,6 +1074,7 @@ def vertex_color_set(
1040
1074
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1041
1075
  execution_context: str | int | None = None,
1042
1076
  undo: bool | None = None,
1077
+ *,
1043
1078
  use_alpha: bool | typing.Any | None = True,
1044
1079
  ):
1045
1080
  """Fill the active vertex color layer with the current paint color
@@ -1071,6 +1106,7 @@ def vertex_paint(
1071
1106
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1072
1107
  execution_context: str | int | None = None,
1073
1108
  undo: bool | None = None,
1109
+ *,
1074
1110
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1075
1111
  | None = None,
1076
1112
  mode: str | None = "NORMAL",
@@ -1129,6 +1165,7 @@ def weight_from_bones(
1129
1165
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1130
1166
  execution_context: str | int | None = None,
1131
1167
  undo: bool | None = None,
1168
+ *,
1132
1169
  type: str | None = "AUTOMATIC",
1133
1170
  ):
1134
1171
  """Set the weights of the groups matching the attached armature's selected bones, using the distance between the vertices and the bones
@@ -1152,6 +1189,7 @@ def weight_gradient(
1152
1189
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1153
1190
  execution_context: str | int | None = None,
1154
1191
  undo: bool | None = None,
1192
+ *,
1155
1193
  type: str | None = "LINEAR",
1156
1194
  xstart: typing.Any | None = 0,
1157
1195
  xend: typing.Any | None = 0,
@@ -1187,6 +1225,7 @@ def weight_paint(
1187
1225
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1188
1226
  execution_context: str | int | None = None,
1189
1227
  undo: bool | None = None,
1228
+ *,
1190
1229
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1191
1230
  | None = None,
1192
1231
  mode: str | None = "NORMAL",
@@ -9,6 +9,7 @@ def add_point(
9
9
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
10
10
  execution_context: str | int | None = None,
11
11
  undo: bool | None = None,
12
+ *,
12
13
  location: typing.Any | None = (0, 0),
13
14
  ):
14
15
  """Add New Paint Curve Point
@@ -26,6 +27,7 @@ def add_point_slide(
26
27
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
27
28
  execution_context: str | int | None = None,
28
29
  undo: bool | None = None,
30
+ *,
29
31
  PAINTCURVE_OT_add_point: add_point | None = None,
30
32
  PAINTCURVE_OT_slide: slide | None = None,
31
33
  ):
@@ -102,6 +104,7 @@ def select(
102
104
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
103
105
  execution_context: str | int | None = None,
104
106
  undo: bool | None = None,
107
+ *,
105
108
  location: typing.Any | None = (0, 0),
106
109
  toggle: bool | typing.Any | None = False,
107
110
  extend: bool | typing.Any | None = False,
@@ -125,6 +128,7 @@ def slide(
125
128
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
126
129
  execution_context: str | int | None = None,
127
130
  undo: bool | None = None,
131
+ *,
128
132
  align: bool | typing.Any | None = False,
129
133
  select: bool | typing.Any | None = True,
130
134
  ):
@@ -37,6 +37,7 @@ def color_move(
37
37
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
38
38
  execution_context: str | int | None = None,
39
39
  undo: bool | None = None,
40
+ *,
40
41
  type: str | None = "UP",
41
42
  ):
42
43
  """Move the active Color up/down in the list
@@ -54,6 +55,7 @@ def extract_from_image(
54
55
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
55
56
  execution_context: str | int | None = None,
56
57
  undo: bool | None = None,
58
+ *,
57
59
  threshold: typing.Any | None = 1,
58
60
  ):
59
61
  """Extract all colors used in Image and create a Palette
@@ -71,6 +73,7 @@ def join(
71
73
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
72
74
  execution_context: str | int | None = None,
73
75
  undo: bool | None = None,
76
+ *,
74
77
  palette: str | typing.Any = "",
75
78
  ):
76
79
  """Join Palette Swatches
@@ -102,6 +105,7 @@ def sort(
102
105
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
103
106
  execution_context: str | int | None = None,
104
107
  undo: bool | None = None,
108
+ *,
105
109
  type: str | None = "HSV",
106
110
  ):
107
111
  """Sort Palette Colors