fake-bge-module 20250103__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-20250103.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
  129. {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
  130. {fake_bge_module-20250103.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-20250103.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
@@ -1,18 +1,18 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy._typing.rna_enums
4
5
  import bpy.ops.transform
5
6
  import bpy.types
6
- import bpy.typing
7
7
  import mathutils
8
8
 
9
9
  def add(
10
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
11
10
  execution_context: int | str | None = None,
12
11
  undo: bool | None = None,
12
+ /,
13
13
  *,
14
14
  radius: float | None = 1.0,
15
- type: bpy.typing.ObjectTypeItems | None = "EMPTY",
15
+ type: bpy._typing.rna_enums.ObjectTypeItems | None = "EMPTY",
16
16
  enter_editmode: bool | None = False,
17
17
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
18
18
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -29,13 +29,12 @@ def add(
29
29
  ):
30
30
  """Add an object to the scene
31
31
 
32
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
33
32
  :type execution_context: int | str | None
34
33
  :type undo: bool | None
35
34
  :param radius: Radius
36
35
  :type radius: float | None
37
36
  :param type: Type
38
- :type type: bpy.typing.ObjectTypeItems | None
37
+ :type type: bpy._typing.rna_enums.ObjectTypeItems | None
39
38
  :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
40
39
  :type enter_editmode: bool | None
41
40
  :param align: Align, The alignment of the new object
@@ -58,21 +57,18 @@ def add(
58
57
  """
59
58
 
60
59
  def add_modifier_menu(
61
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
62
- execution_context: int | str | None = None,
63
- undo: bool | None = None,
60
+ execution_context: int | str | None = None, undo: bool | None = None
64
61
  ):
65
62
  """Undocumented, consider contributing.
66
63
 
67
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
68
64
  :type execution_context: int | str | None
69
65
  :type undo: bool | None
70
66
  """
71
67
 
72
68
  def add_named(
73
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
74
69
  execution_context: int | str | None = None,
75
70
  undo: bool | None = None,
71
+ /,
76
72
  *,
77
73
  linked: bool | None = False,
78
74
  name: str = "",
@@ -90,7 +86,6 @@ def add_named(
90
86
  ):
91
87
  """Add named object
92
88
 
93
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
94
89
  :type execution_context: int | str | None
95
90
  :type undo: bool | None
96
91
  :param linked: Linked, Duplicate object but not object data, linking to the original data
@@ -108,9 +103,9 @@ def add_named(
108
103
  """
109
104
 
110
105
  def align(
111
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
112
106
  execution_context: int | str | None = None,
113
107
  undo: bool | None = None,
108
+ /,
114
109
  *,
115
110
  bb_quality: bool | None = True,
116
111
  align_mode: typing.Literal["OPT_1", "OPT_2", "OPT_3"] | None = "OPT_2",
@@ -119,7 +114,6 @@ def align(
119
114
  ):
120
115
  """Align objects
121
116
 
122
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
123
117
  :type execution_context: int | str | None
124
118
  :type undo: bool | None
125
119
  :param bb_quality: High Quality, Enables high quality but slow calculation of the bounding box for perfect results on complex shape meshes with rotation/scale
@@ -145,21 +139,18 @@ def align(
145
139
  """
146
140
 
147
141
  def anim_transforms_to_deltas(
148
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
149
- execution_context: int | str | None = None,
150
- undo: bool | None = None,
142
+ execution_context: int | str | None = None, undo: bool | None = None
151
143
  ):
152
144
  """Convert object animation for normal transforms to delta transforms
153
145
 
154
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
155
146
  :type execution_context: int | str | None
156
147
  :type undo: bool | None
157
148
  """
158
149
 
159
150
  def armature_add(
160
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
161
151
  execution_context: int | str | None = None,
162
152
  undo: bool | None = None,
153
+ /,
163
154
  *,
164
155
  radius: float | None = 1.0,
165
156
  enter_editmode: bool | None = False,
@@ -178,7 +169,6 @@ def armature_add(
178
169
  ):
179
170
  """Add an armature object to the scene
180
171
 
181
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
182
172
  :type execution_context: int | str | None
183
173
  :type undo: bool | None
184
174
  :param radius: Radius
@@ -205,16 +195,15 @@ def armature_add(
205
195
  """
206
196
 
207
197
  def assign_property_defaults(
208
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
209
198
  execution_context: int | str | None = None,
210
199
  undo: bool | None = None,
200
+ /,
211
201
  *,
212
202
  process_data: bool | None = True,
213
203
  process_bones: bool | None = True,
214
204
  ):
215
205
  """Assign the current values of custom properties as their defaults, for use as part of the rest pose state in NLA track mixing
216
206
 
217
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
218
207
  :type execution_context: int | str | None
219
208
  :type undo: bool | None
220
209
  :param process_data: Process data properties
@@ -224,27 +213,27 @@ def assign_property_defaults(
224
213
  """
225
214
 
226
215
  def bake(
227
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
228
216
  execution_context: int | str | None = None,
229
217
  undo: bool | None = None,
218
+ /,
230
219
  *,
231
- type: bpy.typing.BakePassTypeItems | None = "COMBINED",
232
- pass_filter: set[bpy.typing.BakePassFilterTypeItems] | None = {},
220
+ type: bpy._typing.rna_enums.BakePassTypeItems | None = "COMBINED",
221
+ pass_filter: set[bpy._typing.rna_enums.BakePassFilterTypeItems] | None = {},
233
222
  filepath: str = "",
234
223
  width: int | None = 512,
235
224
  height: int | None = 512,
236
225
  margin: int | None = 16,
237
- margin_type: bpy.typing.BakeMarginTypeItems | None = "EXTEND",
226
+ margin_type: bpy._typing.rna_enums.BakeMarginTypeItems | None = "EXTEND",
238
227
  use_selected_to_active: bool | None = False,
239
228
  max_ray_distance: float | None = 0.0,
240
229
  cage_extrusion: float | None = 0.0,
241
230
  cage_object: str = "",
242
- normal_space: bpy.typing.NormalSpaceItems | None = "TANGENT",
243
- normal_r: bpy.typing.NormalSwizzleItems | None = "POS_X",
244
- normal_g: bpy.typing.NormalSwizzleItems | None = "POS_Y",
245
- normal_b: bpy.typing.NormalSwizzleItems | None = "POS_Z",
246
- target: bpy.typing.BakeTargetItems | None = "IMAGE_TEXTURES",
247
- save_mode: bpy.typing.BakeSaveModeItems | None = "INTERNAL",
231
+ normal_space: bpy._typing.rna_enums.NormalSpaceItems | None = "TANGENT",
232
+ normal_r: bpy._typing.rna_enums.NormalSwizzleItems | None = "POS_X",
233
+ normal_g: bpy._typing.rna_enums.NormalSwizzleItems | None = "POS_Y",
234
+ normal_b: bpy._typing.rna_enums.NormalSwizzleItems | None = "POS_Z",
235
+ target: bpy._typing.rna_enums.BakeTargetItems | None = "IMAGE_TEXTURES",
236
+ save_mode: bpy._typing.rna_enums.BakeSaveModeItems | None = "INTERNAL",
248
237
  use_clear: bool | None = False,
249
238
  use_cage: bool | None = False,
250
239
  use_split_materials: bool | None = False,
@@ -253,13 +242,12 @@ def bake(
253
242
  ):
254
243
  """Bake image textures of selected objects
255
244
 
256
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
257
245
  :type execution_context: int | str | None
258
246
  :type undo: bool | None
259
247
  :param type: Type, Type of pass to bake, some of them may not be supported by the current render engine
260
- :type type: bpy.typing.BakePassTypeItems | None
248
+ :type type: bpy._typing.rna_enums.BakePassTypeItems | None
261
249
  :param pass_filter: Pass Filter, Filter to combined, diffuse, glossy, transmission and subsurface passes
262
- :type pass_filter: set[bpy.typing.BakePassFilterTypeItems] | None
250
+ :type pass_filter: set[bpy._typing.rna_enums.BakePassFilterTypeItems] | None
263
251
  :param filepath: File Path, Image filepath to use when saving externally
264
252
  :type filepath: str
265
253
  :param width: Width, Horizontal dimension of the baking map (external only)
@@ -269,7 +257,7 @@ def bake(
269
257
  :param margin: Margin, Extends the baked result as a post process filter
270
258
  :type margin: int | None
271
259
  :param margin_type: Margin Type, Which algorithm to use to generate the margin
272
- :type margin_type: bpy.typing.BakeMarginTypeItems | None
260
+ :type margin_type: bpy._typing.rna_enums.BakeMarginTypeItems | None
273
261
  :param use_selected_to_active: Selected to Active, Bake shading on the surface of selected objects to the active object
274
262
  :type use_selected_to_active: bool | None
275
263
  :param max_ray_distance: Max Ray Distance, The maximum ray distance for matching points between the active and selected objects. If zero, there is no limit
@@ -279,17 +267,17 @@ def bake(
279
267
  :param cage_object: Cage Object, Object to use as cage, instead of calculating the cage from the active object with cage extrusion
280
268
  :type cage_object: str
281
269
  :param normal_space: Normal Space, Choose normal space for baking
282
- :type normal_space: bpy.typing.NormalSpaceItems | None
270
+ :type normal_space: bpy._typing.rna_enums.NormalSpaceItems | None
283
271
  :param normal_r: R, Axis to bake in red channel
284
- :type normal_r: bpy.typing.NormalSwizzleItems | None
272
+ :type normal_r: bpy._typing.rna_enums.NormalSwizzleItems | None
285
273
  :param normal_g: G, Axis to bake in green channel
286
- :type normal_g: bpy.typing.NormalSwizzleItems | None
274
+ :type normal_g: bpy._typing.rna_enums.NormalSwizzleItems | None
287
275
  :param normal_b: B, Axis to bake in blue channel
288
- :type normal_b: bpy.typing.NormalSwizzleItems | None
276
+ :type normal_b: bpy._typing.rna_enums.NormalSwizzleItems | None
289
277
  :param target: Target, Where to output the baked map
290
- :type target: bpy.typing.BakeTargetItems | None
278
+ :type target: bpy._typing.rna_enums.BakeTargetItems | None
291
279
  :param save_mode: Save Mode, Where to save baked image textures
292
- :type save_mode: bpy.typing.BakeSaveModeItems | None
280
+ :type save_mode: bpy._typing.rna_enums.BakeSaveModeItems | None
293
281
  :param use_clear: Clear, Clear images before baking (only for internal saving)
294
282
  :type use_clear: bool | None
295
283
  :param use_cage: Cage, Cast rays to active object from a cage
@@ -302,22 +290,17 @@ def bake(
302
290
  :type uv_layer: str
303
291
  """
304
292
 
305
- def bake_image(
306
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
307
- execution_context: int | str | None = None,
308
- undo: bool | None = None,
309
- ):
293
+ def bake_image(execution_context: int | str | None = None, undo: bool | None = None):
310
294
  """Bake image textures of selected objects
311
295
 
312
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
313
296
  :type execution_context: int | str | None
314
297
  :type undo: bool | None
315
298
  """
316
299
 
317
300
  def camera_add(
318
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
319
301
  execution_context: int | str | None = None,
320
302
  undo: bool | None = None,
303
+ /,
321
304
  *,
322
305
  enter_editmode: bool | None = False,
323
306
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
@@ -335,7 +318,6 @@ def camera_add(
335
318
  ):
336
319
  """Add a camera object to the scene
337
320
 
338
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
339
321
  :type execution_context: int | str | None
340
322
  :type undo: bool | None
341
323
  :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
@@ -360,33 +342,27 @@ def camera_add(
360
342
  """
361
343
 
362
344
  def clear_override_library(
363
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
364
- execution_context: int | str | None = None,
365
- undo: bool | None = None,
345
+ execution_context: int | str | None = None, undo: bool | None = None
366
346
  ):
367
347
  """Delete the selected local overrides and relink their usages to the linked data-blocks if possible, else reset them and mark them as non editable
368
348
 
369
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
370
349
  :type execution_context: int | str | None
371
350
  :type undo: bool | None
372
351
  """
373
352
 
374
353
  def collection_add(
375
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
376
- execution_context: int | str | None = None,
377
- undo: bool | None = None,
354
+ execution_context: int | str | None = None, undo: bool | None = None
378
355
  ):
379
356
  """Add an object to a new collection
380
357
 
381
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
382
358
  :type execution_context: int | str | None
383
359
  :type undo: bool | None
384
360
  """
385
361
 
386
362
  def collection_external_asset_drop(
387
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
388
363
  execution_context: int | str | None = None,
389
364
  undo: bool | None = None,
365
+ /,
390
366
  *,
391
367
  session_uid: int | None = 0,
392
368
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
@@ -408,7 +384,6 @@ def collection_external_asset_drop(
408
384
  ):
409
385
  """Add the dragged collection to the scene
410
386
 
411
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
412
387
  :type execution_context: int | str | None
413
388
  :type undo: bool | None
414
389
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -441,9 +416,9 @@ def collection_external_asset_drop(
441
416
  """
442
417
 
443
418
  def collection_instance_add(
444
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
445
419
  execution_context: int | str | None = None,
446
420
  undo: bool | None = None,
421
+ /,
447
422
  *,
448
423
  name: str = "Collection",
449
424
  collection: str | None = "",
@@ -465,7 +440,6 @@ def collection_instance_add(
465
440
  ):
466
441
  """Add a collection instance
467
442
 
468
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
469
443
  :type execution_context: int | str | None
470
444
  :type undo: bool | None
471
445
  :param name: Name, Collection name to add
@@ -498,15 +472,14 @@ def collection_instance_add(
498
472
  """
499
473
 
500
474
  def collection_link(
501
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
502
475
  execution_context: int | str | None = None,
503
476
  undo: bool | None = None,
477
+ /,
504
478
  *,
505
479
  collection: str | None = "",
506
480
  ):
507
481
  """Add an object to an existing collection
508
482
 
509
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
510
483
  :type execution_context: int | str | None
511
484
  :type undo: bool | None
512
485
  :param collection: Collection
@@ -514,51 +487,41 @@ def collection_link(
514
487
  """
515
488
 
516
489
  def collection_objects_select(
517
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
518
- execution_context: int | str | None = None,
519
- undo: bool | None = None,
490
+ execution_context: int | str | None = None, undo: bool | None = None
520
491
  ):
521
492
  """Select all objects in collection
522
493
 
523
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
524
494
  :type execution_context: int | str | None
525
495
  :type undo: bool | None
526
496
  """
527
497
 
528
498
  def collection_remove(
529
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
530
- execution_context: int | str | None = None,
531
- undo: bool | None = None,
499
+ execution_context: int | str | None = None, undo: bool | None = None
532
500
  ):
533
501
  """Remove the active object from this collection
534
502
 
535
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
536
503
  :type execution_context: int | str | None
537
504
  :type undo: bool | None
538
505
  """
539
506
 
540
507
  def collection_unlink(
541
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
542
- execution_context: int | str | None = None,
543
- undo: bool | None = None,
508
+ execution_context: int | str | None = None, undo: bool | None = None
544
509
  ):
545
510
  """Unlink the collection from all objects
546
511
 
547
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
548
512
  :type execution_context: int | str | None
549
513
  :type undo: bool | None
550
514
  """
551
515
 
552
516
  def constraint_add(
553
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
554
517
  execution_context: int | str | None = None,
555
518
  undo: bool | None = None,
519
+ /,
556
520
  *,
557
521
  type: str | None = "",
558
522
  ):
559
523
  """Add a constraint to the active object
560
524
 
561
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
562
525
  :type execution_context: int | str | None
563
526
  :type undo: bool | None
564
527
  :param type: Type
@@ -566,15 +529,14 @@ def constraint_add(
566
529
  """
567
530
 
568
531
  def constraint_add_with_targets(
569
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
570
532
  execution_context: int | str | None = None,
571
533
  undo: bool | None = None,
534
+ /,
572
535
  *,
573
536
  type: str | None = "",
574
537
  ):
575
538
  """Add a constraint to the active object, with target (where applicable) set to the selected objects/bones
576
539
 
577
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
578
540
  :type execution_context: int | str | None
579
541
  :type undo: bool | None
580
542
  :param type: Type
@@ -582,47 +544,38 @@ def constraint_add_with_targets(
582
544
  """
583
545
 
584
546
  def constraints_clear(
585
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
586
- execution_context: int | str | None = None,
587
- undo: bool | None = None,
547
+ execution_context: int | str | None = None, undo: bool | None = None
588
548
  ):
589
549
  """Clear all constraints from the selected objects
590
550
 
591
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
592
551
  :type execution_context: int | str | None
593
552
  :type undo: bool | None
594
553
  """
595
554
 
596
555
  def constraints_copy(
597
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
598
- execution_context: int | str | None = None,
599
- undo: bool | None = None,
556
+ execution_context: int | str | None = None, undo: bool | None = None
600
557
  ):
601
558
  """Copy constraints to other selected objects
602
559
 
603
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
604
560
  :type execution_context: int | str | None
605
561
  :type undo: bool | None
606
562
  """
607
563
 
608
564
  def convert(
609
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
610
565
  execution_context: int | str | None = None,
611
566
  undo: bool | None = None,
567
+ /,
612
568
  *,
613
569
  target: typing.Literal["CURVE", "MESH", "POINTCLOUD", "CURVES", "GREASEPENCIL"]
614
570
  | None = "MESH",
615
571
  keep_original: bool | None = False,
616
572
  merge_customdata: bool | None = True,
617
- angle: float | None = 1.22173,
618
573
  thickness: int | None = 5,
619
- seams: bool | None = False,
620
574
  faces: bool | None = True,
621
575
  offset: float | None = 0.01,
622
576
  ):
623
577
  """Convert selected objects to another type
624
578
 
625
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
626
579
  :type execution_context: int | str | None
627
580
  :type undo: bool | None
628
581
  :param target: Target, Type of object to convert to
@@ -646,12 +599,8 @@ def convert(
646
599
  :type keep_original: bool | None
647
600
  :param merge_customdata: Merge UVs, Merge UV coordinates that share a vertex to account for imprecision in some modifiers
648
601
  :type merge_customdata: bool | None
649
- :param angle: Threshold Angle, Threshold to determine ends of the strokes
650
- :type angle: float | None
651
602
  :param thickness: Thickness
652
603
  :type thickness: int | None
653
- :param seams: Only Seam Edges, Convert only seam edges
654
- :type seams: bool | None
655
604
  :param faces: Export Faces, Export faces as filled strokes
656
605
  :type faces: bool | None
657
606
  :param offset: Stroke Offset, Offset strokes from fill
@@ -659,15 +608,14 @@ def convert(
659
608
  """
660
609
 
661
610
  def correctivesmooth_bind(
662
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
663
611
  execution_context: int | str | None = None,
664
612
  undo: bool | None = None,
613
+ /,
665
614
  *,
666
615
  modifier: str = "",
667
616
  ):
668
617
  """Bind base pose in Corrective Smooth modifier
669
618
 
670
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
671
619
  :type execution_context: int | str | None
672
620
  :type undo: bool | None
673
621
  :param modifier: Modifier, Name of the modifier to edit
@@ -675,9 +623,9 @@ def correctivesmooth_bind(
675
623
  """
676
624
 
677
625
  def curves_empty_hair_add(
678
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
679
626
  execution_context: int | str | None = None,
680
627
  undo: bool | None = None,
628
+ /,
681
629
  *,
682
630
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
683
631
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -694,7 +642,6 @@ def curves_empty_hair_add(
694
642
  ):
695
643
  """Add an empty curve object to the scene with the selected mesh as surface
696
644
 
697
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
698
645
  :type execution_context: int | str | None
699
646
  :type undo: bool | None
700
647
  :param align: Align, The alignment of the new object
@@ -717,9 +664,9 @@ def curves_empty_hair_add(
717
664
  """
718
665
 
719
666
  def curves_random_add(
720
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
721
667
  execution_context: int | str | None = None,
722
668
  undo: bool | None = None,
669
+ /,
723
670
  *,
724
671
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
725
672
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -736,7 +683,6 @@ def curves_random_add(
736
683
  ):
737
684
  """Add a curves object with random curves to the scene
738
685
 
739
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
740
686
  :type execution_context: int | str | None
741
687
  :type undo: bool | None
742
688
  :param align: Align, The alignment of the new object
@@ -759,13 +705,13 @@ def curves_random_add(
759
705
  """
760
706
 
761
707
  def data_instance_add(
762
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
763
708
  execution_context: int | str | None = None,
764
709
  undo: bool | None = None,
710
+ /,
765
711
  *,
766
712
  name: str = "",
767
713
  session_uid: int | None = 0,
768
- type: bpy.typing.IdTypeItems | None = "ACTION",
714
+ type: bpy._typing.rna_enums.IdTypeItems | None = "ACTION",
769
715
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
770
716
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
771
717
  0.0,
@@ -783,7 +729,6 @@ def data_instance_add(
783
729
  ):
784
730
  """Add an object data instance
785
731
 
786
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
787
732
  :type execution_context: int | str | None
788
733
  :type undo: bool | None
789
734
  :param name: Name, Name of the data-block to use by the operator
@@ -791,7 +736,7 @@ def data_instance_add(
791
736
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
792
737
  :type session_uid: int | None
793
738
  :param type: Type
794
- :type type: bpy.typing.IdTypeItems | None
739
+ :type type: bpy._typing.rna_enums.IdTypeItems | None
795
740
  :param align: Align, The alignment of the new object
796
741
 
797
742
  WORLD
@@ -816,9 +761,9 @@ def data_instance_add(
816
761
  """
817
762
 
818
763
  def data_transfer(
819
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
820
764
  execution_context: int | str | None = None,
821
765
  undo: bool | None = None,
766
+ /,
822
767
  *,
823
768
  use_reverse_transfer: bool | None = False,
824
769
  use_freeze: bool | None = False,
@@ -839,24 +784,23 @@ def data_transfer(
839
784
  ]
840
785
  | None = "",
841
786
  use_create: bool | None = True,
842
- vert_mapping: bpy.typing.DtMethodVertexItems | None = "NEAREST",
843
- edge_mapping: bpy.typing.DtMethodEdgeItems | None = "NEAREST",
844
- loop_mapping: bpy.typing.DtMethodLoopItems | None = "NEAREST_POLYNOR",
845
- poly_mapping: bpy.typing.DtMethodPolyItems | None = "NEAREST",
787
+ vert_mapping: bpy._typing.rna_enums.DtMethodVertexItems | None = "NEAREST",
788
+ edge_mapping: bpy._typing.rna_enums.DtMethodEdgeItems | None = "NEAREST",
789
+ loop_mapping: bpy._typing.rna_enums.DtMethodLoopItems | None = "NEAREST_POLYNOR",
790
+ poly_mapping: bpy._typing.rna_enums.DtMethodPolyItems | None = "NEAREST",
846
791
  use_auto_transform: bool | None = False,
847
792
  use_object_transform: bool | None = True,
848
793
  use_max_distance: bool | None = False,
849
794
  max_distance: float | None = 1.0,
850
795
  ray_radius: float | None = 0.0,
851
796
  islands_precision: float | None = 0.1,
852
- layers_select_src: bpy.typing.DtLayersSelectSrcItems | None = "ACTIVE",
853
- layers_select_dst: bpy.typing.DtLayersSelectDstItems | None = "ACTIVE",
854
- mix_mode: bpy.typing.DtMixModeItems | None = "REPLACE",
797
+ layers_select_src: bpy._typing.rna_enums.DtLayersSelectSrcItems | None = "ACTIVE",
798
+ layers_select_dst: bpy._typing.rna_enums.DtLayersSelectDstItems | None = "ACTIVE",
799
+ mix_mode: bpy._typing.rna_enums.DtMixModeItems | None = "REPLACE",
855
800
  mix_factor: float | None = 1.0,
856
801
  ):
857
802
  """Transfer data layer(s) (weights, edge sharp, etc.) from active to selected meshes
858
803
 
859
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
860
804
  :type execution_context: int | str | None
861
805
  :type undo: bool | None
862
806
  :param use_reverse_transfer: Reverse Transfer, Transfer from selected objects to active one
@@ -907,13 +851,13 @@ def data_transfer(
907
851
  :param use_create: Create Data, Add data layers on destination meshes if needed
908
852
  :type use_create: bool | None
909
853
  :param vert_mapping: Vertex Mapping, Method used to map source vertices to destination ones
910
- :type vert_mapping: bpy.typing.DtMethodVertexItems | None
854
+ :type vert_mapping: bpy._typing.rna_enums.DtMethodVertexItems | None
911
855
  :param edge_mapping: Edge Mapping, Method used to map source edges to destination ones
912
- :type edge_mapping: bpy.typing.DtMethodEdgeItems | None
856
+ :type edge_mapping: bpy._typing.rna_enums.DtMethodEdgeItems | None
913
857
  :param loop_mapping: Face Corner Mapping, Method used to map source faces' corners to destination ones
914
- :type loop_mapping: bpy.typing.DtMethodLoopItems | None
858
+ :type loop_mapping: bpy._typing.rna_enums.DtMethodLoopItems | None
915
859
  :param poly_mapping: Face Mapping, Method used to map source faces to destination ones
916
- :type poly_mapping: bpy.typing.DtMethodPolyItems | None
860
+ :type poly_mapping: bpy._typing.rna_enums.DtMethodPolyItems | None
917
861
  :param use_auto_transform: Auto Transform, Automatically compute transformation to get the best possible match between source and destination meshes.Warning: Results will never be as good as manual matching of objects
918
862
  :type use_auto_transform: bool | None
919
863
  :param use_object_transform: Object Transform, Evaluate source and destination meshes in global space
@@ -927,19 +871,19 @@ def data_transfer(
927
871
  :param islands_precision: Islands Precision, Factor controlling precision of islands handling (the higher, the better the results)
928
872
  :type islands_precision: float | None
929
873
  :param layers_select_src: Source Layers Selection, Which layers to transfer, in case of multi-layers types
930
- :type layers_select_src: bpy.typing.DtLayersSelectSrcItems | None
874
+ :type layers_select_src: bpy._typing.rna_enums.DtLayersSelectSrcItems | None
931
875
  :param layers_select_dst: Destination Layers Matching, How to match source and destination layers
932
- :type layers_select_dst: bpy.typing.DtLayersSelectDstItems | None
876
+ :type layers_select_dst: bpy._typing.rna_enums.DtLayersSelectDstItems | None
933
877
  :param mix_mode: Mix Mode, How to affect destination elements with source values
934
- :type mix_mode: bpy.typing.DtMixModeItems | None
878
+ :type mix_mode: bpy._typing.rna_enums.DtMixModeItems | None
935
879
  :param mix_factor: Mix Factor, Factor to use when applying data to destination (exact behavior depends on mix mode)
936
880
  :type mix_factor: float | None
937
881
  """
938
882
 
939
883
  def datalayout_transfer(
940
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
941
884
  execution_context: int | str | None = None,
942
885
  undo: bool | None = None,
886
+ /,
943
887
  *,
944
888
  modifier: str = "",
945
889
  data_type: typing.Literal[
@@ -959,12 +903,11 @@ def datalayout_transfer(
959
903
  ]
960
904
  | None = "",
961
905
  use_delete: bool | None = False,
962
- layers_select_src: bpy.typing.DtLayersSelectSrcItems | None = "ACTIVE",
963
- layers_select_dst: bpy.typing.DtLayersSelectDstItems | None = "ACTIVE",
906
+ layers_select_src: bpy._typing.rna_enums.DtLayersSelectSrcItems | None = "ACTIVE",
907
+ layers_select_dst: bpy._typing.rna_enums.DtLayersSelectDstItems | None = "ACTIVE",
964
908
  ):
965
909
  """Transfer layout of data layer(s) from active to selected meshes
966
910
 
967
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
968
911
  :type execution_context: int | str | None
969
912
  :type undo: bool | None
970
913
  :param modifier: Modifier, Name of the modifier to edit
@@ -1013,22 +956,21 @@ def datalayout_transfer(
1013
956
  :param use_delete: Exact Match, Also delete some data layers from destination if necessary, so that it matches exactly source
1014
957
  :type use_delete: bool | None
1015
958
  :param layers_select_src: Source Layers Selection, Which layers to transfer, in case of multi-layers types
1016
- :type layers_select_src: bpy.typing.DtLayersSelectSrcItems | None
959
+ :type layers_select_src: bpy._typing.rna_enums.DtLayersSelectSrcItems | None
1017
960
  :param layers_select_dst: Destination Layers Matching, How to match source and destination layers
1018
- :type layers_select_dst: bpy.typing.DtLayersSelectDstItems | None
961
+ :type layers_select_dst: bpy._typing.rna_enums.DtLayersSelectDstItems | None
1019
962
  """
1020
963
 
1021
964
  def delete(
1022
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1023
965
  execution_context: int | str | None = None,
1024
966
  undo: bool | None = None,
967
+ /,
1025
968
  *,
1026
969
  use_global: bool | None = False,
1027
970
  confirm: bool | None = True,
1028
971
  ):
1029
972
  """Delete selected objects
1030
973
 
1031
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1032
974
  :type execution_context: int | str | None
1033
975
  :type undo: bool | None
1034
976
  :param use_global: Delete Globally, Remove object from all scenes
@@ -1038,16 +980,15 @@ def delete(
1038
980
  """
1039
981
 
1040
982
  def drop_geometry_nodes(
1041
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1042
983
  execution_context: int | str | None = None,
1043
984
  undo: bool | None = None,
985
+ /,
1044
986
  *,
1045
987
  session_uid: int | None = 0,
1046
988
  show_datablock_in_modifier: bool | None = True,
1047
989
  ):
1048
990
  """Undocumented, consider contributing.
1049
991
 
1050
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1051
992
  :type execution_context: int | str | None
1052
993
  :type undo: bool | None
1053
994
  :param session_uid: Session UID, Session UID of the geometry node group being dropped
@@ -1057,16 +998,15 @@ def drop_geometry_nodes(
1057
998
  """
1058
999
 
1059
1000
  def drop_named_material(
1060
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1061
1001
  execution_context: int | str | None = None,
1062
1002
  undo: bool | None = None,
1003
+ /,
1063
1004
  *,
1064
1005
  name: str = "",
1065
1006
  session_uid: int | None = 0,
1066
1007
  ):
1067
1008
  """Undocumented, consider contributing.
1068
1009
 
1069
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1070
1010
  :type execution_context: int | str | None
1071
1011
  :type undo: bool | None
1072
1012
  :param name: Name, Name of the data-block to use by the operator
@@ -1076,35 +1016,33 @@ def drop_named_material(
1076
1016
  """
1077
1017
 
1078
1018
  def duplicate(
1079
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1080
1019
  execution_context: int | str | None = None,
1081
1020
  undo: bool | None = None,
1021
+ /,
1082
1022
  *,
1083
1023
  linked: bool | None = False,
1084
- mode: bpy.typing.TransformModeTypeItems | None = "TRANSLATION",
1024
+ mode: bpy._typing.rna_enums.TransformModeTypeItems | None = "TRANSLATION",
1085
1025
  ):
1086
1026
  """Duplicate selected objects
1087
1027
 
1088
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1089
1028
  :type execution_context: int | str | None
1090
1029
  :type undo: bool | None
1091
1030
  :param linked: Linked, Duplicate object but not object data, linking to the original data
1092
1031
  :type linked: bool | None
1093
1032
  :param mode: Mode
1094
- :type mode: bpy.typing.TransformModeTypeItems | None
1033
+ :type mode: bpy._typing.rna_enums.TransformModeTypeItems | None
1095
1034
  """
1096
1035
 
1097
1036
  def duplicate_move(
1098
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1099
1037
  execution_context: int | str | None = None,
1100
1038
  undo: bool | None = None,
1039
+ /,
1101
1040
  *,
1102
1041
  OBJECT_OT_duplicate: duplicate | None = None,
1103
1042
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
1104
1043
  ):
1105
1044
  """Duplicate the selected objects and move them
1106
1045
 
1107
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1108
1046
  :type execution_context: int | str | None
1109
1047
  :type undo: bool | None
1110
1048
  :param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
@@ -1114,16 +1052,15 @@ def duplicate_move(
1114
1052
  """
1115
1053
 
1116
1054
  def duplicate_move_linked(
1117
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1118
1055
  execution_context: int | str | None = None,
1119
1056
  undo: bool | None = None,
1057
+ /,
1120
1058
  *,
1121
1059
  OBJECT_OT_duplicate: duplicate | None = None,
1122
1060
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
1123
1061
  ):
1124
1062
  """Duplicate the selected objects, but not their object data, and move them
1125
1063
 
1126
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1127
1064
  :type execution_context: int | str | None
1128
1065
  :type undo: bool | None
1129
1066
  :param OBJECT_OT_duplicate: Duplicate Objects, Duplicate selected objects
@@ -1133,16 +1070,15 @@ def duplicate_move_linked(
1133
1070
  """
1134
1071
 
1135
1072
  def duplicates_make_real(
1136
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1137
1073
  execution_context: int | str | None = None,
1138
1074
  undo: bool | None = None,
1075
+ /,
1139
1076
  *,
1140
1077
  use_base_parent: bool | None = False,
1141
1078
  use_hierarchy: bool | None = False,
1142
1079
  ):
1143
1080
  """Make instanced objects attached to this object real
1144
1081
 
1145
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1146
1082
  :type execution_context: int | str | None
1147
1083
  :type undo: bool | None
1148
1084
  :param use_base_parent: Parent, Parent newly created objects to the original instancer
@@ -1152,21 +1088,18 @@ def duplicates_make_real(
1152
1088
  """
1153
1089
 
1154
1090
  def editmode_toggle(
1155
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1156
- execution_context: int | str | None = None,
1157
- undo: bool | None = None,
1091
+ execution_context: int | str | None = None, undo: bool | None = None
1158
1092
  ):
1159
1093
  """Toggle object's edit mode
1160
1094
 
1161
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1162
1095
  :type execution_context: int | str | None
1163
1096
  :type undo: bool | None
1164
1097
  """
1165
1098
 
1166
1099
  def effector_add(
1167
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1168
1100
  execution_context: int | str | None = None,
1169
1101
  undo: bool | None = None,
1102
+ /,
1170
1103
  *,
1171
1104
  type: typing.Literal[
1172
1105
  "FORCE",
@@ -1201,7 +1134,6 @@ def effector_add(
1201
1134
  ):
1202
1135
  """Add an empty object with a physics effector to the scene
1203
1136
 
1204
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1205
1137
  :type execution_context: int | str | None
1206
1138
  :type undo: bool | None
1207
1139
  :param type: Type
@@ -1230,11 +1162,11 @@ def effector_add(
1230
1162
  """
1231
1163
 
1232
1164
  def empty_add(
1233
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1234
1165
  execution_context: int | str | None = None,
1235
1166
  undo: bool | None = None,
1167
+ /,
1236
1168
  *,
1237
- type: bpy.typing.ObjectEmptyDrawtypeItems | None = "PLAIN_AXES",
1169
+ type: bpy._typing.rna_enums.ObjectEmptyDrawtypeItems | None = "PLAIN_AXES",
1238
1170
  radius: float | None = 1.0,
1239
1171
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
1240
1172
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -1251,11 +1183,10 @@ def empty_add(
1251
1183
  ):
1252
1184
  """Add an empty object to the scene
1253
1185
 
1254
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1255
1186
  :type execution_context: int | str | None
1256
1187
  :type undo: bool | None
1257
1188
  :param type: Type
1258
- :type type: bpy.typing.ObjectEmptyDrawtypeItems | None
1189
+ :type type: bpy._typing.rna_enums.ObjectEmptyDrawtypeItems | None
1259
1190
  :param radius: Radius
1260
1191
  :type radius: float | None
1261
1192
  :param align: Align, The alignment of the new object
@@ -1278,9 +1209,9 @@ def empty_add(
1278
1209
  """
1279
1210
 
1280
1211
  def empty_image_add(
1281
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1282
1212
  execution_context: int | str | None = None,
1283
1213
  undo: bool | None = None,
1214
+ /,
1284
1215
  *,
1285
1216
  filepath: str = "",
1286
1217
  hide_props_region: bool | None = True,
@@ -1337,7 +1268,6 @@ def empty_image_add(
1337
1268
  ):
1338
1269
  """Add an empty image type to scene with data
1339
1270
 
1340
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1341
1271
  :type execution_context: int | str | None
1342
1272
  :type undo: bool | None
1343
1273
  :param filepath: File Path, Path to file
@@ -1448,15 +1378,14 @@ def empty_image_add(
1448
1378
  """
1449
1379
 
1450
1380
  def explode_refresh(
1451
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1452
1381
  execution_context: int | str | None = None,
1453
1382
  undo: bool | None = None,
1383
+ /,
1454
1384
  *,
1455
1385
  modifier: str = "",
1456
1386
  ):
1457
1387
  """Refresh data in the Explode modifier
1458
1388
 
1459
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1460
1389
  :type execution_context: int | str | None
1461
1390
  :type undo: bool | None
1462
1391
  :param modifier: Modifier, Name of the modifier to edit
@@ -1464,52 +1393,42 @@ def explode_refresh(
1464
1393
  """
1465
1394
 
1466
1395
  def forcefield_toggle(
1467
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1468
- execution_context: int | str | None = None,
1469
- undo: bool | None = None,
1396
+ execution_context: int | str | None = None, undo: bool | None = None
1470
1397
  ):
1471
1398
  """Toggle object's force field
1472
1399
 
1473
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1474
1400
  :type execution_context: int | str | None
1475
1401
  :type undo: bool | None
1476
1402
  """
1477
1403
 
1478
1404
  def game_physics_copy(
1479
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1480
- execution_context: int | str | None = None,
1481
- undo: bool | None = None,
1405
+ execution_context: int | str | None = None, undo: bool | None = None
1482
1406
  ):
1483
1407
  """Copy game physics properties to other selected objects
1484
1408
 
1485
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1486
1409
  :type execution_context: int | str | None
1487
1410
  :type undo: bool | None
1488
1411
  """
1489
1412
 
1490
1413
  def game_property_clear(
1491
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1492
- execution_context: int | str | None = None,
1493
- undo: bool | None = None,
1414
+ execution_context: int | str | None = None, undo: bool | None = None
1494
1415
  ):
1495
1416
  """Remove all game properties from all selected objects
1496
1417
 
1497
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1498
1418
  :type execution_context: int | str | None
1499
1419
  :type undo: bool | None
1500
1420
  """
1501
1421
 
1502
1422
  def game_property_copy(
1503
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1504
1423
  execution_context: int | str | None = None,
1505
1424
  undo: bool | None = None,
1425
+ /,
1506
1426
  *,
1507
1427
  operation: typing.Literal["REPLACE", "MERGE", "COPY"] | None = "COPY",
1508
1428
  property: str | None = "",
1509
1429
  ):
1510
1430
  """Copy/merge/replace a game property from active object to all selected objects
1511
1431
 
1512
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1513
1432
  :type execution_context: int | str | None
1514
1433
  :type undo: bool | None
1515
1434
  :param operation: Operation
@@ -1519,16 +1438,15 @@ def game_property_copy(
1519
1438
  """
1520
1439
 
1521
1440
  def game_property_move(
1522
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1523
1441
  execution_context: int | str | None = None,
1524
1442
  undo: bool | None = None,
1443
+ /,
1525
1444
  *,
1526
1445
  index: int | None = 0,
1527
1446
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
1528
1447
  ):
1529
1448
  """Move game property
1530
1449
 
1531
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1532
1450
  :type execution_context: int | str | None
1533
1451
  :type undo: bool | None
1534
1452
  :param index: Index, Property index to move
@@ -1538,34 +1456,32 @@ def game_property_move(
1538
1456
  """
1539
1457
 
1540
1458
  def game_property_new(
1541
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1542
1459
  execution_context: int | str | None = None,
1543
1460
  undo: bool | None = None,
1461
+ /,
1544
1462
  *,
1545
- type: bpy.typing.GamepropertyTypeItems | None = "FLOAT",
1463
+ type: bpy._typing.rna_enums.GamepropertyTypeItems | None = "FLOAT",
1546
1464
  name: str = "",
1547
1465
  ):
1548
1466
  """Create a new property available to the game engine
1549
1467
 
1550
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1551
1468
  :type execution_context: int | str | None
1552
1469
  :type undo: bool | None
1553
1470
  :param type: Type, Type of game property to add
1554
- :type type: bpy.typing.GamepropertyTypeItems | None
1471
+ :type type: bpy._typing.rna_enums.GamepropertyTypeItems | None
1555
1472
  :param name: Name, Name of the game property to add
1556
1473
  :type name: str
1557
1474
  """
1558
1475
 
1559
1476
  def game_property_remove(
1560
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1561
1477
  execution_context: int | str | None = None,
1562
1478
  undo: bool | None = None,
1479
+ /,
1563
1480
  *,
1564
1481
  index: int | None = 0,
1565
1482
  ):
1566
1483
  """Remove game property
1567
1484
 
1568
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1569
1485
  :type execution_context: int | str | None
1570
1486
  :type undo: bool | None
1571
1487
  :param index: Index, Property index to remove
@@ -1573,9 +1489,9 @@ def game_property_remove(
1573
1489
  """
1574
1490
 
1575
1491
  def geometry_node_bake_delete_single(
1576
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1577
1492
  execution_context: int | str | None = None,
1578
1493
  undo: bool | None = None,
1494
+ /,
1579
1495
  *,
1580
1496
  session_uid: int | None = 0,
1581
1497
  modifier_name: str = "",
@@ -1583,7 +1499,6 @@ def geometry_node_bake_delete_single(
1583
1499
  ):
1584
1500
  """Delete baked data of a single bake node or simulation
1585
1501
 
1586
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1587
1502
  :type execution_context: int | str | None
1588
1503
  :type undo: bool | None
1589
1504
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -1595,9 +1510,9 @@ def geometry_node_bake_delete_single(
1595
1510
  """
1596
1511
 
1597
1512
  def geometry_node_bake_pack_single(
1598
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1599
1513
  execution_context: int | str | None = None,
1600
1514
  undo: bool | None = None,
1515
+ /,
1601
1516
  *,
1602
1517
  session_uid: int | None = 0,
1603
1518
  modifier_name: str = "",
@@ -1605,7 +1520,6 @@ def geometry_node_bake_pack_single(
1605
1520
  ):
1606
1521
  """Pack baked data from disk into the .blend file
1607
1522
 
1608
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1609
1523
  :type execution_context: int | str | None
1610
1524
  :type undo: bool | None
1611
1525
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -1617,9 +1531,9 @@ def geometry_node_bake_pack_single(
1617
1531
  """
1618
1532
 
1619
1533
  def geometry_node_bake_single(
1620
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1621
1534
  execution_context: int | str | None = None,
1622
1535
  undo: bool | None = None,
1536
+ /,
1623
1537
  *,
1624
1538
  session_uid: int | None = 0,
1625
1539
  modifier_name: str = "",
@@ -1627,7 +1541,6 @@ def geometry_node_bake_single(
1627
1541
  ):
1628
1542
  """Bake a single bake node or simulation
1629
1543
 
1630
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1631
1544
  :type execution_context: int | str | None
1632
1545
  :type undo: bool | None
1633
1546
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -1639,9 +1552,9 @@ def geometry_node_bake_single(
1639
1552
  """
1640
1553
 
1641
1554
  def geometry_node_bake_unpack_single(
1642
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1643
1555
  execution_context: int | str | None = None,
1644
1556
  undo: bool | None = None,
1557
+ /,
1645
1558
  *,
1646
1559
  session_uid: int | None = 0,
1647
1560
  modifier_name: str = "",
@@ -1651,7 +1564,6 @@ def geometry_node_bake_unpack_single(
1651
1564
  ):
1652
1565
  """Unpack baked data from the .blend file to disk
1653
1566
 
1654
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1655
1567
  :type execution_context: int | str | None
1656
1568
  :type undo: bool | None
1657
1569
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -1665,28 +1577,24 @@ def geometry_node_bake_unpack_single(
1665
1577
  """
1666
1578
 
1667
1579
  def geometry_node_tree_copy_assign(
1668
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1669
- execution_context: int | str | None = None,
1670
- undo: bool | None = None,
1580
+ execution_context: int | str | None = None, undo: bool | None = None
1671
1581
  ):
1672
1582
  """Copy the active geometry node group and assign it to the active modifier
1673
1583
 
1674
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1675
1584
  :type execution_context: int | str | None
1676
1585
  :type undo: bool | None
1677
1586
  """
1678
1587
 
1679
1588
  def geometry_nodes_input_attribute_toggle(
1680
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1681
1589
  execution_context: int | str | None = None,
1682
1590
  undo: bool | None = None,
1591
+ /,
1683
1592
  *,
1684
1593
  input_name: str = "",
1685
1594
  modifier_name: str = "",
1686
1595
  ):
1687
1596
  """Switch between an attribute and a single value to define the data for every element
1688
1597
 
1689
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1690
1598
  :type execution_context: int | str | None
1691
1599
  :type undo: bool | None
1692
1600
  :param input_name: Input Name
@@ -1696,15 +1604,14 @@ def geometry_nodes_input_attribute_toggle(
1696
1604
  """
1697
1605
 
1698
1606
  def geometry_nodes_move_to_nodes(
1699
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1700
1607
  execution_context: int | str | None = None,
1701
1608
  undo: bool | None = None,
1609
+ /,
1702
1610
  *,
1703
1611
  use_selected_objects: bool | None = False,
1704
1612
  ):
1705
1613
  """Move inputs and outputs from in the modifier to a new node group
1706
1614
 
1707
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1708
1615
  :type execution_context: int | str | None
1709
1616
  :type undo: bool | None
1710
1617
  :param use_selected_objects: Selected Objects, Affect all selected objects instead of just the active object
@@ -1712,11 +1619,11 @@ def geometry_nodes_move_to_nodes(
1712
1619
  """
1713
1620
 
1714
1621
  def grease_pencil_add(
1715
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1716
1622
  execution_context: int | str | None = None,
1717
1623
  undo: bool | None = None,
1624
+ /,
1718
1625
  *,
1719
- type: bpy.typing.ObjectGpencilTypeItems | None = "EMPTY",
1626
+ type: bpy._typing.rna_enums.ObjectGpencilTypeItems | None = "EMPTY",
1720
1627
  use_in_front: bool | None = True,
1721
1628
  stroke_depth_offset: float | None = 0.05,
1722
1629
  use_lights: bool | None = False,
@@ -1737,11 +1644,10 @@ def grease_pencil_add(
1737
1644
  ):
1738
1645
  """Add a Grease Pencil object to the scene
1739
1646
 
1740
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1741
1647
  :type execution_context: int | str | None
1742
1648
  :type undo: bool | None
1743
1649
  :param type: Type
1744
- :type type: bpy.typing.ObjectGpencilTypeItems | None
1650
+ :type type: bpy._typing.rna_enums.ObjectGpencilTypeItems | None
1745
1651
  :param use_in_front: Show In Front, Show Line Art Grease Pencil in front of everything
1746
1652
  :type use_in_front: bool | None
1747
1653
  :param stroke_depth_offset: Stroke Offset, Stroke offset for the Line Art modifier
@@ -1778,15 +1684,14 @@ def grease_pencil_add(
1778
1684
  """
1779
1685
 
1780
1686
  def grease_pencil_dash_modifier_segment_add(
1781
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1782
1687
  execution_context: int | str | None = None,
1783
1688
  undo: bool | None = None,
1689
+ /,
1784
1690
  *,
1785
1691
  modifier: str = "",
1786
1692
  ):
1787
1693
  """Add a segment to the dash modifier
1788
1694
 
1789
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1790
1695
  :type execution_context: int | str | None
1791
1696
  :type undo: bool | None
1792
1697
  :param modifier: Modifier, Name of the modifier to edit
@@ -1794,16 +1699,15 @@ def grease_pencil_dash_modifier_segment_add(
1794
1699
  """
1795
1700
 
1796
1701
  def grease_pencil_dash_modifier_segment_move(
1797
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1798
1702
  execution_context: int | str | None = None,
1799
1703
  undo: bool | None = None,
1704
+ /,
1800
1705
  *,
1801
1706
  modifier: str = "",
1802
1707
  type: typing.Literal["UP", "DOWN"] | None = "UP",
1803
1708
  ):
1804
1709
  """Move the active dash segment up or down
1805
1710
 
1806
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1807
1711
  :type execution_context: int | str | None
1808
1712
  :type undo: bool | None
1809
1713
  :param modifier: Modifier, Name of the modifier to edit
@@ -1813,16 +1717,15 @@ def grease_pencil_dash_modifier_segment_move(
1813
1717
  """
1814
1718
 
1815
1719
  def grease_pencil_dash_modifier_segment_remove(
1816
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1817
1720
  execution_context: int | str | None = None,
1818
1721
  undo: bool | None = None,
1722
+ /,
1819
1723
  *,
1820
1724
  modifier: str = "",
1821
1725
  index: int | None = 0,
1822
1726
  ):
1823
1727
  """Remove the active segment from the dash modifier
1824
1728
 
1825
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1826
1729
  :type execution_context: int | str | None
1827
1730
  :type undo: bool | None
1828
1731
  :param modifier: Modifier, Name of the modifier to edit
@@ -1832,15 +1735,14 @@ def grease_pencil_dash_modifier_segment_remove(
1832
1735
  """
1833
1736
 
1834
1737
  def grease_pencil_time_modifier_segment_add(
1835
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1836
1738
  execution_context: int | str | None = None,
1837
1739
  undo: bool | None = None,
1740
+ /,
1838
1741
  *,
1839
1742
  modifier: str = "",
1840
1743
  ):
1841
1744
  """Add a segment to the time modifier
1842
1745
 
1843
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1844
1746
  :type execution_context: int | str | None
1845
1747
  :type undo: bool | None
1846
1748
  :param modifier: Modifier, Name of the modifier to edit
@@ -1848,16 +1750,15 @@ def grease_pencil_time_modifier_segment_add(
1848
1750
  """
1849
1751
 
1850
1752
  def grease_pencil_time_modifier_segment_move(
1851
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1852
1753
  execution_context: int | str | None = None,
1853
1754
  undo: bool | None = None,
1755
+ /,
1854
1756
  *,
1855
1757
  modifier: str = "",
1856
1758
  type: typing.Literal["UP", "DOWN"] | None = "UP",
1857
1759
  ):
1858
1760
  """Move the active time segment up or down
1859
1761
 
1860
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1861
1762
  :type execution_context: int | str | None
1862
1763
  :type undo: bool | None
1863
1764
  :param modifier: Modifier, Name of the modifier to edit
@@ -1867,16 +1768,15 @@ def grease_pencil_time_modifier_segment_move(
1867
1768
  """
1868
1769
 
1869
1770
  def grease_pencil_time_modifier_segment_remove(
1870
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1871
1771
  execution_context: int | str | None = None,
1872
1772
  undo: bool | None = None,
1773
+ /,
1873
1774
  *,
1874
1775
  modifier: str = "",
1875
1776
  index: int | None = 0,
1876
1777
  ):
1877
1778
  """Remove the active segment from the time modifier
1878
1779
 
1879
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1880
1780
  :type execution_context: int | str | None
1881
1781
  :type undo: bool | None
1882
1782
  :param modifier: Modifier, Name of the modifier to edit
@@ -1886,9 +1786,9 @@ def grease_pencil_time_modifier_segment_remove(
1886
1786
  """
1887
1787
 
1888
1788
  def hide_collection(
1889
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1890
1789
  execution_context: int | str | None = None,
1891
1790
  undo: bool | None = None,
1791
+ /,
1892
1792
  *,
1893
1793
  collection_index: int | None = -1,
1894
1794
  toggle: bool | None = False,
@@ -1896,7 +1796,6 @@ def hide_collection(
1896
1796
  ):
1897
1797
  """Show only objects in collection (Shift to extend)
1898
1798
 
1899
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1900
1799
  :type execution_context: int | str | None
1901
1800
  :type undo: bool | None
1902
1801
  :param collection_index: Collection Index, Index of the collection to change visibility
@@ -1908,27 +1807,23 @@ def hide_collection(
1908
1807
  """
1909
1808
 
1910
1809
  def hide_render_clear_all(
1911
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1912
- execution_context: int | str | None = None,
1913
- undo: bool | None = None,
1810
+ execution_context: int | str | None = None, undo: bool | None = None
1914
1811
  ):
1915
1812
  """Reveal all render objects by setting the hide render flag
1916
1813
 
1917
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1918
1814
  :type execution_context: int | str | None
1919
1815
  :type undo: bool | None
1920
1816
  """
1921
1817
 
1922
1818
  def hide_view_clear(
1923
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1924
1819
  execution_context: int | str | None = None,
1925
1820
  undo: bool | None = None,
1821
+ /,
1926
1822
  *,
1927
1823
  select: bool | None = True,
1928
1824
  ):
1929
1825
  """Reveal temporarily hidden objects
1930
1826
 
1931
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1932
1827
  :type execution_context: int | str | None
1933
1828
  :type undo: bool | None
1934
1829
  :param select: Select, Select revealed objects
@@ -1936,15 +1831,14 @@ def hide_view_clear(
1936
1831
  """
1937
1832
 
1938
1833
  def hide_view_set(
1939
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1940
1834
  execution_context: int | str | None = None,
1941
1835
  undo: bool | None = None,
1836
+ /,
1942
1837
  *,
1943
1838
  unselected: bool | None = False,
1944
1839
  ):
1945
1840
  """Temporarily hide objects from the viewport
1946
1841
 
1947
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1948
1842
  :type execution_context: int | str | None
1949
1843
  :type undo: bool | None
1950
1844
  :param unselected: Unselected, Hide unselected rather than selected objects
@@ -1952,27 +1846,23 @@ def hide_view_set(
1952
1846
  """
1953
1847
 
1954
1848
  def hook_add_newob(
1955
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1956
- execution_context: int | str | None = None,
1957
- undo: bool | None = None,
1849
+ execution_context: int | str | None = None, undo: bool | None = None
1958
1850
  ):
1959
1851
  """Hook selected vertices to a newly created object
1960
1852
 
1961
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1962
1853
  :type execution_context: int | str | None
1963
1854
  :type undo: bool | None
1964
1855
  """
1965
1856
 
1966
1857
  def hook_add_selob(
1967
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1968
1858
  execution_context: int | str | None = None,
1969
1859
  undo: bool | None = None,
1860
+ /,
1970
1861
  *,
1971
1862
  use_bone: bool | None = False,
1972
1863
  ):
1973
1864
  """Hook selected vertices to the first selected object
1974
1865
 
1975
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1976
1866
  :type execution_context: int | str | None
1977
1867
  :type undo: bool | None
1978
1868
  :param use_bone: Active Bone, Assign the hook to the hook object's active bone
@@ -1980,15 +1870,14 @@ def hook_add_selob(
1980
1870
  """
1981
1871
 
1982
1872
  def hook_assign(
1983
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1984
1873
  execution_context: int | str | None = None,
1985
1874
  undo: bool | None = None,
1875
+ /,
1986
1876
  *,
1987
1877
  modifier: str | None = "",
1988
1878
  ):
1989
1879
  """Assign the selected vertices to a hook
1990
1880
 
1991
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1992
1881
  :type execution_context: int | str | None
1993
1882
  :type undo: bool | None
1994
1883
  :param modifier: Modifier, Modifier number to assign to
@@ -1996,15 +1885,14 @@ def hook_assign(
1996
1885
  """
1997
1886
 
1998
1887
  def hook_recenter(
1999
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2000
1888
  execution_context: int | str | None = None,
2001
1889
  undo: bool | None = None,
1890
+ /,
2002
1891
  *,
2003
1892
  modifier: str | None = "",
2004
1893
  ):
2005
1894
  """Set hook center to cursor position
2006
1895
 
2007
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2008
1896
  :type execution_context: int | str | None
2009
1897
  :type undo: bool | None
2010
1898
  :param modifier: Modifier, Modifier number to assign to
@@ -2012,15 +1900,14 @@ def hook_recenter(
2012
1900
  """
2013
1901
 
2014
1902
  def hook_remove(
2015
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2016
1903
  execution_context: int | str | None = None,
2017
1904
  undo: bool | None = None,
1905
+ /,
2018
1906
  *,
2019
1907
  modifier: str | None = "",
2020
1908
  ):
2021
1909
  """Remove a hook from the active object
2022
1910
 
2023
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2024
1911
  :type execution_context: int | str | None
2025
1912
  :type undo: bool | None
2026
1913
  :param modifier: Modifier, Modifier number to remove
@@ -2028,15 +1915,14 @@ def hook_remove(
2028
1915
  """
2029
1916
 
2030
1917
  def hook_reset(
2031
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2032
1918
  execution_context: int | str | None = None,
2033
1919
  undo: bool | None = None,
1920
+ /,
2034
1921
  *,
2035
1922
  modifier: str | None = "",
2036
1923
  ):
2037
1924
  """Recalculate and clear offset transformation
2038
1925
 
2039
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2040
1926
  :type execution_context: int | str | None
2041
1927
  :type undo: bool | None
2042
1928
  :param modifier: Modifier, Modifier number to assign to
@@ -2044,15 +1930,14 @@ def hook_reset(
2044
1930
  """
2045
1931
 
2046
1932
  def hook_select(
2047
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2048
1933
  execution_context: int | str | None = None,
2049
1934
  undo: bool | None = None,
1935
+ /,
2050
1936
  *,
2051
1937
  modifier: str | None = "",
2052
1938
  ):
2053
1939
  """Select affected vertices on mesh
2054
1940
 
2055
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2056
1941
  :type execution_context: int | str | None
2057
1942
  :type undo: bool | None
2058
1943
  :param modifier: Modifier, Modifier number to remove
@@ -2060,99 +1945,71 @@ def hook_select(
2060
1945
  """
2061
1946
 
2062
1947
  def instance_offset_from_cursor(
2063
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2064
- execution_context: int | str | None = None,
2065
- undo: bool | None = None,
1948
+ execution_context: int | str | None = None, undo: bool | None = None
2066
1949
  ):
2067
1950
  """Set offset used for collection instances based on cursor position
2068
1951
 
2069
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2070
1952
  :type execution_context: int | str | None
2071
1953
  :type undo: bool | None
2072
1954
  """
2073
1955
 
2074
1956
  def instance_offset_from_object(
2075
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2076
- execution_context: int | str | None = None,
2077
- undo: bool | None = None,
1957
+ execution_context: int | str | None = None, undo: bool | None = None
2078
1958
  ):
2079
1959
  """Set offset used for collection instances based on the active object position
2080
1960
 
2081
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2082
1961
  :type execution_context: int | str | None
2083
1962
  :type undo: bool | None
2084
1963
  """
2085
1964
 
2086
1965
  def instance_offset_to_cursor(
2087
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2088
- execution_context: int | str | None = None,
2089
- undo: bool | None = None,
1966
+ execution_context: int | str | None = None, undo: bool | None = None
2090
1967
  ):
2091
1968
  """Set cursor position to the offset used for collection instances
2092
1969
 
2093
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2094
1970
  :type execution_context: int | str | None
2095
1971
  :type undo: bool | None
2096
1972
  """
2097
1973
 
2098
1974
  def isolate_type_render(
2099
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2100
- execution_context: int | str | None = None,
2101
- undo: bool | None = None,
1975
+ execution_context: int | str | None = None, undo: bool | None = None
2102
1976
  ):
2103
1977
  """Hide unselected render objects of same type as active by setting the hide render flag
2104
1978
 
2105
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2106
1979
  :type execution_context: int | str | None
2107
1980
  :type undo: bool | None
2108
1981
  """
2109
1982
 
2110
- def join(
2111
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2112
- execution_context: int | str | None = None,
2113
- undo: bool | None = None,
2114
- ):
1983
+ def join(execution_context: int | str | None = None, undo: bool | None = None):
2115
1984
  """Join selected objects into active object
2116
1985
 
2117
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2118
1986
  :type execution_context: int | str | None
2119
1987
  :type undo: bool | None
2120
1988
  """
2121
1989
 
2122
- def join_shapes(
2123
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2124
- execution_context: int | str | None = None,
2125
- undo: bool | None = None,
2126
- ):
1990
+ def join_shapes(execution_context: int | str | None = None, undo: bool | None = None):
2127
1991
  """Copy the current resulting shape of another selected object to this one
2128
1992
 
2129
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2130
1993
  :type execution_context: int | str | None
2131
1994
  :type undo: bool | None
2132
1995
  """
2133
1996
 
2134
- def join_uvs(
2135
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2136
- execution_context: int | str | None = None,
2137
- undo: bool | None = None,
2138
- ):
1997
+ def join_uvs(execution_context: int | str | None = None, undo: bool | None = None):
2139
1998
  """Transfer UV Maps from active to selected objects (needs matching geometry)
2140
1999
 
2141
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2142
2000
  :type execution_context: int | str | None
2143
2001
  :type undo: bool | None
2144
2002
  """
2145
2003
 
2146
2004
  def laplaciandeform_bind(
2147
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2148
2005
  execution_context: int | str | None = None,
2149
2006
  undo: bool | None = None,
2007
+ /,
2150
2008
  *,
2151
2009
  modifier: str = "",
2152
2010
  ):
2153
2011
  """Bind mesh to system in laplacian deform modifier
2154
2012
 
2155
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2156
2013
  :type execution_context: int | str | None
2157
2014
  :type undo: bool | None
2158
2015
  :param modifier: Modifier, Name of the modifier to edit
@@ -2160,11 +2017,11 @@ def laplaciandeform_bind(
2160
2017
  """
2161
2018
 
2162
2019
  def light_add(
2163
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2164
2020
  execution_context: int | str | None = None,
2165
2021
  undo: bool | None = None,
2022
+ /,
2166
2023
  *,
2167
- type: bpy.typing.LightTypeItems | None = "POINT",
2024
+ type: bpy._typing.rna_enums.LightTypeItems | None = "POINT",
2168
2025
  radius: float | None = 1.0,
2169
2026
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
2170
2027
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -2181,11 +2038,10 @@ def light_add(
2181
2038
  ):
2182
2039
  """Add a light object to the scene
2183
2040
 
2184
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2185
2041
  :type execution_context: int | str | None
2186
2042
  :type undo: bool | None
2187
2043
  :param type: Type
2188
- :type type: bpy.typing.LightTypeItems | None
2044
+ :type type: bpy._typing.rna_enums.LightTypeItems | None
2189
2045
  :param radius: Radius
2190
2046
  :type radius: float | None
2191
2047
  :param align: Align, The alignment of the new object
@@ -2208,27 +2064,23 @@ def light_add(
2208
2064
  """
2209
2065
 
2210
2066
  def light_linking_blocker_collection_new(
2211
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2212
- execution_context: int | str | None = None,
2213
- undo: bool | None = None,
2067
+ execution_context: int | str | None = None, undo: bool | None = None
2214
2068
  ):
2215
2069
  """Create new light linking collection used by the active emitter
2216
2070
 
2217
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2218
2071
  :type execution_context: int | str | None
2219
2072
  :type undo: bool | None
2220
2073
  """
2221
2074
 
2222
2075
  def light_linking_blockers_link(
2223
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2224
2076
  execution_context: int | str | None = None,
2225
2077
  undo: bool | None = None,
2078
+ /,
2226
2079
  *,
2227
2080
  link_state: typing.Literal["INCLUDE", "EXCLUDE"] | None = "INCLUDE",
2228
2081
  ):
2229
2082
  """Light link selected blockers to the active emitter object
2230
2083
 
2231
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2232
2084
  :type execution_context: int | str | None
2233
2085
  :type undo: bool | None
2234
2086
  :param link_state: Link State, State of the shadow linking
@@ -2242,39 +2094,32 @@ def light_linking_blockers_link(
2242
2094
  """
2243
2095
 
2244
2096
  def light_linking_blockers_select(
2245
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2246
- execution_context: int | str | None = None,
2247
- undo: bool | None = None,
2097
+ execution_context: int | str | None = None, undo: bool | None = None
2248
2098
  ):
2249
2099
  """Select all objects which block light from this emitter
2250
2100
 
2251
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2252
2101
  :type execution_context: int | str | None
2253
2102
  :type undo: bool | None
2254
2103
  """
2255
2104
 
2256
2105
  def light_linking_receiver_collection_new(
2257
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2258
- execution_context: int | str | None = None,
2259
- undo: bool | None = None,
2106
+ execution_context: int | str | None = None, undo: bool | None = None
2260
2107
  ):
2261
2108
  """Create new light linking collection used by the active emitter
2262
2109
 
2263
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2264
2110
  :type execution_context: int | str | None
2265
2111
  :type undo: bool | None
2266
2112
  """
2267
2113
 
2268
2114
  def light_linking_receivers_link(
2269
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2270
2115
  execution_context: int | str | None = None,
2271
2116
  undo: bool | None = None,
2117
+ /,
2272
2118
  *,
2273
2119
  link_state: typing.Literal["INCLUDE", "EXCLUDE"] | None = "INCLUDE",
2274
2120
  ):
2275
2121
  """Light link selected receivers to the active emitter object
2276
2122
 
2277
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2278
2123
  :type execution_context: int | str | None
2279
2124
  :type undo: bool | None
2280
2125
  :param link_state: Link State, State of the light linking
@@ -2288,33 +2133,27 @@ def light_linking_receivers_link(
2288
2133
  """
2289
2134
 
2290
2135
  def light_linking_receivers_select(
2291
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2292
- execution_context: int | str | None = None,
2293
- undo: bool | None = None,
2136
+ execution_context: int | str | None = None, undo: bool | None = None
2294
2137
  ):
2295
2138
  """Select all objects which receive light from this emitter
2296
2139
 
2297
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2298
2140
  :type execution_context: int | str | None
2299
2141
  :type undo: bool | None
2300
2142
  """
2301
2143
 
2302
2144
  def light_linking_unlink_from_collection(
2303
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2304
- execution_context: int | str | None = None,
2305
- undo: bool | None = None,
2145
+ execution_context: int | str | None = None, undo: bool | None = None
2306
2146
  ):
2307
2147
  """Remove this object or collection from the light linking collection
2308
2148
 
2309
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2310
2149
  :type execution_context: int | str | None
2311
2150
  :type undo: bool | None
2312
2151
  """
2313
2152
 
2314
2153
  def lightprobe_add(
2315
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2316
2154
  execution_context: int | str | None = None,
2317
2155
  undo: bool | None = None,
2156
+ /,
2318
2157
  *,
2319
2158
  type: typing.Literal["SPHERE", "PLANE", "VOLUME"] | None = "SPHERE",
2320
2159
  radius: float | None = 1.0,
@@ -2334,7 +2173,6 @@ def lightprobe_add(
2334
2173
  ):
2335
2174
  """Add a light probe object
2336
2175
 
2337
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2338
2176
  :type execution_context: int | str | None
2339
2177
  :type undo: bool | None
2340
2178
  :param type: Type
@@ -2372,15 +2210,14 @@ def lightprobe_add(
2372
2210
  """
2373
2211
 
2374
2212
  def lightprobe_cache_bake(
2375
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2376
2213
  execution_context: int | str | None = None,
2377
2214
  undo: bool | None = None,
2215
+ /,
2378
2216
  *,
2379
2217
  subset: typing.Literal["ALL", "SELECTED", "ACTIVE"] | None = "ALL",
2380
2218
  ):
2381
2219
  """Bake irradiance volume light cache
2382
2220
 
2383
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2384
2221
  :type execution_context: int | str | None
2385
2222
  :type undo: bool | None
2386
2223
  :param subset: Subset, Subset of probes to update
@@ -2397,15 +2234,14 @@ def lightprobe_cache_bake(
2397
2234
  """
2398
2235
 
2399
2236
  def lightprobe_cache_free(
2400
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2401
2237
  execution_context: int | str | None = None,
2402
2238
  undo: bool | None = None,
2239
+ /,
2403
2240
  *,
2404
2241
  subset: typing.Literal["ALL", "SELECTED", "ACTIVE"] | None = "SELECTED",
2405
2242
  ):
2406
2243
  """Delete cached indirect lighting
2407
2244
 
2408
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2409
2245
  :type execution_context: int | str | None
2410
2246
  :type undo: bool | None
2411
2247
  :param subset: Subset, Subset of probes to update
@@ -2422,15 +2258,14 @@ def lightprobe_cache_free(
2422
2258
  """
2423
2259
 
2424
2260
  def lineart_bake_strokes(
2425
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2426
2261
  execution_context: int | str | None = None,
2427
2262
  undo: bool | None = None,
2263
+ /,
2428
2264
  *,
2429
2265
  bake_all: bool | None = False,
2430
2266
  ):
2431
2267
  """Bake Line Art for current Grease Pencil object
2432
2268
 
2433
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2434
2269
  :type execution_context: int | str | None
2435
2270
  :type undo: bool | None
2436
2271
  :param bake_all: Bake All, Bake all Line Art modifiers
@@ -2438,15 +2273,14 @@ def lineart_bake_strokes(
2438
2273
  """
2439
2274
 
2440
2275
  def lineart_clear(
2441
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2442
2276
  execution_context: int | str | None = None,
2443
2277
  undo: bool | None = None,
2278
+ /,
2444
2279
  *,
2445
2280
  clear_all: bool | None = False,
2446
2281
  ):
2447
2282
  """Clear all strokes in current Grease Pencil object
2448
2283
 
2449
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2450
2284
  :type execution_context: int | str | None
2451
2285
  :type undo: bool | None
2452
2286
  :param clear_all: Clear All, Clear all Line Art modifier bakes
@@ -2454,9 +2288,9 @@ def lineart_clear(
2454
2288
  """
2455
2289
 
2456
2290
  def link_to_collection(
2457
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2458
2291
  execution_context: int | str | None = None,
2459
2292
  undo: bool | None = None,
2293
+ /,
2460
2294
  *,
2461
2295
  collection_index: int | None = -1,
2462
2296
  is_new: bool | None = False,
@@ -2464,7 +2298,6 @@ def link_to_collection(
2464
2298
  ):
2465
2299
  """Link objects to a collection
2466
2300
 
2467
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2468
2301
  :type execution_context: int | str | None
2469
2302
  :type undo: bool | None
2470
2303
  :param collection_index: Collection Index, Index of the collection to move to
@@ -2476,61 +2309,45 @@ def link_to_collection(
2476
2309
  """
2477
2310
 
2478
2311
  def location_clear(
2479
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2480
2312
  execution_context: int | str | None = None,
2481
2313
  undo: bool | None = None,
2314
+ /,
2482
2315
  *,
2483
2316
  clear_delta: bool | None = False,
2484
2317
  ):
2485
2318
  """Clear the object's location
2486
2319
 
2487
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2488
2320
  :type execution_context: int | str | None
2489
2321
  :type undo: bool | None
2490
2322
  :param clear_delta: Clear Delta, Clear delta location in addition to clearing the normal location transform
2491
2323
  :type clear_delta: bool | None
2492
2324
  """
2493
2325
 
2494
- def lod_add(
2495
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2496
- execution_context: int | str | None = None,
2497
- undo: bool | None = None,
2498
- ):
2326
+ def lod_add(execution_context: int | str | None = None, undo: bool | None = None):
2499
2327
  """Add a level of detail to this object
2500
2328
 
2501
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2502
2329
  :type execution_context: int | str | None
2503
2330
  :type undo: bool | None
2504
2331
  """
2505
2332
 
2506
- def lod_by_name(
2507
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2508
- execution_context: int | str | None = None,
2509
- undo: bool | None = None,
2510
- ):
2333
+ def lod_by_name(execution_context: int | str | None = None, undo: bool | None = None):
2511
2334
  """Add levels of detail to this object based on object names
2512
2335
 
2513
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2514
2336
  :type execution_context: int | str | None
2515
2337
  :type undo: bool | None
2516
2338
  """
2517
2339
 
2518
- def lod_clear_all(
2519
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2520
- execution_context: int | str | None = None,
2521
- undo: bool | None = None,
2522
- ):
2340
+ def lod_clear_all(execution_context: int | str | None = None, undo: bool | None = None):
2523
2341
  """Remove all levels of detail from this object
2524
2342
 
2525
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2526
2343
  :type execution_context: int | str | None
2527
2344
  :type undo: bool | None
2528
2345
  """
2529
2346
 
2530
2347
  def lod_generate(
2531
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2532
2348
  execution_context: int | str | None = None,
2533
2349
  undo: bool | None = None,
2350
+ /,
2534
2351
  *,
2535
2352
  count: int | None = 3,
2536
2353
  target: float | None = 0.1,
@@ -2538,7 +2355,6 @@ def lod_generate(
2538
2355
  ):
2539
2356
  """Generate levels of detail using the decimate modifier
2540
2357
 
2541
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2542
2358
  :type execution_context: int | str | None
2543
2359
  :type undo: bool | None
2544
2360
  :param count: Count
@@ -2550,15 +2366,14 @@ def lod_generate(
2550
2366
  """
2551
2367
 
2552
2368
  def lod_remove(
2553
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2554
2369
  execution_context: int | str | None = None,
2555
2370
  undo: bool | None = None,
2371
+ /,
2556
2372
  *,
2557
2373
  index: int | None = 1,
2558
2374
  ):
2559
2375
  """Remove a level of detail from this object
2560
2376
 
2561
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2562
2377
  :type execution_context: int | str | None
2563
2378
  :type undo: bool | None
2564
2379
  :param index: Index
@@ -2566,33 +2381,27 @@ def lod_remove(
2566
2381
  """
2567
2382
 
2568
2383
  def logic_bricks_copy(
2569
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2570
- execution_context: int | str | None = None,
2571
- undo: bool | None = None,
2384
+ execution_context: int | str | None = None, undo: bool | None = None
2572
2385
  ):
2573
2386
  """Copy logic bricks to other selected objects
2574
2387
 
2575
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2576
2388
  :type execution_context: int | str | None
2577
2389
  :type undo: bool | None
2578
2390
  """
2579
2391
 
2580
2392
  def make_dupli_face(
2581
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2582
- execution_context: int | str | None = None,
2583
- undo: bool | None = None,
2393
+ execution_context: int | str | None = None, undo: bool | None = None
2584
2394
  ):
2585
2395
  """Convert objects into instanced faces
2586
2396
 
2587
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2588
2397
  :type execution_context: int | str | None
2589
2398
  :type undo: bool | None
2590
2399
  """
2591
2400
 
2592
2401
  def make_links_data(
2593
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2594
2402
  execution_context: int | str | None = None,
2595
2403
  undo: bool | None = None,
2404
+ /,
2596
2405
  *,
2597
2406
  type: typing.Literal[
2598
2407
  "OBDATA",
@@ -2608,7 +2417,6 @@ def make_links_data(
2608
2417
  ):
2609
2418
  """Transfer data from active object to selected objects
2610
2419
 
2611
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2612
2420
  :type execution_context: int | str | None
2613
2421
  :type undo: bool | None
2614
2422
  :param type: Type
@@ -2640,15 +2448,14 @@ def make_links_data(
2640
2448
  """
2641
2449
 
2642
2450
  def make_links_scene(
2643
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2644
2451
  execution_context: int | str | None = None,
2645
2452
  undo: bool | None = None,
2453
+ /,
2646
2454
  *,
2647
2455
  scene: str | None = "",
2648
2456
  ):
2649
2457
  """Link selection to another scene
2650
2458
 
2651
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2652
2459
  :type execution_context: int | str | None
2653
2460
  :type undo: bool | None
2654
2461
  :param scene: Scene
@@ -2656,9 +2463,9 @@ def make_links_scene(
2656
2463
  """
2657
2464
 
2658
2465
  def make_local(
2659
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2660
2466
  execution_context: int | str | None = None,
2661
2467
  undo: bool | None = None,
2468
+ /,
2662
2469
  *,
2663
2470
  type: typing.Literal[
2664
2471
  "SELECT_OBJECT", "SELECT_OBDATA", "SELECT_OBDATA_MATERIAL", "ALL"
@@ -2667,7 +2474,6 @@ def make_local(
2667
2474
  ):
2668
2475
  """Make library linked data-blocks local to this file
2669
2476
 
2670
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2671
2477
  :type execution_context: int | str | None
2672
2478
  :type undo: bool | None
2673
2479
  :param type: Type
@@ -2675,15 +2481,14 @@ def make_local(
2675
2481
  """
2676
2482
 
2677
2483
  def make_override_library(
2678
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2679
2484
  execution_context: int | str | None = None,
2680
2485
  undo: bool | None = None,
2486
+ /,
2681
2487
  *,
2682
2488
  collection: int | None = 0,
2683
2489
  ):
2684
2490
  """Create a local override of the selected linked objects, and their hierarchy of dependencies
2685
2491
 
2686
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2687
2492
  :type execution_context: int | str | None
2688
2493
  :type undo: bool | None
2689
2494
  :param collection: Override Collection, Session UID of the directly linked collection containing the selected object, to make an override from
@@ -2691,9 +2496,9 @@ def make_override_library(
2691
2496
  """
2692
2497
 
2693
2498
  def make_single_user(
2694
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2695
2499
  execution_context: int | str | None = None,
2696
2500
  undo: bool | None = None,
2501
+ /,
2697
2502
  *,
2698
2503
  type: typing.Literal["SELECTED_OBJECTS", "ALL"] | None = "SELECTED_OBJECTS",
2699
2504
  object: bool | None = False,
@@ -2704,7 +2509,6 @@ def make_single_user(
2704
2509
  ):
2705
2510
  """Make linked data local to each object
2706
2511
 
2707
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2708
2512
  :type execution_context: int | str | None
2709
2513
  :type undo: bool | None
2710
2514
  :param type: Type
@@ -2722,63 +2526,50 @@ def make_single_user(
2722
2526
  """
2723
2527
 
2724
2528
  def material_slot_add(
2725
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2726
- execution_context: int | str | None = None,
2727
- undo: bool | None = None,
2529
+ execution_context: int | str | None = None, undo: bool | None = None
2728
2530
  ):
2729
2531
  """Add a new material slot
2730
2532
 
2731
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2732
2533
  :type execution_context: int | str | None
2733
2534
  :type undo: bool | None
2734
2535
  """
2735
2536
 
2736
2537
  def material_slot_assign(
2737
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2738
- execution_context: int | str | None = None,
2739
- undo: bool | None = None,
2538
+ execution_context: int | str | None = None, undo: bool | None = None
2740
2539
  ):
2741
2540
  """Assign active material slot to selection
2742
2541
 
2743
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2744
2542
  :type execution_context: int | str | None
2745
2543
  :type undo: bool | None
2746
2544
  """
2747
2545
 
2748
2546
  def material_slot_copy(
2749
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2750
- execution_context: int | str | None = None,
2751
- undo: bool | None = None,
2547
+ execution_context: int | str | None = None, undo: bool | None = None
2752
2548
  ):
2753
2549
  """Copy material to selected objects
2754
2550
 
2755
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2756
2551
  :type execution_context: int | str | None
2757
2552
  :type undo: bool | None
2758
2553
  """
2759
2554
 
2760
2555
  def material_slot_deselect(
2761
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2762
- execution_context: int | str | None = None,
2763
- undo: bool | None = None,
2556
+ execution_context: int | str | None = None, undo: bool | None = None
2764
2557
  ):
2765
2558
  """Deselect by active material slot
2766
2559
 
2767
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2768
2560
  :type execution_context: int | str | None
2769
2561
  :type undo: bool | None
2770
2562
  """
2771
2563
 
2772
2564
  def material_slot_move(
2773
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2774
2565
  execution_context: int | str | None = None,
2775
2566
  undo: bool | None = None,
2567
+ /,
2776
2568
  *,
2777
2569
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
2778
2570
  ):
2779
2571
  """Move the active material up/down in the list
2780
2572
 
2781
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2782
2573
  :type execution_context: int | str | None
2783
2574
  :type undo: bool | None
2784
2575
  :param direction: Direction, Direction to move the active material towards
@@ -2786,51 +2577,41 @@ def material_slot_move(
2786
2577
  """
2787
2578
 
2788
2579
  def material_slot_remove(
2789
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2790
- execution_context: int | str | None = None,
2791
- undo: bool | None = None,
2580
+ execution_context: int | str | None = None, undo: bool | None = None
2792
2581
  ):
2793
2582
  """Remove the selected material slot
2794
2583
 
2795
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2796
2584
  :type execution_context: int | str | None
2797
2585
  :type undo: bool | None
2798
2586
  """
2799
2587
 
2800
2588
  def material_slot_remove_unused(
2801
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2802
- execution_context: int | str | None = None,
2803
- undo: bool | None = None,
2589
+ execution_context: int | str | None = None, undo: bool | None = None
2804
2590
  ):
2805
2591
  """Remove unused material slots
2806
2592
 
2807
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2808
2593
  :type execution_context: int | str | None
2809
2594
  :type undo: bool | None
2810
2595
  """
2811
2596
 
2812
2597
  def material_slot_select(
2813
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2814
- execution_context: int | str | None = None,
2815
- undo: bool | None = None,
2598
+ execution_context: int | str | None = None, undo: bool | None = None
2816
2599
  ):
2817
2600
  """Select by active material slot
2818
2601
 
2819
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2820
2602
  :type execution_context: int | str | None
2821
2603
  :type undo: bool | None
2822
2604
  """
2823
2605
 
2824
2606
  def meshdeform_bind(
2825
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2826
2607
  execution_context: int | str | None = None,
2827
2608
  undo: bool | None = None,
2609
+ /,
2828
2610
  *,
2829
2611
  modifier: str = "",
2830
2612
  ):
2831
2613
  """Bind mesh to cage in mesh deform modifier
2832
2614
 
2833
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2834
2615
  :type execution_context: int | str | None
2835
2616
  :type undo: bool | None
2836
2617
  :param modifier: Modifier, Name of the modifier to edit
@@ -2838,11 +2619,11 @@ def meshdeform_bind(
2838
2619
  """
2839
2620
 
2840
2621
  def metaball_add(
2841
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2842
2622
  execution_context: int | str | None = None,
2843
2623
  undo: bool | None = None,
2624
+ /,
2844
2625
  *,
2845
- type: bpy.typing.MetaelemTypeItems | None = "BALL",
2626
+ type: bpy._typing.rna_enums.MetaelemTypeItems | None = "BALL",
2846
2627
  radius: float | None = 2.0,
2847
2628
  enter_editmode: bool | None = False,
2848
2629
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
@@ -2860,11 +2641,10 @@ def metaball_add(
2860
2641
  ):
2861
2642
  """Add an metaball object to the scene
2862
2643
 
2863
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2864
2644
  :type execution_context: int | str | None
2865
2645
  :type undo: bool | None
2866
2646
  :param type: Primitive
2867
- :type type: bpy.typing.MetaelemTypeItems | None
2647
+ :type type: bpy._typing.rna_enums.MetaelemTypeItems | None
2868
2648
  :param radius: Radius
2869
2649
  :type radius: float | None
2870
2650
  :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
@@ -2889,71 +2669,68 @@ def metaball_add(
2889
2669
  """
2890
2670
 
2891
2671
  def mode_set(
2892
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2893
2672
  execution_context: int | str | None = None,
2894
2673
  undo: bool | None = None,
2674
+ /,
2895
2675
  *,
2896
- mode: bpy.typing.ObjectModeItems | None = "OBJECT",
2676
+ mode: bpy._typing.rna_enums.ObjectModeItems | None = "OBJECT",
2897
2677
  toggle: bool | None = False,
2898
2678
  ):
2899
2679
  """Sets the object interaction mode
2900
2680
 
2901
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2902
2681
  :type execution_context: int | str | None
2903
2682
  :type undo: bool | None
2904
2683
  :param mode: Mode
2905
- :type mode: bpy.typing.ObjectModeItems | None
2684
+ :type mode: bpy._typing.rna_enums.ObjectModeItems | None
2906
2685
  :param toggle: Toggle
2907
2686
  :type toggle: bool | None
2908
2687
  """
2909
2688
 
2910
2689
  def mode_set_with_submode(
2911
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2912
2690
  execution_context: int | str | None = None,
2913
2691
  undo: bool | None = None,
2692
+ /,
2914
2693
  *,
2915
- mode: bpy.typing.ObjectModeItems | None = "OBJECT",
2694
+ mode: bpy._typing.rna_enums.ObjectModeItems | None = "OBJECT",
2916
2695
  toggle: bool | None = False,
2917
- mesh_select_mode: set[bpy.typing.MeshSelectModeItems] | None = {},
2696
+ mesh_select_mode: set[bpy._typing.rna_enums.MeshSelectModeItems] | None = {},
2918
2697
  ):
2919
2698
  """Sets the object interaction mode
2920
2699
 
2921
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2922
2700
  :type execution_context: int | str | None
2923
2701
  :type undo: bool | None
2924
2702
  :param mode: Mode
2925
- :type mode: bpy.typing.ObjectModeItems | None
2703
+ :type mode: bpy._typing.rna_enums.ObjectModeItems | None
2926
2704
  :param toggle: Toggle
2927
2705
  :type toggle: bool | None
2928
2706
  :param mesh_select_mode: Mesh Mode
2929
- :type mesh_select_mode: set[bpy.typing.MeshSelectModeItems] | None
2707
+ :type mesh_select_mode: set[bpy._typing.rna_enums.MeshSelectModeItems] | None
2930
2708
  """
2931
2709
 
2932
2710
  def modifier_add(
2933
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2934
2711
  execution_context: int | str | None = None,
2935
2712
  undo: bool | None = None,
2713
+ /,
2936
2714
  *,
2937
- type: bpy.typing.ObjectModifierTypeItems | None = "SUBSURF",
2715
+ type: bpy._typing.rna_enums.ObjectModifierTypeItems | None = "SUBSURF",
2938
2716
  use_selected_objects: bool | None = False,
2939
2717
  ):
2940
2718
  """Add a procedural operation/effect to the active object
2941
2719
 
2942
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2943
2720
  :type execution_context: int | str | None
2944
2721
  :type undo: bool | None
2945
2722
  :param type: Type
2946
- :type type: bpy.typing.ObjectModifierTypeItems | None
2723
+ :type type: bpy._typing.rna_enums.ObjectModifierTypeItems | None
2947
2724
  :param use_selected_objects: Selected Objects, Affect all selected objects instead of just the active object
2948
2725
  :type use_selected_objects: bool | None
2949
2726
  """
2950
2727
 
2951
2728
  def modifier_add_node_group(
2952
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2953
2729
  execution_context: int | str | None = None,
2954
2730
  undo: bool | None = None,
2731
+ /,
2955
2732
  *,
2956
- asset_library_type: bpy.typing.AssetLibraryTypeItems | None = "LOCAL",
2733
+ asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None = "LOCAL",
2957
2734
  asset_library_identifier: str = "",
2958
2735
  relative_asset_identifier: str = "",
2959
2736
  session_uid: int | None = 0,
@@ -2961,11 +2738,10 @@ def modifier_add_node_group(
2961
2738
  ):
2962
2739
  """Add a procedural operation/effect to the active object
2963
2740
 
2964
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2965
2741
  :type execution_context: int | str | None
2966
2742
  :type undo: bool | None
2967
2743
  :param asset_library_type: Asset Library Type
2968
- :type asset_library_type: bpy.typing.AssetLibraryTypeItems | None
2744
+ :type asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None
2969
2745
  :param asset_library_identifier: Asset Library Identifier
2970
2746
  :type asset_library_identifier: str
2971
2747
  :param relative_asset_identifier: Relative Asset Identifier
@@ -2977,9 +2753,9 @@ def modifier_add_node_group(
2977
2753
  """
2978
2754
 
2979
2755
  def modifier_apply(
2980
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2981
2756
  execution_context: int | str | None = None,
2982
2757
  undo: bool | None = None,
2758
+ /,
2983
2759
  *,
2984
2760
  modifier: str = "",
2985
2761
  report: bool | None = False,
@@ -2990,7 +2766,6 @@ def modifier_apply(
2990
2766
  ):
2991
2767
  """Apply modifier and remove from the stack
2992
2768
 
2993
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2994
2769
  :type execution_context: int | str | None
2995
2770
  :type undo: bool | None
2996
2771
  :param modifier: Modifier, Name of the modifier to edit
@@ -3008,9 +2783,9 @@ def modifier_apply(
3008
2783
  """
3009
2784
 
3010
2785
  def modifier_apply_as_shapekey(
3011
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3012
2786
  execution_context: int | str | None = None,
3013
2787
  undo: bool | None = None,
2788
+ /,
3014
2789
  *,
3015
2790
  keep_modifier: bool | None = False,
3016
2791
  modifier: str = "",
@@ -3019,7 +2794,6 @@ def modifier_apply_as_shapekey(
3019
2794
  ):
3020
2795
  """Apply modifier as a new shape key and remove from the stack
3021
2796
 
3022
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3023
2797
  :type execution_context: int | str | None
3024
2798
  :type undo: bool | None
3025
2799
  :param keep_modifier: Keep Modifier, Do not remove the modifier from stack
@@ -3033,15 +2807,14 @@ def modifier_apply_as_shapekey(
3033
2807
  """
3034
2808
 
3035
2809
  def modifier_convert(
3036
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3037
2810
  execution_context: int | str | None = None,
3038
2811
  undo: bool | None = None,
2812
+ /,
3039
2813
  *,
3040
2814
  modifier: str = "",
3041
2815
  ):
3042
2816
  """Convert particles to a mesh object
3043
2817
 
3044
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3045
2818
  :type execution_context: int | str | None
3046
2819
  :type undo: bool | None
3047
2820
  :param modifier: Modifier, Name of the modifier to edit
@@ -3049,16 +2822,15 @@ def modifier_convert(
3049
2822
  """
3050
2823
 
3051
2824
  def modifier_copy(
3052
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3053
2825
  execution_context: int | str | None = None,
3054
2826
  undo: bool | None = None,
2827
+ /,
3055
2828
  *,
3056
2829
  modifier: str = "",
3057
2830
  use_selected_objects: bool | None = False,
3058
2831
  ):
3059
2832
  """Duplicate modifier at the same position in the stack
3060
2833
 
3061
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3062
2834
  :type execution_context: int | str | None
3063
2835
  :type undo: bool | None
3064
2836
  :param modifier: Modifier, Name of the modifier to edit
@@ -3068,15 +2840,14 @@ def modifier_copy(
3068
2840
  """
3069
2841
 
3070
2842
  def modifier_copy_to_selected(
3071
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3072
2843
  execution_context: int | str | None = None,
3073
2844
  undo: bool | None = None,
2845
+ /,
3074
2846
  *,
3075
2847
  modifier: str = "",
3076
2848
  ):
3077
2849
  """Copy the modifier from the active object to all selected objects
3078
2850
 
3079
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3080
2851
  :type execution_context: int | str | None
3081
2852
  :type undo: bool | None
3082
2853
  :param modifier: Modifier, Name of the modifier to edit
@@ -3084,15 +2855,14 @@ def modifier_copy_to_selected(
3084
2855
  """
3085
2856
 
3086
2857
  def modifier_move_down(
3087
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3088
2858
  execution_context: int | str | None = None,
3089
2859
  undo: bool | None = None,
2860
+ /,
3090
2861
  *,
3091
2862
  modifier: str = "",
3092
2863
  ):
3093
2864
  """Move modifier down in the stack
3094
2865
 
3095
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3096
2866
  :type execution_context: int | str | None
3097
2867
  :type undo: bool | None
3098
2868
  :param modifier: Modifier, Name of the modifier to edit
@@ -3100,9 +2870,9 @@ def modifier_move_down(
3100
2870
  """
3101
2871
 
3102
2872
  def modifier_move_to_index(
3103
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3104
2873
  execution_context: int | str | None = None,
3105
2874
  undo: bool | None = None,
2875
+ /,
3106
2876
  *,
3107
2877
  modifier: str = "",
3108
2878
  index: int | None = 0,
@@ -3110,7 +2880,6 @@ def modifier_move_to_index(
3110
2880
  ):
3111
2881
  """Change the modifier's index in the stack so it evaluates after the set number of others
3112
2882
 
3113
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3114
2883
  :type execution_context: int | str | None
3115
2884
  :type undo: bool | None
3116
2885
  :param modifier: Modifier, Name of the modifier to edit
@@ -3122,15 +2891,14 @@ def modifier_move_to_index(
3122
2891
  """
3123
2892
 
3124
2893
  def modifier_move_up(
3125
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3126
2894
  execution_context: int | str | None = None,
3127
2895
  undo: bool | None = None,
2896
+ /,
3128
2897
  *,
3129
2898
  modifier: str = "",
3130
2899
  ):
3131
2900
  """Move modifier up in the stack
3132
2901
 
3133
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3134
2902
  :type execution_context: int | str | None
3135
2903
  :type undo: bool | None
3136
2904
  :param modifier: Modifier, Name of the modifier to edit
@@ -3138,9 +2906,9 @@ def modifier_move_up(
3138
2906
  """
3139
2907
 
3140
2908
  def modifier_remove(
3141
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3142
2909
  execution_context: int | str | None = None,
3143
2910
  undo: bool | None = None,
2911
+ /,
3144
2912
  *,
3145
2913
  modifier: str = "",
3146
2914
  report: bool | None = False,
@@ -3148,7 +2916,6 @@ def modifier_remove(
3148
2916
  ):
3149
2917
  """Remove a modifier from the active object
3150
2918
 
3151
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3152
2919
  :type execution_context: int | str | None
3153
2920
  :type undo: bool | None
3154
2921
  :param modifier: Modifier, Name of the modifier to edit
@@ -3160,15 +2927,14 @@ def modifier_remove(
3160
2927
  """
3161
2928
 
3162
2929
  def modifier_set_active(
3163
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3164
2930
  execution_context: int | str | None = None,
3165
2931
  undo: bool | None = None,
2932
+ /,
3166
2933
  *,
3167
2934
  modifier: str = "",
3168
2935
  ):
3169
2936
  """Activate the modifier to use as the context
3170
2937
 
3171
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3172
2938
  :type execution_context: int | str | None
3173
2939
  :type undo: bool | None
3174
2940
  :param modifier: Modifier, Name of the modifier to edit
@@ -3176,33 +2942,27 @@ def modifier_set_active(
3176
2942
  """
3177
2943
 
3178
2944
  def modifiers_clear(
3179
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3180
- execution_context: int | str | None = None,
3181
- undo: bool | None = None,
2945
+ execution_context: int | str | None = None, undo: bool | None = None
3182
2946
  ):
3183
2947
  """Clear all modifiers from the selected objects
3184
2948
 
3185
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3186
2949
  :type execution_context: int | str | None
3187
2950
  :type undo: bool | None
3188
2951
  """
3189
2952
 
3190
2953
  def modifiers_copy_to_selected(
3191
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3192
- execution_context: int | str | None = None,
3193
- undo: bool | None = None,
2954
+ execution_context: int | str | None = None, undo: bool | None = None
3194
2955
  ):
3195
2956
  """Copy modifiers to other selected objects
3196
2957
 
3197
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3198
2958
  :type execution_context: int | str | None
3199
2959
  :type undo: bool | None
3200
2960
  """
3201
2961
 
3202
2962
  def move_to_collection(
3203
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3204
2963
  execution_context: int | str | None = None,
3205
2964
  undo: bool | None = None,
2965
+ /,
3206
2966
  *,
3207
2967
  collection_index: int | None = -1,
3208
2968
  is_new: bool | None = False,
@@ -3210,7 +2970,6 @@ def move_to_collection(
3210
2970
  ):
3211
2971
  """Move objects to a collection
3212
2972
 
3213
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3214
2973
  :type execution_context: int | str | None
3215
2974
  :type undo: bool | None
3216
2975
  :param collection_index: Collection Index, Index of the collection to move to
@@ -3222,15 +2981,14 @@ def move_to_collection(
3222
2981
  """
3223
2982
 
3224
2983
  def multires_base_apply(
3225
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3226
2984
  execution_context: int | str | None = None,
3227
2985
  undo: bool | None = None,
2986
+ /,
3228
2987
  *,
3229
2988
  modifier: str = "",
3230
2989
  ):
3231
2990
  """Modify the base mesh to conform to the displaced mesh
3232
2991
 
3233
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3234
2992
  :type execution_context: int | str | None
3235
2993
  :type undo: bool | None
3236
2994
  :param modifier: Modifier, Name of the modifier to edit
@@ -3238,21 +2996,18 @@ def multires_base_apply(
3238
2996
  """
3239
2997
 
3240
2998
  def multires_external_pack(
3241
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3242
- execution_context: int | str | None = None,
3243
- undo: bool | None = None,
2999
+ execution_context: int | str | None = None, undo: bool | None = None
3244
3000
  ):
3245
3001
  """Pack displacements from an external file
3246
3002
 
3247
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3248
3003
  :type execution_context: int | str | None
3249
3004
  :type undo: bool | None
3250
3005
  """
3251
3006
 
3252
3007
  def multires_external_save(
3253
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3254
3008
  execution_context: int | str | None = None,
3255
3009
  undo: bool | None = None,
3010
+ /,
3256
3011
  *,
3257
3012
  filepath: str = "",
3258
3013
  hide_props_region: bool | None = True,
@@ -3285,7 +3040,6 @@ def multires_external_save(
3285
3040
  ):
3286
3041
  """Save displacements to an external file
3287
3042
 
3288
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3289
3043
  :type execution_context: int | str | None
3290
3044
  :type undo: bool | None
3291
3045
  :param filepath: File Path, Path to file
@@ -3353,15 +3107,14 @@ def multires_external_save(
3353
3107
  """
3354
3108
 
3355
3109
  def multires_higher_levels_delete(
3356
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3357
3110
  execution_context: int | str | None = None,
3358
3111
  undo: bool | None = None,
3112
+ /,
3359
3113
  *,
3360
3114
  modifier: str = "",
3361
3115
  ):
3362
3116
  """Deletes the higher resolution mesh, potential loss of detail
3363
3117
 
3364
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3365
3118
  :type execution_context: int | str | None
3366
3119
  :type undo: bool | None
3367
3120
  :param modifier: Modifier, Name of the modifier to edit
@@ -3369,15 +3122,14 @@ def multires_higher_levels_delete(
3369
3122
  """
3370
3123
 
3371
3124
  def multires_rebuild_subdiv(
3372
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3373
3125
  execution_context: int | str | None = None,
3374
3126
  undo: bool | None = None,
3127
+ /,
3375
3128
  *,
3376
3129
  modifier: str = "",
3377
3130
  ):
3378
3131
  """Rebuilds all possible subdivisions levels to generate a lower resolution base mesh
3379
3132
 
3380
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3381
3133
  :type execution_context: int | str | None
3382
3134
  :type undo: bool | None
3383
3135
  :param modifier: Modifier, Name of the modifier to edit
@@ -3385,15 +3137,14 @@ def multires_rebuild_subdiv(
3385
3137
  """
3386
3138
 
3387
3139
  def multires_reshape(
3388
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3389
3140
  execution_context: int | str | None = None,
3390
3141
  undo: bool | None = None,
3142
+ /,
3391
3143
  *,
3392
3144
  modifier: str = "",
3393
3145
  ):
3394
3146
  """Copy vertex coordinates from other object
3395
3147
 
3396
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3397
3148
  :type execution_context: int | str | None
3398
3149
  :type undo: bool | None
3399
3150
  :param modifier: Modifier, Name of the modifier to edit
@@ -3401,16 +3152,15 @@ def multires_reshape(
3401
3152
  """
3402
3153
 
3403
3154
  def multires_subdivide(
3404
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3405
3155
  execution_context: int | str | None = None,
3406
3156
  undo: bool | None = None,
3157
+ /,
3407
3158
  *,
3408
3159
  modifier: str = "",
3409
3160
  mode: typing.Literal["CATMULL_CLARK", "SIMPLE", "LINEAR"] | None = "CATMULL_CLARK",
3410
3161
  ):
3411
3162
  """Add a new level of subdivision
3412
3163
 
3413
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3414
3164
  :type execution_context: int | str | None
3415
3165
  :type undo: bool | None
3416
3166
  :param modifier: Modifier, Name of the modifier to edit
@@ -3429,15 +3179,14 @@ def multires_subdivide(
3429
3179
  """
3430
3180
 
3431
3181
  def multires_unsubdivide(
3432
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3433
3182
  execution_context: int | str | None = None,
3434
3183
  undo: bool | None = None,
3184
+ /,
3435
3185
  *,
3436
3186
  modifier: str = "",
3437
3187
  ):
3438
3188
  """Rebuild a lower subdivision level of the current base mesh
3439
3189
 
3440
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3441
3190
  :type execution_context: int | str | None
3442
3191
  :type undo: bool | None
3443
3192
  :param modifier: Modifier, Name of the modifier to edit
@@ -3445,16 +3194,15 @@ def multires_unsubdivide(
3445
3194
  """
3446
3195
 
3447
3196
  def ocean_bake(
3448
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3449
3197
  execution_context: int | str | None = None,
3450
3198
  undo: bool | None = None,
3199
+ /,
3451
3200
  *,
3452
3201
  modifier: str = "",
3453
3202
  free: bool | None = False,
3454
3203
  ):
3455
3204
  """Bake an image sequence of ocean data
3456
3205
 
3457
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3458
3206
  :type execution_context: int | str | None
3459
3207
  :type undo: bool | None
3460
3208
  :param modifier: Modifier, Name of the modifier to edit
@@ -3463,22 +3211,17 @@ def ocean_bake(
3463
3211
  :type free: bool | None
3464
3212
  """
3465
3213
 
3466
- def origin_clear(
3467
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3468
- execution_context: int | str | None = None,
3469
- undo: bool | None = None,
3470
- ):
3214
+ def origin_clear(execution_context: int | str | None = None, undo: bool | None = None):
3471
3215
  """Clear the object's origin
3472
3216
 
3473
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3474
3217
  :type execution_context: int | str | None
3475
3218
  :type undo: bool | None
3476
3219
  """
3477
3220
 
3478
3221
  def origin_set(
3479
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3480
3222
  execution_context: int | str | None = None,
3481
3223
  undo: bool | None = None,
3224
+ /,
3482
3225
  *,
3483
3226
  type: typing.Literal[
3484
3227
  "GEOMETRY_ORIGIN",
@@ -3492,7 +3235,6 @@ def origin_set(
3492
3235
  ):
3493
3236
  """Set the object's origin, by either moving the data, or set to center of data, or use 3D cursor
3494
3237
 
3495
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3496
3238
  :type execution_context: int | str | None
3497
3239
  :type undo: bool | None
3498
3240
  :param type: Type
@@ -3517,16 +3259,15 @@ def origin_set(
3517
3259
  """
3518
3260
 
3519
3261
  def parent_clear(
3520
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3521
3262
  execution_context: int | str | None = None,
3522
3263
  undo: bool | None = None,
3264
+ /,
3523
3265
  *,
3524
3266
  type: typing.Literal["CLEAR", "CLEAR_KEEP_TRANSFORM", "CLEAR_INVERSE"]
3525
3267
  | None = "CLEAR",
3526
3268
  ):
3527
3269
  """Clear the object's parenting
3528
3270
 
3529
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3530
3271
  :type execution_context: int | str | None
3531
3272
  :type undo: bool | None
3532
3273
  :param type: Type
@@ -3543,27 +3284,23 @@ def parent_clear(
3543
3284
  """
3544
3285
 
3545
3286
  def parent_inverse_apply(
3546
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3547
- execution_context: int | str | None = None,
3548
- undo: bool | None = None,
3287
+ execution_context: int | str | None = None, undo: bool | None = None
3549
3288
  ):
3550
3289
  """Apply the object's parent inverse to its data
3551
3290
 
3552
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3553
3291
  :type execution_context: int | str | None
3554
3292
  :type undo: bool | None
3555
3293
  """
3556
3294
 
3557
3295
  def parent_no_inverse_set(
3558
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3559
3296
  execution_context: int | str | None = None,
3560
3297
  undo: bool | None = None,
3298
+ /,
3561
3299
  *,
3562
3300
  keep_transform: bool | None = False,
3563
3301
  ):
3564
3302
  """Set the object's parenting without setting the inverse parent correction
3565
3303
 
3566
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3567
3304
  :type execution_context: int | str | None
3568
3305
  :type undo: bool | None
3569
3306
  :param keep_transform: Keep Transform, Preserve the world transform throughout parenting
@@ -3571,9 +3308,9 @@ def parent_no_inverse_set(
3571
3308
  """
3572
3309
 
3573
3310
  def parent_set(
3574
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3575
3311
  execution_context: int | str | None = None,
3576
3312
  undo: bool | None = None,
3313
+ /,
3577
3314
  *,
3578
3315
  type: typing.Literal[
3579
3316
  "OBJECT",
@@ -3596,7 +3333,6 @@ def parent_set(
3596
3333
  ):
3597
3334
  """Set the object's parenting
3598
3335
 
3599
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3600
3336
  :type execution_context: int | str | None
3601
3337
  :type undo: bool | None
3602
3338
  :param type: Type
@@ -3608,92 +3344,76 @@ def parent_set(
3608
3344
  """
3609
3345
 
3610
3346
  def particle_system_add(
3611
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3612
- execution_context: int | str | None = None,
3613
- undo: bool | None = None,
3347
+ execution_context: int | str | None = None, undo: bool | None = None
3614
3348
  ):
3615
3349
  """Add a particle system
3616
3350
 
3617
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3618
3351
  :type execution_context: int | str | None
3619
3352
  :type undo: bool | None
3620
3353
  """
3621
3354
 
3622
3355
  def particle_system_remove(
3623
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3624
- execution_context: int | str | None = None,
3625
- undo: bool | None = None,
3356
+ execution_context: int | str | None = None, undo: bool | None = None
3626
3357
  ):
3627
3358
  """Remove the selected particle system
3628
3359
 
3629
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3630
3360
  :type execution_context: int | str | None
3631
3361
  :type undo: bool | None
3632
3362
  """
3633
3363
 
3634
3364
  def paths_calculate(
3635
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3636
3365
  execution_context: int | str | None = None,
3637
3366
  undo: bool | None = None,
3367
+ /,
3638
3368
  *,
3639
- display_type: bpy.typing.MotionpathDisplayTypeItems | None = "RANGE",
3640
- range: bpy.typing.MotionpathRangeItems | None = "SCENE",
3369
+ display_type: bpy._typing.rna_enums.MotionpathDisplayTypeItems | None = "RANGE",
3370
+ range: bpy._typing.rna_enums.MotionpathRangeItems | None = "SCENE",
3641
3371
  ):
3642
3372
  """Generate motion paths for the selected objects
3643
3373
 
3644
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3645
3374
  :type execution_context: int | str | None
3646
3375
  :type undo: bool | None
3647
3376
  :param display_type: Display type
3648
- :type display_type: bpy.typing.MotionpathDisplayTypeItems | None
3377
+ :type display_type: bpy._typing.rna_enums.MotionpathDisplayTypeItems | None
3649
3378
  :param range: Computation Range
3650
- :type range: bpy.typing.MotionpathRangeItems | None
3379
+ :type range: bpy._typing.rna_enums.MotionpathRangeItems | None
3651
3380
  """
3652
3381
 
3653
3382
  def paths_clear(
3654
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3655
3383
  execution_context: int | str | None = None,
3656
3384
  undo: bool | None = None,
3385
+ /,
3657
3386
  *,
3658
3387
  only_selected: bool | None = False,
3659
3388
  ):
3660
3389
  """Undocumented, consider contributing.
3661
3390
 
3662
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3663
3391
  :type execution_context: int | str | None
3664
3392
  :type undo: bool | None
3665
3393
  :param only_selected: Only Selected, Only clear motion paths of selected objects
3666
3394
  :type only_selected: bool | None
3667
3395
  """
3668
3396
 
3669
- def paths_update(
3670
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3671
- execution_context: int | str | None = None,
3672
- undo: bool | None = None,
3673
- ):
3397
+ def paths_update(execution_context: int | str | None = None, undo: bool | None = None):
3674
3398
  """Recalculate motion paths for selected objects
3675
3399
 
3676
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3677
3400
  :type execution_context: int | str | None
3678
3401
  :type undo: bool | None
3679
3402
  """
3680
3403
 
3681
3404
  def paths_update_visible(
3682
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3683
- execution_context: int | str | None = None,
3684
- undo: bool | None = None,
3405
+ execution_context: int | str | None = None, undo: bool | None = None
3685
3406
  ):
3686
3407
  """Recalculate all visible motion paths for objects and poses
3687
3408
 
3688
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3689
3409
  :type execution_context: int | str | None
3690
3410
  :type undo: bool | None
3691
3411
  """
3692
3412
 
3693
3413
  def pointcloud_add(
3694
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3695
3414
  execution_context: int | str | None = None,
3696
3415
  undo: bool | None = None,
3416
+ /,
3697
3417
  *,
3698
3418
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
3699
3419
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -3710,7 +3430,6 @@ def pointcloud_add(
3710
3430
  ):
3711
3431
  """Add a point cloud object to the scene
3712
3432
 
3713
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3714
3433
  :type execution_context: int | str | None
3715
3434
  :type undo: bool | None
3716
3435
  :param align: Align, The alignment of the new object
@@ -3733,21 +3452,18 @@ def pointcloud_add(
3733
3452
  """
3734
3453
 
3735
3454
  def posemode_toggle(
3736
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3737
- execution_context: int | str | None = None,
3738
- undo: bool | None = None,
3455
+ execution_context: int | str | None = None, undo: bool | None = None
3739
3456
  ):
3740
3457
  """Enable or disable posing/selecting bones
3741
3458
 
3742
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3743
3459
  :type execution_context: int | str | None
3744
3460
  :type undo: bool | None
3745
3461
  """
3746
3462
 
3747
3463
  def quadriflow_remesh(
3748
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3749
3464
  execution_context: int | str | None = None,
3750
3465
  undo: bool | None = None,
3466
+ /,
3751
3467
  *,
3752
3468
  use_mesh_symmetry: bool | None = True,
3753
3469
  use_preserve_sharp: bool | None = False,
@@ -3763,7 +3479,6 @@ def quadriflow_remesh(
3763
3479
  ):
3764
3480
  """Create a new quad based mesh using the surface data of the current mesh. All data layers will be lost
3765
3481
 
3766
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3767
3482
  :type execution_context: int | str | None
3768
3483
  :type undo: bool | None
3769
3484
  :param use_mesh_symmetry: Use Mesh Symmetry, Generates a symmetrical mesh using the mesh symmetry configuration
@@ -3800,9 +3515,9 @@ def quadriflow_remesh(
3800
3515
  """
3801
3516
 
3802
3517
  def quick_explode(
3803
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3804
3518
  execution_context: int | str | None = None,
3805
3519
  undo: bool | None = None,
3520
+ /,
3806
3521
  *,
3807
3522
  style: typing.Literal["EXPLODE", "BLEND"] | None = "EXPLODE",
3808
3523
  amount: int | None = 100,
@@ -3814,7 +3529,6 @@ def quick_explode(
3814
3529
  ):
3815
3530
  """Make selected objects explode
3816
3531
 
3817
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3818
3532
  :type execution_context: int | str | None
3819
3533
  :type undo: bool | None
3820
3534
  :param style: Explode Style
@@ -3834,9 +3548,9 @@ def quick_explode(
3834
3548
  """
3835
3549
 
3836
3550
  def quick_fur(
3837
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3838
3551
  execution_context: int | str | None = None,
3839
3552
  undo: bool | None = None,
3553
+ /,
3840
3554
  *,
3841
3555
  density: typing.Literal["LOW", "MEDIUM", "HIGH"] | None = "MEDIUM",
3842
3556
  length: float | None = 0.1,
@@ -3848,7 +3562,6 @@ def quick_fur(
3848
3562
  ):
3849
3563
  """Add a fur setup to the selected objects
3850
3564
 
3851
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3852
3565
  :type execution_context: int | str | None
3853
3566
  :type undo: bool | None
3854
3567
  :param density: Density
@@ -3868,15 +3581,14 @@ def quick_fur(
3868
3581
  """
3869
3582
 
3870
3583
  def quick_liquid(
3871
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3872
3584
  execution_context: int | str | None = None,
3873
3585
  undo: bool | None = None,
3586
+ /,
3874
3587
  *,
3875
3588
  show_flows: bool | None = False,
3876
3589
  ):
3877
3590
  """Make selected objects liquid
3878
3591
 
3879
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3880
3592
  :type execution_context: int | str | None
3881
3593
  :type undo: bool | None
3882
3594
  :param show_flows: Render Liquid Objects, Keep the liquid objects visible during rendering
@@ -3884,16 +3596,15 @@ def quick_liquid(
3884
3596
  """
3885
3597
 
3886
3598
  def quick_smoke(
3887
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3888
3599
  execution_context: int | str | None = None,
3889
3600
  undo: bool | None = None,
3601
+ /,
3890
3602
  *,
3891
3603
  style: typing.Literal["SMOKE", "FIRE", "BOTH"] | None = "SMOKE",
3892
3604
  show_flows: bool | None = False,
3893
3605
  ):
3894
3606
  """Use selected objects as smoke emitters
3895
3607
 
3896
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3897
3608
  :type execution_context: int | str | None
3898
3609
  :type undo: bool | None
3899
3610
  :param style: Smoke Style
@@ -3903,9 +3614,9 @@ def quick_smoke(
3903
3614
  """
3904
3615
 
3905
3616
  def randomize_transform(
3906
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3907
3617
  execution_context: int | str | None = None,
3908
3618
  undo: bool | None = None,
3619
+ /,
3909
3620
  *,
3910
3621
  random_seed: int | None = 0,
3911
3622
  use_delta: bool | None = False,
@@ -3919,7 +3630,6 @@ def randomize_transform(
3919
3630
  ):
3920
3631
  """Randomize objects location, rotation, and scale
3921
3632
 
3922
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3923
3633
  :type execution_context: int | str | None
3924
3634
  :type undo: bool | None
3925
3635
  :param random_seed: Random Seed, Seed value for the random generator
@@ -3943,27 +3653,23 @@ def randomize_transform(
3943
3653
  """
3944
3654
 
3945
3655
  def reset_override_library(
3946
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3947
- execution_context: int | str | None = None,
3948
- undo: bool | None = None,
3656
+ execution_context: int | str | None = None, undo: bool | None = None
3949
3657
  ):
3950
3658
  """Reset the selected local overrides to their linked references values
3951
3659
 
3952
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3953
3660
  :type execution_context: int | str | None
3954
3661
  :type undo: bool | None
3955
3662
  """
3956
3663
 
3957
3664
  def rotation_clear(
3958
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3959
3665
  execution_context: int | str | None = None,
3960
3666
  undo: bool | None = None,
3667
+ /,
3961
3668
  *,
3962
3669
  clear_delta: bool | None = False,
3963
3670
  ):
3964
3671
  """Clear the object's rotation
3965
3672
 
3966
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3967
3673
  :type execution_context: int | str | None
3968
3674
  :type undo: bool | None
3969
3675
  :param clear_delta: Clear Delta, Clear delta rotation in addition to clearing the normal rotation transform
@@ -3971,15 +3677,14 @@ def rotation_clear(
3971
3677
  """
3972
3678
 
3973
3679
  def scale_clear(
3974
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3975
3680
  execution_context: int | str | None = None,
3976
3681
  undo: bool | None = None,
3682
+ /,
3977
3683
  *,
3978
3684
  clear_delta: bool | None = False,
3979
3685
  ):
3980
3686
  """Clear the object's scale
3981
3687
 
3982
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3983
3688
  :type execution_context: int | str | None
3984
3689
  :type undo: bool | None
3985
3690
  :param clear_delta: Clear Delta, Clear delta scale in addition to clearing the normal scale transform
@@ -3987,15 +3692,14 @@ def scale_clear(
3987
3692
  """
3988
3693
 
3989
3694
  def select_all(
3990
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
3991
3695
  execution_context: int | str | None = None,
3992
3696
  undo: bool | None = None,
3697
+ /,
3993
3698
  *,
3994
3699
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
3995
3700
  ):
3996
3701
  """Change selection of all visible objects in scene
3997
3702
 
3998
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
3999
3703
  :type execution_context: int | str | None
4000
3704
  :type undo: bool | None
4001
3705
  :param action: Action, Selection action to execute
@@ -4015,34 +3719,32 @@ def select_all(
4015
3719
  """
4016
3720
 
4017
3721
  def select_by_type(
4018
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4019
3722
  execution_context: int | str | None = None,
4020
3723
  undo: bool | None = None,
3724
+ /,
4021
3725
  *,
4022
3726
  extend: bool | None = False,
4023
- type: bpy.typing.ObjectTypeItems | None = "MESH",
3727
+ type: bpy._typing.rna_enums.ObjectTypeItems | None = "MESH",
4024
3728
  ):
4025
3729
  """Select all visible objects that are of a type
4026
3730
 
4027
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4028
3731
  :type execution_context: int | str | None
4029
3732
  :type undo: bool | None
4030
3733
  :param extend: Extend, Extend selection instead of deselecting everything first
4031
3734
  :type extend: bool | None
4032
3735
  :param type: Type
4033
- :type type: bpy.typing.ObjectTypeItems | None
3736
+ :type type: bpy._typing.rna_enums.ObjectTypeItems | None
4034
3737
  """
4035
3738
 
4036
3739
  def select_camera(
4037
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4038
3740
  execution_context: int | str | None = None,
4039
3741
  undo: bool | None = None,
3742
+ /,
4040
3743
  *,
4041
3744
  extend: bool | None = False,
4042
3745
  ):
4043
3746
  """Select the active camera
4044
3747
 
4045
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4046
3748
  :type execution_context: int | str | None
4047
3749
  :type undo: bool | None
4048
3750
  :param extend: Extend, Extend the selection
@@ -4050,9 +3752,9 @@ def select_camera(
4050
3752
  """
4051
3753
 
4052
3754
  def select_grouped(
4053
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4054
3755
  execution_context: int | str | None = None,
4055
3756
  undo: bool | None = None,
3757
+ /,
4056
3758
  *,
4057
3759
  extend: bool | None = False,
4058
3760
  type: typing.Literal[
@@ -4073,7 +3775,6 @@ def select_grouped(
4073
3775
  ):
4074
3776
  """Select all visible objects grouped by various properties
4075
3777
 
4076
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4077
3778
  :type execution_context: int | str | None
4078
3779
  :type undo: bool | None
4079
3780
  :param extend: Extend, Extend selection instead of deselecting everything first
@@ -4119,16 +3820,15 @@ def select_grouped(
4119
3820
  """
4120
3821
 
4121
3822
  def select_hierarchy(
4122
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4123
3823
  execution_context: int | str | None = None,
4124
3824
  undo: bool | None = None,
3825
+ /,
4125
3826
  *,
4126
3827
  direction: typing.Literal["PARENT", "CHILD"] | None = "PARENT",
4127
3828
  extend: bool | None = False,
4128
3829
  ):
4129
3830
  """Select object relative to the active object's position in the hierarchy
4130
3831
 
4131
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4132
3832
  :type execution_context: int | str | None
4133
3833
  :type undo: bool | None
4134
3834
  :param direction: Direction, Direction to select in the hierarchy
@@ -4137,22 +3837,17 @@ def select_hierarchy(
4137
3837
  :type extend: bool | None
4138
3838
  """
4139
3839
 
4140
- def select_less(
4141
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4142
- execution_context: int | str | None = None,
4143
- undo: bool | None = None,
4144
- ):
3840
+ def select_less(execution_context: int | str | None = None, undo: bool | None = None):
4145
3841
  """Deselect objects at the boundaries of parent/child relationships
4146
3842
 
4147
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4148
3843
  :type execution_context: int | str | None
4149
3844
  :type undo: bool | None
4150
3845
  """
4151
3846
 
4152
3847
  def select_linked(
4153
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4154
3848
  execution_context: int | str | None = None,
4155
3849
  undo: bool | None = None,
3850
+ /,
4156
3851
  *,
4157
3852
  extend: bool | None = False,
4158
3853
  type: typing.Literal[
@@ -4162,7 +3857,6 @@ def select_linked(
4162
3857
  ):
4163
3858
  """Select all visible objects that are linked
4164
3859
 
4165
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4166
3860
  :type execution_context: int | str | None
4167
3861
  :type undo: bool | None
4168
3862
  :param extend: Extend, Extend selection instead of deselecting everything first
@@ -4172,37 +3866,31 @@ def select_linked(
4172
3866
  """
4173
3867
 
4174
3868
  def select_mirror(
4175
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4176
3869
  execution_context: int | str | None = None,
4177
3870
  undo: bool | None = None,
3871
+ /,
4178
3872
  *,
4179
3873
  extend: bool | None = False,
4180
3874
  ):
4181
3875
  """Select the mirror objects of the selected object e.g. "L.sword" and "R.sword"
4182
3876
 
4183
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4184
3877
  :type execution_context: int | str | None
4185
3878
  :type undo: bool | None
4186
3879
  :param extend: Extend, Extend selection instead of deselecting everything first
4187
3880
  :type extend: bool | None
4188
3881
  """
4189
3882
 
4190
- def select_more(
4191
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4192
- execution_context: int | str | None = None,
4193
- undo: bool | None = None,
4194
- ):
3883
+ def select_more(execution_context: int | str | None = None, undo: bool | None = None):
4195
3884
  """Select connected parent/child objects
4196
3885
 
4197
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4198
3886
  :type execution_context: int | str | None
4199
3887
  :type undo: bool | None
4200
3888
  """
4201
3889
 
4202
3890
  def select_pattern(
4203
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4204
3891
  execution_context: int | str | None = None,
4205
3892
  undo: bool | None = None,
3893
+ /,
4206
3894
  *,
4207
3895
  pattern: str = "*",
4208
3896
  case_sensitive: bool | None = False,
@@ -4210,7 +3898,6 @@ def select_pattern(
4210
3898
  ):
4211
3899
  """Select objects matching a naming pattern
4212
3900
 
4213
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4214
3901
  :type execution_context: int | str | None
4215
3902
  :type undo: bool | None
4216
3903
  :param pattern: Pattern, Name filter using '*', '?' and '[abc]' unix style wildcards
@@ -4222,9 +3909,9 @@ def select_pattern(
4222
3909
  """
4223
3910
 
4224
3911
  def select_random(
4225
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4226
3912
  execution_context: int | str | None = None,
4227
3913
  undo: bool | None = None,
3914
+ /,
4228
3915
  *,
4229
3916
  ratio: float | None = 0.5,
4230
3917
  seed: int | None = 0,
@@ -4232,7 +3919,6 @@ def select_random(
4232
3919
  ):
4233
3920
  """Select or deselect random visible objects
4234
3921
 
4235
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4236
3922
  :type execution_context: int | str | None
4237
3923
  :type undo: bool | None
4238
3924
  :param ratio: Ratio, Portion of items to select randomly
@@ -4250,15 +3936,14 @@ def select_random(
4250
3936
  """
4251
3937
 
4252
3938
  def select_same_collection(
4253
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4254
3939
  execution_context: int | str | None = None,
4255
3940
  undo: bool | None = None,
3941
+ /,
4256
3942
  *,
4257
3943
  collection: str = "",
4258
3944
  ):
4259
3945
  """Select object in the same collection
4260
3946
 
4261
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4262
3947
  :type execution_context: int | str | None
4263
3948
  :type undo: bool | None
4264
3949
  :param collection: Collection, Name of the collection to select
@@ -4266,16 +3951,15 @@ def select_same_collection(
4266
3951
  """
4267
3952
 
4268
3953
  def shade_auto_smooth(
4269
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4270
3954
  execution_context: int | str | None = None,
4271
3955
  undo: bool | None = None,
3956
+ /,
4272
3957
  *,
4273
3958
  use_auto_smooth: bool | None = True,
4274
3959
  angle: float | None = 0.523599,
4275
3960
  ):
4276
3961
  """Add modifier to automatically set the sharpness of mesh edges based on the angle between the neighboring faces
4277
3962
 
4278
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4279
3963
  :type execution_context: int | str | None
4280
3964
  :type undo: bool | None
4281
3965
  :param use_auto_smooth: Auto Smooth, Add modifier to set edge sharpness automatically
@@ -4285,15 +3969,14 @@ def shade_auto_smooth(
4285
3969
  """
4286
3970
 
4287
3971
  def shade_flat(
4288
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4289
3972
  execution_context: int | str | None = None,
4290
3973
  undo: bool | None = None,
3974
+ /,
4291
3975
  *,
4292
3976
  keep_sharp_edges: bool | None = True,
4293
3977
  ):
4294
3978
  """Render and display faces uniform, using face normals
4295
3979
 
4296
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4297
3980
  :type execution_context: int | str | None
4298
3981
  :type undo: bool | None
4299
3982
  :param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges, which are redundant with faces shaded smooth
@@ -4301,15 +3984,14 @@ def shade_flat(
4301
3984
  """
4302
3985
 
4303
3986
  def shade_smooth(
4304
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4305
3987
  execution_context: int | str | None = None,
4306
3988
  undo: bool | None = None,
3989
+ /,
4307
3990
  *,
4308
3991
  keep_sharp_edges: bool | None = True,
4309
3992
  ):
4310
3993
  """Render and display faces smooth, using interpolated vertex normals
4311
3994
 
4312
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4313
3995
  :type execution_context: int | str | None
4314
3996
  :type undo: bool | None
4315
3997
  :param keep_sharp_edges: Keep Sharp Edges, Don't remove sharp edges. Tagged edges will remain sharp
@@ -4317,16 +3999,15 @@ def shade_smooth(
4317
3999
  """
4318
4000
 
4319
4001
  def shade_smooth_by_angle(
4320
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4321
4002
  execution_context: int | str | None = None,
4322
4003
  undo: bool | None = None,
4004
+ /,
4323
4005
  *,
4324
4006
  angle: float | None = 0.523599,
4325
4007
  keep_sharp_edges: bool | None = True,
4326
4008
  ):
4327
4009
  """Set the sharpness of mesh edges based on the angle between the neighboring faces
4328
4010
 
4329
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4330
4011
  :type execution_context: int | str | None
4331
4012
  :type undo: bool | None
4332
4013
  :param angle: Angle, Maximum angle between face normals that will be considered as smooth
@@ -4336,31 +4017,29 @@ def shade_smooth_by_angle(
4336
4017
  """
4337
4018
 
4338
4019
  def shaderfx_add(
4339
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4340
4020
  execution_context: int | str | None = None,
4341
4021
  undo: bool | None = None,
4022
+ /,
4342
4023
  *,
4343
- type: bpy.typing.ObjectShaderfxTypeItems | None = "FX_BLUR",
4024
+ type: bpy._typing.rna_enums.ObjectShaderfxTypeItems | None = "FX_BLUR",
4344
4025
  ):
4345
4026
  """Add a visual effect to the active object
4346
4027
 
4347
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4348
4028
  :type execution_context: int | str | None
4349
4029
  :type undo: bool | None
4350
4030
  :param type: Type
4351
- :type type: bpy.typing.ObjectShaderfxTypeItems | None
4031
+ :type type: bpy._typing.rna_enums.ObjectShaderfxTypeItems | None
4352
4032
  """
4353
4033
 
4354
4034
  def shaderfx_copy(
4355
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4356
4035
  execution_context: int | str | None = None,
4357
4036
  undo: bool | None = None,
4037
+ /,
4358
4038
  *,
4359
4039
  shaderfx: str = "",
4360
4040
  ):
4361
4041
  """Duplicate effect at the same position in the stack
4362
4042
 
4363
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4364
4043
  :type execution_context: int | str | None
4365
4044
  :type undo: bool | None
4366
4045
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4368,15 +4047,14 @@ def shaderfx_copy(
4368
4047
  """
4369
4048
 
4370
4049
  def shaderfx_move_down(
4371
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4372
4050
  execution_context: int | str | None = None,
4373
4051
  undo: bool | None = None,
4052
+ /,
4374
4053
  *,
4375
4054
  shaderfx: str = "",
4376
4055
  ):
4377
4056
  """Move effect down in the stack
4378
4057
 
4379
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4380
4058
  :type execution_context: int | str | None
4381
4059
  :type undo: bool | None
4382
4060
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4384,16 +4062,15 @@ def shaderfx_move_down(
4384
4062
  """
4385
4063
 
4386
4064
  def shaderfx_move_to_index(
4387
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4388
4065
  execution_context: int | str | None = None,
4389
4066
  undo: bool | None = None,
4067
+ /,
4390
4068
  *,
4391
4069
  shaderfx: str = "",
4392
4070
  index: int | None = 0,
4393
4071
  ):
4394
4072
  """Change the effect's position in the list so it evaluates after the set number of others
4395
4073
 
4396
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4397
4074
  :type execution_context: int | str | None
4398
4075
  :type undo: bool | None
4399
4076
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4403,15 +4080,14 @@ def shaderfx_move_to_index(
4403
4080
  """
4404
4081
 
4405
4082
  def shaderfx_move_up(
4406
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4407
4083
  execution_context: int | str | None = None,
4408
4084
  undo: bool | None = None,
4085
+ /,
4409
4086
  *,
4410
4087
  shaderfx: str = "",
4411
4088
  ):
4412
4089
  """Move effect up in the stack
4413
4090
 
4414
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4415
4091
  :type execution_context: int | str | None
4416
4092
  :type undo: bool | None
4417
4093
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4419,16 +4095,15 @@ def shaderfx_move_up(
4419
4095
  """
4420
4096
 
4421
4097
  def shaderfx_remove(
4422
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4423
4098
  execution_context: int | str | None = None,
4424
4099
  undo: bool | None = None,
4100
+ /,
4425
4101
  *,
4426
4102
  shaderfx: str = "",
4427
4103
  report: bool | None = False,
4428
4104
  ):
4429
4105
  """Remove a effect from the active Grease Pencil object
4430
4106
 
4431
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4432
4107
  :type execution_context: int | str | None
4433
4108
  :type undo: bool | None
4434
4109
  :param shaderfx: Shader, Name of the shaderfx to edit
@@ -4438,15 +4113,14 @@ def shaderfx_remove(
4438
4113
  """
4439
4114
 
4440
4115
  def shape_key_add(
4441
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4442
4116
  execution_context: int | str | None = None,
4443
4117
  undo: bool | None = None,
4118
+ /,
4444
4119
  *,
4445
4120
  from_mix: bool | None = True,
4446
4121
  ):
4447
4122
  """Add shape key to the object
4448
4123
 
4449
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4450
4124
  :type execution_context: int | str | None
4451
4125
  :type undo: bool | None
4452
4126
  :param from_mix: From Mix, Create the new shape key from the existing mix of keys
@@ -4454,27 +4128,23 @@ def shape_key_add(
4454
4128
  """
4455
4129
 
4456
4130
  def shape_key_clear(
4457
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4458
- execution_context: int | str | None = None,
4459
- undo: bool | None = None,
4131
+ execution_context: int | str | None = None, undo: bool | None = None
4460
4132
  ):
4461
4133
  """Reset the weights of all shape keys to 0 or to the closest value respecting the limits
4462
4134
 
4463
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4464
4135
  :type execution_context: int | str | None
4465
4136
  :type undo: bool | None
4466
4137
  """
4467
4138
 
4468
4139
  def shape_key_lock(
4469
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4470
4140
  execution_context: int | str | None = None,
4471
4141
  undo: bool | None = None,
4142
+ /,
4472
4143
  *,
4473
4144
  action: typing.Literal["LOCK", "UNLOCK"] | None = "LOCK",
4474
4145
  ):
4475
4146
  """Change the lock state of all shape keys of active object
4476
4147
 
4477
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4478
4148
  :type execution_context: int | str | None
4479
4149
  :type undo: bool | None
4480
4150
  :param action: Action, Lock action to execute on vertex groups
@@ -4488,15 +4158,14 @@ def shape_key_lock(
4488
4158
  """
4489
4159
 
4490
4160
  def shape_key_mirror(
4491
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4492
4161
  execution_context: int | str | None = None,
4493
4162
  undo: bool | None = None,
4163
+ /,
4494
4164
  *,
4495
4165
  use_topology: bool | None = False,
4496
4166
  ):
4497
4167
  """Mirror the current shape key along the local X axis
4498
4168
 
4499
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4500
4169
  :type execution_context: int | str | None
4501
4170
  :type undo: bool | None
4502
4171
  :param use_topology: Topology Mirror, Use topology based mirroring (for when both sides of mesh have matching, unique topology)
@@ -4504,15 +4173,14 @@ def shape_key_mirror(
4504
4173
  """
4505
4174
 
4506
4175
  def shape_key_move(
4507
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4508
4176
  execution_context: int | str | None = None,
4509
4177
  undo: bool | None = None,
4178
+ /,
4510
4179
  *,
4511
4180
  type: typing.Literal["TOP", "UP", "DOWN", "BOTTOM"] | None = "TOP",
4512
4181
  ):
4513
4182
  """Move the active shape key up/down in the list
4514
4183
 
4515
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4516
4184
  :type execution_context: int | str | None
4517
4185
  :type undo: bool | None
4518
4186
  :param type: Type
@@ -4532,16 +4200,15 @@ def shape_key_move(
4532
4200
  """
4533
4201
 
4534
4202
  def shape_key_remove(
4535
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4536
4203
  execution_context: int | str | None = None,
4537
4204
  undo: bool | None = None,
4205
+ /,
4538
4206
  *,
4539
4207
  all: bool | None = False,
4540
4208
  apply_mix: bool | None = False,
4541
4209
  ):
4542
4210
  """Remove shape key from the object
4543
4211
 
4544
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4545
4212
  :type execution_context: int | str | None
4546
4213
  :type undo: bool | None
4547
4214
  :param all: All, Remove all shape keys
@@ -4551,28 +4218,24 @@ def shape_key_remove(
4551
4218
  """
4552
4219
 
4553
4220
  def shape_key_retime(
4554
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4555
- execution_context: int | str | None = None,
4556
- undo: bool | None = None,
4221
+ execution_context: int | str | None = None, undo: bool | None = None
4557
4222
  ):
4558
4223
  """Resets the timing for absolute shape keys
4559
4224
 
4560
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4561
4225
  :type execution_context: int | str | None
4562
4226
  :type undo: bool | None
4563
4227
  """
4564
4228
 
4565
4229
  def shape_key_transfer(
4566
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4567
4230
  execution_context: int | str | None = None,
4568
4231
  undo: bool | None = None,
4232
+ /,
4569
4233
  *,
4570
4234
  mode: typing.Literal["OFFSET", "RELATIVE_FACE", "RELATIVE_EDGE"] | None = "OFFSET",
4571
4235
  use_clamp: bool | None = False,
4572
4236
  ):
4573
4237
  """Copy the active shape key of another selected object to this one
4574
4238
 
4575
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4576
4239
  :type execution_context: int | str | None
4577
4240
  :type undo: bool | None
4578
4241
  :param mode: Transformation Mode, Relative shape positions to the new shape method
@@ -4591,15 +4254,14 @@ def shape_key_transfer(
4591
4254
  """
4592
4255
 
4593
4256
  def simulation_nodes_cache_bake(
4594
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4595
4257
  execution_context: int | str | None = None,
4596
4258
  undo: bool | None = None,
4259
+ /,
4597
4260
  *,
4598
4261
  selected: bool | None = False,
4599
4262
  ):
4600
4263
  """Bake simulations in geometry nodes modifiers
4601
4264
 
4602
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4603
4265
  :type execution_context: int | str | None
4604
4266
  :type undo: bool | None
4605
4267
  :param selected: Selected, Bake cache on all selected objects
@@ -4607,15 +4269,14 @@ def simulation_nodes_cache_bake(
4607
4269
  """
4608
4270
 
4609
4271
  def simulation_nodes_cache_calculate_to_frame(
4610
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4611
4272
  execution_context: int | str | None = None,
4612
4273
  undo: bool | None = None,
4274
+ /,
4613
4275
  *,
4614
4276
  selected: bool | None = False,
4615
4277
  ):
4616
4278
  """Calculate simulations in geometry nodes modifiers from the start to current frame
4617
4279
 
4618
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4619
4280
  :type execution_context: int | str | None
4620
4281
  :type undo: bool | None
4621
4282
  :param selected: Selected, Calculate all selected objects instead of just the active object
@@ -4623,15 +4284,14 @@ def simulation_nodes_cache_calculate_to_frame(
4623
4284
  """
4624
4285
 
4625
4286
  def simulation_nodes_cache_delete(
4626
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4627
4287
  execution_context: int | str | None = None,
4628
4288
  undo: bool | None = None,
4289
+ /,
4629
4290
  *,
4630
4291
  selected: bool | None = False,
4631
4292
  ):
4632
4293
  """Delete cached/baked simulations in geometry nodes modifiers
4633
4294
 
4634
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4635
4295
  :type execution_context: int | str | None
4636
4296
  :type undo: bool | None
4637
4297
  :param selected: Selected, Delete cache on all selected objects
@@ -4639,15 +4299,14 @@ def simulation_nodes_cache_delete(
4639
4299
  """
4640
4300
 
4641
4301
  def skin_armature_create(
4642
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4643
4302
  execution_context: int | str | None = None,
4644
4303
  undo: bool | None = None,
4304
+ /,
4645
4305
  *,
4646
4306
  modifier: str = "",
4647
4307
  ):
4648
4308
  """Create an armature that parallels the skin layout
4649
4309
 
4650
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4651
4310
  :type execution_context: int | str | None
4652
4311
  :type undo: bool | None
4653
4312
  :param modifier: Modifier, Name of the modifier to edit
@@ -4655,15 +4314,14 @@ def skin_armature_create(
4655
4314
  """
4656
4315
 
4657
4316
  def skin_loose_mark_clear(
4658
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4659
4317
  execution_context: int | str | None = None,
4660
4318
  undo: bool | None = None,
4319
+ /,
4661
4320
  *,
4662
4321
  action: typing.Literal["MARK", "CLEAR"] | None = "MARK",
4663
4322
  ):
4664
4323
  """Mark/clear selected vertices as loose
4665
4324
 
4666
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4667
4325
  :type execution_context: int | str | None
4668
4326
  :type undo: bool | None
4669
4327
  :param action: Action
@@ -4677,33 +4335,27 @@ def skin_loose_mark_clear(
4677
4335
  """
4678
4336
 
4679
4337
  def skin_radii_equalize(
4680
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4681
- execution_context: int | str | None = None,
4682
- undo: bool | None = None,
4338
+ execution_context: int | str | None = None, undo: bool | None = None
4683
4339
  ):
4684
4340
  """Make skin radii of selected vertices equal on each axis
4685
4341
 
4686
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4687
4342
  :type execution_context: int | str | None
4688
4343
  :type undo: bool | None
4689
4344
  """
4690
4345
 
4691
4346
  def skin_root_mark(
4692
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4693
- execution_context: int | str | None = None,
4694
- undo: bool | None = None,
4347
+ execution_context: int | str | None = None, undo: bool | None = None
4695
4348
  ):
4696
4349
  """Mark selected vertices as roots
4697
4350
 
4698
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4699
4351
  :type execution_context: int | str | None
4700
4352
  :type undo: bool | None
4701
4353
  """
4702
4354
 
4703
4355
  def speaker_add(
4704
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4705
4356
  execution_context: int | str | None = None,
4706
4357
  undo: bool | None = None,
4358
+ /,
4707
4359
  *,
4708
4360
  enter_editmode: bool | None = False,
4709
4361
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
@@ -4721,7 +4373,6 @@ def speaker_add(
4721
4373
  ):
4722
4374
  """Add a speaker object to the scene
4723
4375
 
4724
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4725
4376
  :type execution_context: int | str | None
4726
4377
  :type undo: bool | None
4727
4378
  :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
@@ -4746,16 +4397,15 @@ def speaker_add(
4746
4397
  """
4747
4398
 
4748
4399
  def subdivision_set(
4749
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4750
4400
  execution_context: int | str | None = None,
4751
4401
  undo: bool | None = None,
4402
+ /,
4752
4403
  *,
4753
4404
  level: int | None = 1,
4754
4405
  relative: bool | None = False,
4755
4406
  ):
4756
4407
  """Sets a Subdivision Surface level (1 to 5)
4757
4408
 
4758
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4759
4409
  :type execution_context: int | str | None
4760
4410
  :type undo: bool | None
4761
4411
  :param level: Level
@@ -4765,15 +4415,14 @@ def subdivision_set(
4765
4415
  """
4766
4416
 
4767
4417
  def surfacedeform_bind(
4768
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4769
4418
  execution_context: int | str | None = None,
4770
4419
  undo: bool | None = None,
4420
+ /,
4771
4421
  *,
4772
4422
  modifier: str = "",
4773
4423
  ):
4774
4424
  """Bind mesh to target in surface deform modifier
4775
4425
 
4776
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4777
4426
  :type execution_context: int | str | None
4778
4427
  :type undo: bool | None
4779
4428
  :param modifier: Modifier, Name of the modifier to edit
@@ -4781,9 +4430,9 @@ def surfacedeform_bind(
4781
4430
  """
4782
4431
 
4783
4432
  def text_add(
4784
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4785
4433
  execution_context: int | str | None = None,
4786
4434
  undo: bool | None = None,
4435
+ /,
4787
4436
  *,
4788
4437
  radius: float | None = 1.0,
4789
4438
  enter_editmode: bool | None = False,
@@ -4802,7 +4451,6 @@ def text_add(
4802
4451
  ):
4803
4452
  """Add a text object to the scene
4804
4453
 
4805
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4806
4454
  :type execution_context: int | str | None
4807
4455
  :type undo: bool | None
4808
4456
  :param radius: Radius
@@ -4829,15 +4477,14 @@ def text_add(
4829
4477
  """
4830
4478
 
4831
4479
  def track_clear(
4832
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4833
4480
  execution_context: int | str | None = None,
4834
4481
  undo: bool | None = None,
4482
+ /,
4835
4483
  *,
4836
4484
  type: typing.Literal["CLEAR", "CLEAR_KEEP_TRANSFORM"] | None = "CLEAR",
4837
4485
  ):
4838
4486
  """Clear tracking constraint or flag from object
4839
4487
 
4840
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4841
4488
  :type execution_context: int | str | None
4842
4489
  :type undo: bool | None
4843
4490
  :param type: Type
@@ -4845,15 +4492,14 @@ def track_clear(
4845
4492
  """
4846
4493
 
4847
4494
  def track_set(
4848
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4849
4495
  execution_context: int | str | None = None,
4850
4496
  undo: bool | None = None,
4497
+ /,
4851
4498
  *,
4852
4499
  type: typing.Literal["DAMPTRACK", "TRACKTO", "LOCKTRACK"] | None = "DAMPTRACK",
4853
4500
  ):
4854
4501
  """Make the object track another object, using various methods/constraints
4855
4502
 
4856
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4857
4503
  :type execution_context: int | str | None
4858
4504
  :type undo: bool | None
4859
4505
  :param type: Type
@@ -4861,15 +4507,14 @@ def track_set(
4861
4507
  """
4862
4508
 
4863
4509
  def transfer_mode(
4864
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4865
4510
  execution_context: int | str | None = None,
4866
4511
  undo: bool | None = None,
4512
+ /,
4867
4513
  *,
4868
4514
  use_flash_on_transfer: bool | None = True,
4869
4515
  ):
4870
4516
  """Switches the active object and assigns the same mode to a new one under the mouse cursor, leaving the active mode in the current one
4871
4517
 
4872
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4873
4518
  :type execution_context: int | str | None
4874
4519
  :type undo: bool | None
4875
4520
  :param use_flash_on_transfer: Flash On Transfer, Flash the target object when transferring the mode
@@ -4877,9 +4522,9 @@ def transfer_mode(
4877
4522
  """
4878
4523
 
4879
4524
  def transform_apply(
4880
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4881
4525
  execution_context: int | str | None = None,
4882
4526
  undo: bool | None = None,
4527
+ /,
4883
4528
  *,
4884
4529
  location: bool | None = True,
4885
4530
  rotation: bool | None = True,
@@ -4889,7 +4534,6 @@ def transform_apply(
4889
4534
  ):
4890
4535
  """Apply the object's transformation to its data
4891
4536
 
4892
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4893
4537
  :type execution_context: int | str | None
4894
4538
  :type undo: bool | None
4895
4539
  :param location: Location
@@ -4905,21 +4549,18 @@ def transform_apply(
4905
4549
  """
4906
4550
 
4907
4551
  def transform_axis_target(
4908
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4909
- execution_context: int | str | None = None,
4910
- undo: bool | None = None,
4552
+ execution_context: int | str | None = None, undo: bool | None = None
4911
4553
  ):
4912
4554
  """Interactively point cameras and lights to a location (Ctrl translates)
4913
4555
 
4914
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4915
4556
  :type execution_context: int | str | None
4916
4557
  :type undo: bool | None
4917
4558
  """
4918
4559
 
4919
4560
  def transform_to_mouse(
4920
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4921
4561
  execution_context: int | str | None = None,
4922
4562
  undo: bool | None = None,
4563
+ /,
4923
4564
  *,
4924
4565
  name: str = "",
4925
4566
  session_uid: int | None = 0,
@@ -4936,7 +4577,6 @@ def transform_to_mouse(
4936
4577
  ):
4937
4578
  """Snap selected item(s) to the mouse location
4938
4579
 
4939
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4940
4580
  :type execution_context: int | str | None
4941
4581
  :type undo: bool | None
4942
4582
  :param name: Name, Object name to place (uses the active object when this and 'session_uid' are unset)
@@ -4952,16 +4592,15 @@ def transform_to_mouse(
4952
4592
  """
4953
4593
 
4954
4594
  def transforms_to_deltas(
4955
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4956
4595
  execution_context: int | str | None = None,
4957
4596
  undo: bool | None = None,
4597
+ /,
4958
4598
  *,
4959
4599
  mode: typing.Literal["ALL", "LOC", "ROT", "SCALE"] | None = "ALL",
4960
4600
  reset_values: bool | None = True,
4961
4601
  ):
4962
4602
  """Convert normal object transforms to delta transforms, any existing delta transforms will be included as well
4963
4603
 
4964
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4965
4604
  :type execution_context: int | str | None
4966
4605
  :type undo: bool | None
4967
4606
  :param mode: Mode, Which transforms to transfer
@@ -4982,58 +4621,44 @@ def transforms_to_deltas(
4982
4621
  :type reset_values: bool | None
4983
4622
  """
4984
4623
 
4985
- def unlink_data(
4986
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4987
- execution_context: int | str | None = None,
4988
- undo: bool | None = None,
4989
- ):
4624
+ def unlink_data(execution_context: int | str | None = None, undo: bool | None = None):
4990
4625
  """Undocumented, consider contributing.
4991
4626
 
4992
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
4993
4627
  :type execution_context: int | str | None
4994
4628
  :type undo: bool | None
4995
4629
  """
4996
4630
 
4997
4631
  def vertex_group_add(
4998
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
4999
- execution_context: int | str | None = None,
5000
- undo: bool | None = None,
4632
+ execution_context: int | str | None = None, undo: bool | None = None
5001
4633
  ):
5002
4634
  """Add a new vertex group to the active object
5003
4635
 
5004
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5005
4636
  :type execution_context: int | str | None
5006
4637
  :type undo: bool | None
5007
4638
  """
5008
4639
 
5009
4640
  def vertex_group_assign(
5010
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5011
- execution_context: int | str | None = None,
5012
- undo: bool | None = None,
4641
+ execution_context: int | str | None = None, undo: bool | None = None
5013
4642
  ):
5014
4643
  """Assign the selected vertices to the active vertex group
5015
4644
 
5016
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5017
4645
  :type execution_context: int | str | None
5018
4646
  :type undo: bool | None
5019
4647
  """
5020
4648
 
5021
4649
  def vertex_group_assign_new(
5022
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5023
- execution_context: int | str | None = None,
5024
- undo: bool | None = None,
4650
+ execution_context: int | str | None = None, undo: bool | None = None
5025
4651
  ):
5026
4652
  """Assign the selected vertices to a new vertex group
5027
4653
 
5028
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5029
4654
  :type execution_context: int | str | None
5030
4655
  :type undo: bool | None
5031
4656
  """
5032
4657
 
5033
4658
  def vertex_group_clean(
5034
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5035
4659
  execution_context: int | str | None = None,
5036
4660
  undo: bool | None = None,
4661
+ /,
5037
4662
  *,
5038
4663
  group_select_mode: str | None = "",
5039
4664
  limit: float | None = 0.0,
@@ -5041,7 +4666,6 @@ def vertex_group_clean(
5041
4666
  ):
5042
4667
  """Remove vertex group assignments which are not required
5043
4668
 
5044
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5045
4669
  :type execution_context: int | str | None
5046
4670
  :type undo: bool | None
5047
4671
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5053,45 +4677,36 @@ def vertex_group_clean(
5053
4677
  """
5054
4678
 
5055
4679
  def vertex_group_copy(
5056
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5057
- execution_context: int | str | None = None,
5058
- undo: bool | None = None,
4680
+ execution_context: int | str | None = None, undo: bool | None = None
5059
4681
  ):
5060
4682
  """Make a copy of the active vertex group
5061
4683
 
5062
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5063
4684
  :type execution_context: int | str | None
5064
4685
  :type undo: bool | None
5065
4686
  """
5066
4687
 
5067
4688
  def vertex_group_copy_to_selected(
5068
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5069
- execution_context: int | str | None = None,
5070
- undo: bool | None = None,
4689
+ execution_context: int | str | None = None, undo: bool | None = None
5071
4690
  ):
5072
4691
  """Replace vertex groups of selected objects by vertex groups of active object
5073
4692
 
5074
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5075
4693
  :type execution_context: int | str | None
5076
4694
  :type undo: bool | None
5077
4695
  """
5078
4696
 
5079
4697
  def vertex_group_deselect(
5080
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5081
- execution_context: int | str | None = None,
5082
- undo: bool | None = None,
4698
+ execution_context: int | str | None = None, undo: bool | None = None
5083
4699
  ):
5084
4700
  """Deselect all selected vertices assigned to the active vertex group
5085
4701
 
5086
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5087
4702
  :type execution_context: int | str | None
5088
4703
  :type undo: bool | None
5089
4704
  """
5090
4705
 
5091
4706
  def vertex_group_invert(
5092
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5093
4707
  execution_context: int | str | None = None,
5094
4708
  undo: bool | None = None,
4709
+ /,
5095
4710
  *,
5096
4711
  group_select_mode: str | None = "",
5097
4712
  auto_assign: bool | None = True,
@@ -5099,7 +4714,6 @@ def vertex_group_invert(
5099
4714
  ):
5100
4715
  """Invert active vertex group's weights
5101
4716
 
5102
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5103
4717
  :type execution_context: int | str | None
5104
4718
  :type undo: bool | None
5105
4719
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5111,9 +4725,9 @@ def vertex_group_invert(
5111
4725
  """
5112
4726
 
5113
4727
  def vertex_group_levels(
5114
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5115
4728
  execution_context: int | str | None = None,
5116
4729
  undo: bool | None = None,
4730
+ /,
5117
4731
  *,
5118
4732
  group_select_mode: str | None = "",
5119
4733
  offset: float | None = 0.0,
@@ -5121,7 +4735,6 @@ def vertex_group_levels(
5121
4735
  ):
5122
4736
  """Add some offset and multiply with some gain the weights of the active vertex group
5123
4737
 
5124
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5125
4738
  :type execution_context: int | str | None
5126
4739
  :type undo: bool | None
5127
4740
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5133,16 +4746,15 @@ def vertex_group_levels(
5133
4746
  """
5134
4747
 
5135
4748
  def vertex_group_limit_total(
5136
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5137
4749
  execution_context: int | str | None = None,
5138
4750
  undo: bool | None = None,
4751
+ /,
5139
4752
  *,
5140
4753
  group_select_mode: str | None = "",
5141
4754
  limit: int | None = 4,
5142
4755
  ):
5143
4756
  """Limit deform weights associated with a vertex to a specified number by removing lowest weights
5144
4757
 
5145
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5146
4758
  :type execution_context: int | str | None
5147
4759
  :type undo: bool | None
5148
4760
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5152,9 +4764,9 @@ def vertex_group_limit_total(
5152
4764
  """
5153
4765
 
5154
4766
  def vertex_group_lock(
5155
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5156
4767
  execution_context: int | str | None = None,
5157
4768
  undo: bool | None = None,
4769
+ /,
5158
4770
  *,
5159
4771
  action: typing.Literal["TOGGLE", "LOCK", "UNLOCK", "INVERT"] | None = "TOGGLE",
5160
4772
  mask: typing.Literal["ALL", "SELECTED", "UNSELECTED", "INVERT_UNSELECTED"]
@@ -5162,7 +4774,6 @@ def vertex_group_lock(
5162
4774
  ):
5163
4775
  """Change the lock state of all or some vertex groups of active object
5164
4776
 
5165
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5166
4777
  :type execution_context: int | str | None
5167
4778
  :type undo: bool | None
5168
4779
  :param action: Action, Lock action to execute on vertex groups
@@ -5196,9 +4807,9 @@ def vertex_group_lock(
5196
4807
  """
5197
4808
 
5198
4809
  def vertex_group_mirror(
5199
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5200
4810
  execution_context: int | str | None = None,
5201
4811
  undo: bool | None = None,
4812
+ /,
5202
4813
  *,
5203
4814
  mirror_weights: bool | None = True,
5204
4815
  flip_group_names: bool | None = True,
@@ -5207,7 +4818,6 @@ def vertex_group_mirror(
5207
4818
  ):
5208
4819
  """Mirror vertex group, flip weights and/or names, editing only selected vertices, flipping when both sides are selected otherwise copy from unselected
5209
4820
 
5210
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5211
4821
  :type execution_context: int | str | None
5212
4822
  :type undo: bool | None
5213
4823
  :param mirror_weights: Mirror Weights, Mirror weights
@@ -5221,15 +4831,14 @@ def vertex_group_mirror(
5221
4831
  """
5222
4832
 
5223
4833
  def vertex_group_move(
5224
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5225
4834
  execution_context: int | str | None = None,
5226
4835
  undo: bool | None = None,
4836
+ /,
5227
4837
  *,
5228
4838
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
5229
4839
  ):
5230
4840
  """Move the active vertex group up/down in the list
5231
4841
 
5232
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5233
4842
  :type execution_context: int | str | None
5234
4843
  :type undo: bool | None
5235
4844
  :param direction: Direction, Direction to move the active vertex group towards
@@ -5237,28 +4846,24 @@ def vertex_group_move(
5237
4846
  """
5238
4847
 
5239
4848
  def vertex_group_normalize(
5240
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5241
- execution_context: int | str | None = None,
5242
- undo: bool | None = None,
4849
+ execution_context: int | str | None = None, undo: bool | None = None
5243
4850
  ):
5244
4851
  """Normalize weights of the active vertex group, so that the highest ones are now 1.0
5245
4852
 
5246
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5247
4853
  :type execution_context: int | str | None
5248
4854
  :type undo: bool | None
5249
4855
  """
5250
4856
 
5251
4857
  def vertex_group_normalize_all(
5252
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5253
4858
  execution_context: int | str | None = None,
5254
4859
  undo: bool | None = None,
4860
+ /,
5255
4861
  *,
5256
4862
  group_select_mode: str | None = "",
5257
4863
  lock_active: bool | None = True,
5258
4864
  ):
5259
4865
  """Normalize all weights of all vertex groups, so that for each vertex, the sum of all weights is 1.0
5260
4866
 
5261
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5262
4867
  :type execution_context: int | str | None
5263
4868
  :type undo: bool | None
5264
4869
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5268,16 +4873,15 @@ def vertex_group_normalize_all(
5268
4873
  """
5269
4874
 
5270
4875
  def vertex_group_quantize(
5271
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5272
4876
  execution_context: int | str | None = None,
5273
4877
  undo: bool | None = None,
4878
+ /,
5274
4879
  *,
5275
4880
  group_select_mode: str | None = "",
5276
4881
  steps: int | None = 4,
5277
4882
  ):
5278
4883
  """Set weights to a fixed number of steps
5279
4884
 
5280
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5281
4885
  :type execution_context: int | str | None
5282
4886
  :type undo: bool | None
5283
4887
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5287,16 +4891,15 @@ def vertex_group_quantize(
5287
4891
  """
5288
4892
 
5289
4893
  def vertex_group_remove(
5290
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5291
4894
  execution_context: int | str | None = None,
5292
4895
  undo: bool | None = None,
4896
+ /,
5293
4897
  *,
5294
4898
  all: bool | None = False,
5295
4899
  all_unlocked: bool | None = False,
5296
4900
  ):
5297
4901
  """Delete the active or all vertex groups from the active object
5298
4902
 
5299
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5300
4903
  :type execution_context: int | str | None
5301
4904
  :type undo: bool | None
5302
4905
  :param all: All, Remove all vertex groups
@@ -5306,16 +4909,15 @@ def vertex_group_remove(
5306
4909
  """
5307
4910
 
5308
4911
  def vertex_group_remove_from(
5309
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5310
4912
  execution_context: int | str | None = None,
5311
4913
  undo: bool | None = None,
4914
+ /,
5312
4915
  *,
5313
4916
  use_all_groups: bool | None = False,
5314
4917
  use_all_verts: bool | None = False,
5315
4918
  ):
5316
4919
  """Remove the selected vertices from active or all vertex group(s)
5317
4920
 
5318
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5319
4921
  :type execution_context: int | str | None
5320
4922
  :type undo: bool | None
5321
4923
  :param use_all_groups: All Groups, Remove from all groups
@@ -5325,27 +4927,23 @@ def vertex_group_remove_from(
5325
4927
  """
5326
4928
 
5327
4929
  def vertex_group_select(
5328
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5329
- execution_context: int | str | None = None,
5330
- undo: bool | None = None,
4930
+ execution_context: int | str | None = None, undo: bool | None = None
5331
4931
  ):
5332
4932
  """Select all the vertices assigned to the active vertex group
5333
4933
 
5334
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5335
4934
  :type execution_context: int | str | None
5336
4935
  :type undo: bool | None
5337
4936
  """
5338
4937
 
5339
4938
  def vertex_group_set_active(
5340
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5341
4939
  execution_context: int | str | None = None,
5342
4940
  undo: bool | None = None,
4941
+ /,
5343
4942
  *,
5344
4943
  group: str | None = "",
5345
4944
  ):
5346
4945
  """Set the active vertex group
5347
4946
 
5348
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5349
4947
  :type execution_context: int | str | None
5350
4948
  :type undo: bool | None
5351
4949
  :param group: Group, Vertex group to set as active
@@ -5353,9 +4951,9 @@ def vertex_group_set_active(
5353
4951
  """
5354
4952
 
5355
4953
  def vertex_group_smooth(
5356
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5357
4954
  execution_context: int | str | None = None,
5358
4955
  undo: bool | None = None,
4956
+ /,
5359
4957
  *,
5360
4958
  group_select_mode: str | None = "",
5361
4959
  factor: float | None = 0.5,
@@ -5364,7 +4962,6 @@ def vertex_group_smooth(
5364
4962
  ):
5365
4963
  """Smooth weights for selected vertices
5366
4964
 
5367
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5368
4965
  :type execution_context: int | str | None
5369
4966
  :type undo: bool | None
5370
4967
  :param group_select_mode: Subset, Define which subset of groups shall be used
@@ -5378,15 +4975,14 @@ def vertex_group_smooth(
5378
4975
  """
5379
4976
 
5380
4977
  def vertex_group_sort(
5381
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5382
4978
  execution_context: int | str | None = None,
5383
4979
  undo: bool | None = None,
4980
+ /,
5384
4981
  *,
5385
4982
  sort_type: typing.Literal["NAME", "BONE_HIERARCHY"] | None = "NAME",
5386
4983
  ):
5387
4984
  """Sort vertex groups
5388
4985
 
5389
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5390
4986
  :type execution_context: int | str | None
5391
4987
  :type undo: bool | None
5392
4988
  :param sort_type: Sort Type, Sort type
@@ -5394,39 +4990,32 @@ def vertex_group_sort(
5394
4990
  """
5395
4991
 
5396
4992
  def vertex_parent_set(
5397
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5398
- execution_context: int | str | None = None,
5399
- undo: bool | None = None,
4993
+ execution_context: int | str | None = None, undo: bool | None = None
5400
4994
  ):
5401
4995
  """Parent selected objects to the selected vertices
5402
4996
 
5403
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5404
4997
  :type execution_context: int | str | None
5405
4998
  :type undo: bool | None
5406
4999
  """
5407
5000
 
5408
5001
  def vertex_weight_copy(
5409
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5410
- execution_context: int | str | None = None,
5411
- undo: bool | None = None,
5002
+ execution_context: int | str | None = None, undo: bool | None = None
5412
5003
  ):
5413
5004
  """Copy weights from active to selected
5414
5005
 
5415
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5416
5006
  :type execution_context: int | str | None
5417
5007
  :type undo: bool | None
5418
5008
  """
5419
5009
 
5420
5010
  def vertex_weight_delete(
5421
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5422
5011
  execution_context: int | str | None = None,
5423
5012
  undo: bool | None = None,
5013
+ /,
5424
5014
  *,
5425
5015
  weight_group: int | None = -1,
5426
5016
  ):
5427
5017
  """Delete this weight from the vertex (disabled if vertex group is locked)
5428
5018
 
5429
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5430
5019
  :type execution_context: int | str | None
5431
5020
  :type undo: bool | None
5432
5021
  :param weight_group: Weight Index, Index of source weight in active vertex group
@@ -5434,27 +5023,23 @@ def vertex_weight_delete(
5434
5023
  """
5435
5024
 
5436
5025
  def vertex_weight_normalize_active_vertex(
5437
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5438
- execution_context: int | str | None = None,
5439
- undo: bool | None = None,
5026
+ execution_context: int | str | None = None, undo: bool | None = None
5440
5027
  ):
5441
5028
  """Normalize active vertex's weights
5442
5029
 
5443
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5444
5030
  :type execution_context: int | str | None
5445
5031
  :type undo: bool | None
5446
5032
  """
5447
5033
 
5448
5034
  def vertex_weight_paste(
5449
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5450
5035
  execution_context: int | str | None = None,
5451
5036
  undo: bool | None = None,
5037
+ /,
5452
5038
  *,
5453
5039
  weight_group: int | None = -1,
5454
5040
  ):
5455
5041
  """Copy this group's weight to other selected vertices (disabled if vertex group is locked)
5456
5042
 
5457
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5458
5043
  :type execution_context: int | str | None
5459
5044
  :type undo: bool | None
5460
5045
  :param weight_group: Weight Index, Index of source weight in active vertex group
@@ -5462,15 +5047,14 @@ def vertex_weight_paste(
5462
5047
  """
5463
5048
 
5464
5049
  def vertex_weight_set_active(
5465
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5466
5050
  execution_context: int | str | None = None,
5467
5051
  undo: bool | None = None,
5052
+ /,
5468
5053
  *,
5469
5054
  weight_group: int | None = -1,
5470
5055
  ):
5471
5056
  """Set as active vertex group
5472
5057
 
5473
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5474
5058
  :type execution_context: int | str | None
5475
5059
  :type undo: bool | None
5476
5060
  :param weight_group: Weight Index, Index of source weight in active vertex group
@@ -5478,21 +5062,18 @@ def vertex_weight_set_active(
5478
5062
  """
5479
5063
 
5480
5064
  def visual_transform_apply(
5481
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5482
- execution_context: int | str | None = None,
5483
- undo: bool | None = None,
5065
+ execution_context: int | str | None = None, undo: bool | None = None
5484
5066
  ):
5485
5067
  """Apply the object's visual transformation to its data
5486
5068
 
5487
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5488
5069
  :type execution_context: int | str | None
5489
5070
  :type undo: bool | None
5490
5071
  """
5491
5072
 
5492
5073
  def volume_add(
5493
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5494
5074
  execution_context: int | str | None = None,
5495
5075
  undo: bool | None = None,
5076
+ /,
5496
5077
  *,
5497
5078
  align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
5498
5079
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -5509,7 +5090,6 @@ def volume_add(
5509
5090
  ):
5510
5091
  """Add a volume object to the scene
5511
5092
 
5512
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5513
5093
  :type execution_context: int | str | None
5514
5094
  :type undo: bool | None
5515
5095
  :param align: Align, The alignment of the new object
@@ -5532,9 +5112,9 @@ def volume_add(
5532
5112
  """
5533
5113
 
5534
5114
  def volume_import(
5535
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5536
5115
  execution_context: int | str | None = None,
5537
5116
  undo: bool | None = None,
5117
+ /,
5538
5118
  *,
5539
5119
  filepath: str = "",
5540
5120
  directory: str = "",
@@ -5582,7 +5162,6 @@ def volume_import(
5582
5162
  ):
5583
5163
  """Import OpenVDB volume file
5584
5164
 
5585
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5586
5165
  :type execution_context: int | str | None
5587
5166
  :type undo: bool | None
5588
5167
  :param filepath: File Path, Path to file
@@ -5670,26 +5249,18 @@ def volume_import(
5670
5249
  :type scale: collections.abc.Sequence[float] | mathutils.Vector | None
5671
5250
  """
5672
5251
 
5673
- def voxel_remesh(
5674
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5675
- execution_context: int | str | None = None,
5676
- undo: bool | None = None,
5677
- ):
5252
+ def voxel_remesh(execution_context: int | str | None = None, undo: bool | None = None):
5678
5253
  """Calculates a new manifold mesh based on the volume of the current mesh. All data layers will be lost
5679
5254
 
5680
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5681
5255
  :type execution_context: int | str | None
5682
5256
  :type undo: bool | None
5683
5257
  """
5684
5258
 
5685
5259
  def voxel_size_edit(
5686
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
5687
- execution_context: int | str | None = None,
5688
- undo: bool | None = None,
5260
+ execution_context: int | str | None = None, undo: bool | None = None
5689
5261
  ):
5690
5262
  """Modify the mesh voxel size interactively used in the voxel remesher
5691
5263
 
5692
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
5693
5264
  :type execution_context: int | str | None
5694
5265
  :type undo: bool | None
5695
5266
  """