fake-bge-module 20250104__py3-none-any.whl → 20250201__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.
Files changed (153) hide show
  1. addon_utils/__init__.pyi +11 -6
  2. aud/__init__.pyi +4 -0
  3. bge/types/__init__.pyi +66 -27
  4. bgl/__init__.pyi +2 -2
  5. bgui/image/__init__.pyi +3 -1
  6. bgui/system/__init__.pyi +12 -4
  7. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
  8. bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
  9. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
  10. bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
  11. bl_operators/node/__init__.pyi +78 -0
  12. bl_ui/anim/__init__.pyi +6 -0
  13. bl_ui/generic_ui_list/__init__.pyi +2 -2
  14. bl_ui/node_add_menu_shader/__init__.pyi +0 -1
  15. bl_ui/node_add_menu_texture/__init__.pyi +1 -0
  16. bl_ui/properties_data_camera/__init__.pyi +0 -2
  17. bl_ui/properties_mask_common/__init__.pyi +17 -0
  18. bl_ui/properties_material_gpencil/__init__.pyi +29 -0
  19. bl_ui/properties_scene/__init__.pyi +6 -0
  20. bl_ui/properties_view_layer/__init__.pyi +1 -0
  21. bl_ui/space_clip/__init__.pyi +53 -0
  22. bl_ui/space_graph/__init__.pyi +2 -0
  23. bl_ui/space_image/__init__.pyi +25 -0
  24. bl_ui/space_node/__init__.pyi +0 -1
  25. bl_ui/space_sequencer/__init__.pyi +2 -1
  26. blf/__init__.pyi +6 -3
  27. bmesh/ops/__init__.pyi +111 -54
  28. bmesh/types/__init__.pyi +134 -46
  29. bmesh/utils/__init__.pyi +17 -5
  30. bpy/__init__.pyi +1 -2
  31. bpy/_typing/__init__.pyi +4 -0
  32. bpy/{typing → _typing/rna_enums}/__init__.pyi +36 -36
  33. bpy/app/__init__.pyi +13 -5
  34. bpy/app/handlers/__init__.pyi +4 -2
  35. bpy/app/icons/__init__.pyi +6 -2
  36. bpy/app/translations/__init__.pyi +17 -8
  37. bpy/msgbus/__init__.pyi +14 -2
  38. bpy/ops/action/__init__.pyi +51 -151
  39. bpy/ops/anim/__init__.pyi +61 -179
  40. bpy/ops/armature/__init__.pyi +48 -147
  41. bpy/ops/asset/__init__.pyi +16 -71
  42. bpy/ops/boid/__init__.pyi +11 -44
  43. bpy/ops/brush/__init__.pyi +16 -42
  44. bpy/ops/buttons/__init__.pyi +6 -29
  45. bpy/ops/cachefile/__init__.pyi +5 -19
  46. bpy/ops/camera/__init__.pyi +2 -5
  47. bpy/ops/clip/__init__.pyi +95 -293
  48. bpy/ops/cloth/__init__.pyi +1 -3
  49. bpy/ops/collection/__init__.pyi +10 -26
  50. bpy/ops/console/__init__.pyi +21 -79
  51. bpy/ops/constraint/__init__.pyi +18 -45
  52. bpy/ops/curve/__init__.pyi +57 -186
  53. bpy/ops/curves/__init__.pyi +37 -109
  54. bpy/ops/cycles/__init__.pyi +3 -9
  55. bpy/ops/dpaint/__init__.pyi +8 -22
  56. bpy/ops/ed/__init__.pyi +20 -52
  57. bpy/ops/export_anim/__init__.pyi +1 -3
  58. bpy/ops/export_scene/__init__.pyi +55 -32
  59. bpy/ops/extensions/__init__.pyi +34 -110
  60. bpy/ops/file/__init__.pyi +40 -167
  61. bpy/ops/fluid/__init__.pyi +14 -77
  62. bpy/ops/font/__init__.pyi +23 -85
  63. bpy/ops/geometry/__init__.pyi +29 -46
  64. bpy/ops/gizmogroup/__init__.pyi +2 -9
  65. bpy/ops/gpencil/__init__.pyi +8 -32
  66. bpy/ops/graph/__init__.pyi +82 -201
  67. bpy/ops/grease_pencil/__init__.pyi +125 -324
  68. bpy/ops/image/__init__.pyi +61 -163
  69. bpy/ops/import_anim/__init__.pyi +1 -3
  70. bpy/ops/import_curve/__init__.pyi +1 -3
  71. bpy/ops/import_scene/__init__.pyi +4 -6
  72. bpy/ops/info/__init__.pyi +7 -29
  73. bpy/ops/lattice/__init__.pyi +11 -32
  74. bpy/ops/logic/__init__.pyi +26 -65
  75. bpy/ops/marker/__init__.pyi +11 -31
  76. bpy/ops/mask/__init__.pyi +39 -132
  77. bpy/ops/material/__init__.pyi +3 -19
  78. bpy/ops/mball/__init__.pyi +8 -19
  79. bpy/ops/mesh/__init__.pyi +223 -470
  80. bpy/ops/nla/__init__.pyi +42 -150
  81. bpy/ops/node/__init__.pyi +169 -393
  82. bpy/ops/object/__init__.pyi +320 -749
  83. bpy/ops/outliner/__init__.pyi +76 -268
  84. bpy/ops/paint/__init__.pyi +67 -147
  85. bpy/ops/paintcurve/__init__.pyi +8 -33
  86. bpy/ops/palette/__init__.pyi +7 -27
  87. bpy/ops/particle/__init__.pyi +39 -134
  88. bpy/ops/pose/__init__.pyi +64 -182
  89. bpy/ops/poselib/__init__.pyi +9 -33
  90. bpy/ops/preferences/__init__.pyi +35 -94
  91. bpy/ops/ptcache/__init__.pyi +7 -33
  92. bpy/ops/render/__init__.pyi +13 -37
  93. bpy/ops/rigidbody/__init__.pyi +22 -54
  94. bpy/ops/scene/__init__.pyi +47 -130
  95. bpy/ops/screen/__init__.pyi +46 -144
  96. bpy/ops/script/__init__.pyi +3 -11
  97. bpy/ops/sculpt/__init__.pyi +40 -94
  98. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  99. bpy/ops/sequencer/__init__.pyi +104 -327
  100. bpy/ops/sound/__init__.pyi +17 -28
  101. bpy/ops/spreadsheet/__init__.pyi +4 -15
  102. bpy/ops/surface/__init__.pyi +6 -13
  103. bpy/ops/text/__init__.pyi +43 -175
  104. bpy/ops/text_editor/__init__.pyi +1 -3
  105. bpy/ops/texture/__init__.pyi +4 -21
  106. bpy/ops/transform/__init__.pyi +114 -134
  107. bpy/ops/ui/__init__.pyi +39 -120
  108. bpy/ops/uilist/__init__.pyi +3 -7
  109. bpy/ops/uv/__init__.pyi +58 -143
  110. bpy/ops/view2d/__init__.pyi +14 -39
  111. bpy/ops/view3d/__init__.pyi +68 -238
  112. bpy/ops/wm/__init__.pyi +178 -319
  113. bpy/ops/workspace/__init__.pyi +7 -33
  114. bpy/ops/world/__init__.pyi +2 -11
  115. bpy/path/__init__.pyi +16 -6
  116. bpy/props/__init__.pyi +157 -127
  117. bpy/types/__init__.pyi +35227 -34838
  118. bpy/utils/__init__.pyi +71 -25
  119. bpy/utils/previews/__init__.pyi +2 -1
  120. bpy/utils/units/__init__.pyi +2 -1
  121. bpy_extras/anim_utils/__init__.pyi +11 -3
  122. bpy_extras/bmesh_utils/__init__.pyi +2 -1
  123. bpy_extras/image_utils/__init__.pyi +5 -2
  124. bpy_extras/io_utils/__init__.pyi +12 -5
  125. bpy_extras/mesh_utils/__init__.pyi +27 -6
  126. bpy_extras/object_utils/__init__.pyi +6 -5
  127. bpy_extras/view3d_utils/__init__.pyi +9 -2
  128. {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
  129. {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
  130. {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/WHEEL +1 -1
  131. freestyle/chainingiterators/__init__.pyi +7 -2
  132. freestyle/functions/__init__.pyi +16 -4
  133. freestyle/shaders/__init__.pyi +5 -1
  134. freestyle/types/__init__.pyi +103 -30
  135. freestyle/utils/ContextFunctions/__init__.pyi +2 -2
  136. freestyle/utils/__init__.pyi +2 -1
  137. gpu/capabilities/__init__.pyi +2 -1
  138. gpu/matrix/__init__.pyi +4 -2
  139. gpu/state/__init__.pyi +2 -2
  140. gpu/types/__init__.pyi +40 -8
  141. gpu_extras/batch/__init__.pyi +13 -1
  142. gpu_extras/presets/__init__.pyi +10 -1
  143. idprop/types/__init__.pyi +4 -2
  144. imbuf/__init__.pyi +6 -3
  145. imbuf/types/__init__.pyi +5 -2
  146. mathutils/__init__.pyi +126 -35
  147. mathutils/bvhtree/__init__.pyi +21 -6
  148. mathutils/geometry/__init__.pyi +68 -22
  149. mathutils/interpolate/__init__.pyi +5 -1
  150. mathutils/kdtree/__init__.pyi +21 -8
  151. mathutils/noise/__init__.pyi +2 -1
  152. rna_info/__init__.pyi +2 -1
  153. {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
@@ -1,26 +1,23 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy._typing.rna_enums
4
5
  import bpy.types
5
- 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",
@@ -38,14 +35,13 @@ def add_texture_paint_slot(
38
35
  width: int | None = 1024,
39
36
  height: int | None = 1024,
40
37
  alpha: bool | None = True,
41
- generated_type: bpy.typing.ImageGeneratedTypeItems | None = "BLANK",
38
+ generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None = "BLANK",
42
39
  float: bool | None = False,
43
- domain: bpy.typing.ColorAttributeDomainItems | None = "POINT",
44
- data_type: bpy.typing.ColorAttributeTypeItems | None = "FLOAT_COLOR",
40
+ domain: bpy._typing.rna_enums.ColorAttributeDomainItems | None = "POINT",
41
+ data_type: bpy._typing.rna_enums.ColorAttributeTypeItems | None = "FLOAT_COLOR",
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
@@ -63,37 +59,33 @@ def add_texture_paint_slot(
63
59
  :param alpha: Alpha, Create an image with an alpha channel
64
60
  :type alpha: bool | None
65
61
  :param generated_type: Generated Type, Fill the image with a grid for UV map testing
66
- :type generated_type: bpy.typing.ImageGeneratedTypeItems | None
62
+ :type generated_type: bpy._typing.rna_enums.ImageGeneratedTypeItems | None
67
63
  :param float: 32-bit Float, Create image with 32-bit floating-point bit depth
68
64
  :type float: bool | None
69
65
  :param domain: Domain, Type of element that attribute is stored on
70
- :type domain: bpy.typing.ColorAttributeDomainItems | None
66
+ :type domain: bpy._typing.rna_enums.ColorAttributeDomainItems | None
71
67
  :param data_type: Data Type, Type of data stored in attribute
72
- :type data_type: bpy.typing.ColorAttributeTypeItems | None
68
+ :type data_type: bpy._typing.rna_enums.ColorAttributeTypeItems | None
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,30 +970,27 @@ 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,
1047
988
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
1048
989
  pen_flip: bool | None = False,
990
+ override_location: bool | None = False,
1049
991
  ):
1050
992
  """Paint a stroke in the active color attribute layer
1051
993
 
1052
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1053
994
  :type execution_context: int | str | None
1054
995
  :type undo: bool | None
1055
996
  :param stroke: Stroke
@@ -1070,24 +1011,23 @@ def vertex_paint(
1070
1011
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
1071
1012
  :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
1072
1013
  :type pen_flip: bool | None
1014
+ :param override_location: Override Location, Override the given location array by recalculating object space positions from the provided mouse_event positions
1015
+ :type override_location: bool | None
1073
1016
  """
1074
1017
 
1075
1018
  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,
1019
+ execution_context: int | str | None = None, undo: bool | None = None
1079
1020
  ):
1080
1021
  """Toggle the vertex paint mode in 3D view
1081
1022
 
1082
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1083
1023
  :type execution_context: int | str | None
1084
1024
  :type undo: bool | None
1085
1025
  """
1086
1026
 
1087
1027
  def visibility_filter(
1088
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1089
1028
  execution_context: int | str | None = None,
1090
1029
  undo: bool | None = None,
1030
+ /,
1091
1031
  *,
1092
1032
  action: typing.Literal["GROW", "SHRINK"] | None = "GROW",
1093
1033
  iterations: int | None = 1,
@@ -1095,7 +1035,6 @@ def visibility_filter(
1095
1035
  ):
1096
1036
  """Edit the visibility of the current mesh
1097
1037
 
1098
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1099
1038
  :type execution_context: int | str | None
1100
1039
  :type undo: bool | None
1101
1040
  :param action: Action
@@ -1113,27 +1052,23 @@ def visibility_filter(
1113
1052
  """
1114
1053
 
1115
1054
  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,
1055
+ execution_context: int | str | None = None, undo: bool | None = None
1119
1056
  ):
1120
1057
  """Invert the visibility of all vertices
1121
1058
 
1122
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1123
1059
  :type execution_context: int | str | None
1124
1060
  :type undo: bool | None
1125
1061
  """
1126
1062
 
1127
1063
  def weight_from_bones(
1128
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1129
1064
  execution_context: int | str | None = None,
1130
1065
  undo: bool | None = None,
1066
+ /,
1131
1067
  *,
1132
1068
  type: typing.Literal["AUTOMATIC", "ENVELOPES"] | None = "AUTOMATIC",
1133
1069
  ):
1134
1070
  """Set the weights of the groups matching the attached armature's selected bones, using the distance between the vertices and the bones
1135
1071
 
1136
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1137
1072
  :type execution_context: int | str | None
1138
1073
  :type undo: bool | None
1139
1074
  :param type: Type, Method to use for assigning weights
@@ -1147,9 +1082,9 @@ def weight_from_bones(
1147
1082
  """
1148
1083
 
1149
1084
  def weight_gradient(
1150
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1151
1085
  execution_context: int | str | None = None,
1152
1086
  undo: bool | None = None,
1087
+ /,
1153
1088
  *,
1154
1089
  type: typing.Literal["LINEAR", "RADIAL"] | None = "LINEAR",
1155
1090
  xstart: int | None = 0,
@@ -1161,7 +1096,6 @@ def weight_gradient(
1161
1096
  ):
1162
1097
  """Draw a line to apply a weight gradient to selected vertices
1163
1098
 
1164
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1165
1099
  :type execution_context: int | str | None
1166
1100
  :type undo: bool | None
1167
1101
  :param type: Type
@@ -1181,18 +1115,18 @@ def weight_gradient(
1181
1115
  """
1182
1116
 
1183
1117
  def weight_paint(
1184
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1185
1118
  execution_context: int | str | None = None,
1186
1119
  undo: bool | None = None,
1120
+ /,
1187
1121
  *,
1188
1122
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1189
1123
  | None = None,
1190
1124
  mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
1191
1125
  pen_flip: bool | None = False,
1126
+ override_location: bool | None = False,
1192
1127
  ):
1193
1128
  """Paint a stroke in the current vertex group's weights
1194
1129
 
1195
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1196
1130
  :type execution_context: int | str | None
1197
1131
  :type undo: bool | None
1198
1132
  :param stroke: Stroke
@@ -1213,52 +1147,38 @@ def weight_paint(
1213
1147
  :type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
1214
1148
  :param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
1215
1149
  :type pen_flip: bool | None
1150
+ :param override_location: Override Location, Override the given location array by recalculating object space positions from the provided mouse_event positions
1151
+ :type override_location: bool | None
1216
1152
  """
1217
1153
 
1218
1154
  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,
1155
+ execution_context: int | str | None = None, undo: bool | None = None
1222
1156
  ):
1223
1157
  """Toggle weight paint mode in 3D view
1224
1158
 
1225
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1226
1159
  :type execution_context: int | str | None
1227
1160
  :type undo: bool | None
1228
1161
  """
1229
1162
 
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
- ):
1163
+ def weight_sample(execution_context: int | str | None = None, undo: bool | None = None):
1235
1164
  """Use the mouse to sample a weight in the 3D view
1236
1165
 
1237
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1238
1166
  :type execution_context: int | str | None
1239
1167
  :type undo: bool | None
1240
1168
  """
1241
1169
 
1242
1170
  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,
1171
+ execution_context: int | str | None = None, undo: bool | None = None
1246
1172
  ):
1247
1173
  """Select one of the vertex groups available under current mouse position
1248
1174
 
1249
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1250
1175
  :type execution_context: int | str | None
1251
1176
  :type undo: bool | None
1252
1177
  """
1253
1178
 
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
- ):
1179
+ def weight_set(execution_context: int | str | None = None, undo: bool | None = None):
1259
1180
  """Fill the active vertex group with the current paint weight
1260
1181
 
1261
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1262
1182
  :type execution_context: int | str | None
1263
1183
  :type undo: bool | None
1264
1184
  """