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
@@ -4,9 +4,9 @@ import typing_extensions
4
4
  import bpy.types
5
5
 
6
6
  def bone_select_menu(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
7
  execution_context: int | str | None = None,
9
8
  undo: bool | None = None,
9
+ /,
10
10
  *,
11
11
  name: str | None = "",
12
12
  extend: bool | None = False,
@@ -15,7 +15,6 @@ def bone_select_menu(
15
15
  ):
16
16
  """Menu bone selection
17
17
 
18
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
19
18
  :type execution_context: int | str | None
20
19
  :type undo: bool | None
21
20
  :param name: Bone Name
@@ -29,9 +28,9 @@ def bone_select_menu(
29
28
  """
30
29
 
31
30
  def camera_background_image_add(
32
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
33
31
  execution_context: int | str | None = None,
34
32
  undo: bool | None = None,
33
+ /,
35
34
  *,
36
35
  filepath: str = "",
37
36
  relative_path: bool | None = True,
@@ -40,7 +39,6 @@ def camera_background_image_add(
40
39
  ):
41
40
  """Add a new background image to the active camera
42
41
 
43
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
44
42
  :type execution_context: int | str | None
45
43
  :type undo: bool | None
46
44
  :param filepath: Filepath, Path to image file
@@ -54,15 +52,14 @@ def camera_background_image_add(
54
52
  """
55
53
 
56
54
  def camera_background_image_remove(
57
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
58
55
  execution_context: int | str | None = None,
59
56
  undo: bool | None = None,
57
+ /,
60
58
  *,
61
59
  index: int | None = 0,
62
60
  ):
63
61
  """Remove a background image from the camera
64
62
 
65
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
66
63
  :type execution_context: int | str | None
67
64
  :type undo: bool | None
68
65
  :param index: Index, Background image index to remove
@@ -70,45 +67,36 @@ def camera_background_image_remove(
70
67
  """
71
68
 
72
69
  def camera_to_view(
73
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
74
- execution_context: int | str | None = None,
75
- undo: bool | None = None,
70
+ execution_context: int | str | None = None, undo: bool | None = None
76
71
  ):
77
72
  """Set camera view to active view
78
73
 
79
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
80
74
  :type execution_context: int | str | None
81
75
  :type undo: bool | None
82
76
  """
83
77
 
84
78
  def camera_to_view_selected(
85
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
86
- execution_context: int | str | None = None,
87
- undo: bool | None = None,
79
+ execution_context: int | str | None = None, undo: bool | None = None
88
80
  ):
89
81
  """Move the camera so selected objects are framed
90
82
 
91
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
92
83
  :type execution_context: int | str | None
93
84
  :type undo: bool | None
94
85
  """
95
86
 
96
87
  def clear_render_border(
97
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
98
- execution_context: int | str | None = None,
99
- undo: bool | None = None,
88
+ execution_context: int | str | None = None, undo: bool | None = None
100
89
  ):
101
90
  """Clear the boundaries of the border render and disable border render
102
91
 
103
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
104
92
  :type execution_context: int | str | None
105
93
  :type undo: bool | None
106
94
  """
107
95
 
108
96
  def clip_border(
109
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
110
97
  execution_context: int | str | None = None,
111
98
  undo: bool | None = None,
99
+ /,
112
100
  *,
113
101
  xmin: int | None = 0,
114
102
  xmax: int | None = 0,
@@ -118,7 +106,6 @@ def clip_border(
118
106
  ):
119
107
  """Set the view clipping region
120
108
 
121
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
122
109
  :type execution_context: int | str | None
123
110
  :type undo: bool | None
124
111
  :param xmin: X Min
@@ -133,29 +120,23 @@ def clip_border(
133
120
  :type wait_for_input: bool | None
134
121
  """
135
122
 
136
- def copybuffer(
137
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
138
- execution_context: int | str | None = None,
139
- undo: bool | None = None,
140
- ):
123
+ def copybuffer(execution_context: int | str | None = None, undo: bool | None = None):
141
124
  """Copy the selected objects to the internal clipboard
142
125
 
143
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
144
126
  :type execution_context: int | str | None
145
127
  :type undo: bool | None
146
128
  """
147
129
 
148
130
  def cursor3d(
149
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
150
131
  execution_context: int | str | None = None,
151
132
  undo: bool | None = None,
133
+ /,
152
134
  *,
153
135
  use_depth: bool | None = True,
154
136
  orientation: typing.Literal["NONE", "VIEW", "XFORM", "GEOM"] | None = "VIEW",
155
137
  ):
156
138
  """Set the location of the 3D cursor
157
139
 
158
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
159
140
  :type execution_context: int | str | None
160
141
  :type undo: bool | None
161
142
  :param use_depth: Surface Project, Project onto the surface
@@ -177,9 +158,9 @@ def cursor3d(
177
158
  """
178
159
 
179
160
  def dolly(
180
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
181
161
  execution_context: int | str | None = None,
182
162
  undo: bool | None = None,
163
+ /,
183
164
  *,
184
165
  mx: int | None = 0,
185
166
  my: int | None = 0,
@@ -188,7 +169,6 @@ def dolly(
188
169
  ):
189
170
  """Dolly in/out in the view
190
171
 
191
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
192
172
  :type execution_context: int | str | None
193
173
  :type undo: bool | None
194
174
  :param mx: Region Position X
@@ -202,16 +182,15 @@ def dolly(
202
182
  """
203
183
 
204
184
  def drop_world(
205
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
206
185
  execution_context: int | str | None = None,
207
186
  undo: bool | None = None,
187
+ /,
208
188
  *,
209
189
  name: str = "",
210
190
  session_uid: int | None = 0,
211
191
  ):
212
192
  """Drop a world into the scene
213
193
 
214
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
215
194
  :type execution_context: int | str | None
216
195
  :type undo: bool | None
217
196
  :param name: Name, Name of the data-block to use by the operator
@@ -221,39 +200,32 @@ def drop_world(
221
200
  """
222
201
 
223
202
  def edit_mesh_extrude_individual_move(
224
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
225
- execution_context: int | str | None = None,
226
- undo: bool | None = None,
203
+ execution_context: int | str | None = None, undo: bool | None = None
227
204
  ):
228
205
  """Extrude each individual face separately along local normals
229
206
 
230
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
231
207
  :type execution_context: int | str | None
232
208
  :type undo: bool | None
233
209
  """
234
210
 
235
211
  def edit_mesh_extrude_manifold_normal(
236
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
237
- execution_context: int | str | None = None,
238
- undo: bool | None = None,
212
+ execution_context: int | str | None = None, undo: bool | None = None
239
213
  ):
240
214
  """Extrude manifold region along normals
241
215
 
242
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
243
216
  :type execution_context: int | str | None
244
217
  :type undo: bool | None
245
218
  """
246
219
 
247
220
  def edit_mesh_extrude_move_normal(
248
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
249
221
  execution_context: int | str | None = None,
250
222
  undo: bool | None = None,
223
+ /,
251
224
  *,
252
225
  dissolve_and_intersect: bool | None = False,
253
226
  ):
254
227
  """Extrude region together along the average normal
255
228
 
256
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
257
229
  :type execution_context: int | str | None
258
230
  :type undo: bool | None
259
231
  :param dissolve_and_intersect: dissolve_and_intersect, Dissolves adjacent faces and intersects new geometry
@@ -261,45 +233,32 @@ def edit_mesh_extrude_move_normal(
261
233
  """
262
234
 
263
235
  def edit_mesh_extrude_move_shrink_fatten(
264
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
265
- execution_context: int | str | None = None,
266
- undo: bool | None = None,
236
+ execution_context: int | str | None = None, undo: bool | None = None
267
237
  ):
268
238
  """Extrude region together along local normals
269
239
 
270
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
271
240
  :type execution_context: int | str | None
272
241
  :type undo: bool | None
273
242
  """
274
243
 
275
- def fly(
276
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
277
- execution_context: int | str | None = None,
278
- undo: bool | None = None,
279
- ):
244
+ def fly(execution_context: int | str | None = None, undo: bool | None = None):
280
245
  """Interactively fly around the scene
281
246
 
282
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
283
247
  :type execution_context: int | str | None
284
248
  :type undo: bool | None
285
249
  """
286
250
 
287
- def game_start(
288
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
289
- execution_context: int | str | None = None,
290
- undo: bool | None = None,
291
- ):
251
+ def game_start(execution_context: int | str | None = None, undo: bool | None = None):
292
252
  """Start game engine
293
253
 
294
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
295
254
  :type execution_context: int | str | None
296
255
  :type undo: bool | None
297
256
  """
298
257
 
299
258
  def interactive_add(
300
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
301
259
  execution_context: int | str | None = None,
302
260
  undo: bool | None = None,
261
+ /,
303
262
  *,
304
263
  primitive_type: typing.Literal[
305
264
  "CUBE", "CYLINDER", "CONE", "SPHERE_UV", "SPHERE_ICO"
@@ -313,7 +272,6 @@ def interactive_add(
313
272
  ):
314
273
  """Interactively add an object
315
274
 
316
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
317
275
  :type execution_context: int | str | None
318
276
  :type undo: bool | None
319
277
  :param primitive_type: Primitive
@@ -355,15 +313,14 @@ def interactive_add(
355
313
  """
356
314
 
357
315
  def localview(
358
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
359
316
  execution_context: int | str | None = None,
360
317
  undo: bool | None = None,
318
+ /,
361
319
  *,
362
320
  frame_selected: bool | None = True,
363
321
  ):
364
322
  """Toggle display of selected object(s) separately and centered in view
365
323
 
366
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
367
324
  :type execution_context: int | str | None
368
325
  :type undo: bool | None
369
326
  :param frame_selected: Frame Selected, Move the view to frame the selected objects
@@ -371,128 +328,94 @@ def localview(
371
328
  """
372
329
 
373
330
  def localview_remove_from(
374
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
375
- execution_context: int | str | None = None,
376
- undo: bool | None = None,
331
+ execution_context: int | str | None = None, undo: bool | None = None
377
332
  ):
378
333
  """Move selected objects out of local view
379
334
 
380
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
381
335
  :type execution_context: int | str | None
382
336
  :type undo: bool | None
383
337
  """
384
338
 
385
339
  def move(
386
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
387
340
  execution_context: int | str | None = None,
388
341
  undo: bool | None = None,
342
+ /,
389
343
  *,
390
344
  use_cursor_init: bool | None = True,
391
345
  ):
392
346
  """Move the view
393
347
 
394
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
395
348
  :type execution_context: int | str | None
396
349
  :type undo: bool | None
397
350
  :param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
398
351
  :type use_cursor_init: bool | None
399
352
  """
400
353
 
401
- def navigate(
402
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
403
- execution_context: int | str | None = None,
404
- undo: bool | None = None,
405
- ):
354
+ def navigate(execution_context: int | str | None = None, undo: bool | None = None):
406
355
  """Interactively navigate around the scene (uses the mode (walk/fly) preference)
407
356
 
408
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
409
357
  :type execution_context: int | str | None
410
358
  :type undo: bool | None
411
359
  """
412
360
 
413
- def ndof_all(
414
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
415
- execution_context: int | str | None = None,
416
- undo: bool | None = None,
417
- ):
361
+ def ndof_all(execution_context: int | str | None = None, undo: bool | None = None):
418
362
  """Pan and rotate the view with the 3D mouse
419
363
 
420
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
421
364
  :type execution_context: int | str | None
422
365
  :type undo: bool | None
423
366
  """
424
367
 
425
- def ndof_orbit(
426
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
427
- execution_context: int | str | None = None,
428
- undo: bool | None = None,
429
- ):
368
+ def ndof_orbit(execution_context: int | str | None = None, undo: bool | None = None):
430
369
  """Orbit the view using the 3D mouse
431
370
 
432
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
433
371
  :type execution_context: int | str | None
434
372
  :type undo: bool | None
435
373
  """
436
374
 
437
375
  def ndof_orbit_zoom(
438
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
439
- execution_context: int | str | None = None,
440
- undo: bool | None = None,
376
+ execution_context: int | str | None = None, undo: bool | None = None
441
377
  ):
442
378
  """Orbit and zoom the view using the 3D mouse
443
379
 
444
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
445
380
  :type execution_context: int | str | None
446
381
  :type undo: bool | None
447
382
  """
448
383
 
449
- def ndof_pan(
450
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
451
- execution_context: int | str | None = None,
452
- undo: bool | None = None,
453
- ):
384
+ def ndof_pan(execution_context: int | str | None = None, undo: bool | None = None):
454
385
  """Pan the view with the 3D mouse
455
386
 
456
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
457
387
  :type execution_context: int | str | None
458
388
  :type undo: bool | None
459
389
  """
460
390
 
461
391
  def object_as_camera(
462
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
463
- execution_context: int | str | None = None,
464
- undo: bool | None = None,
392
+ execution_context: int | str | None = None, undo: bool | None = None
465
393
  ):
466
394
  """Set the active object as the active camera for this view or scene
467
395
 
468
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
469
396
  :type execution_context: int | str | None
470
397
  :type undo: bool | None
471
398
  """
472
399
 
473
400
  def object_mode_pie_or_toggle(
474
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
475
- execution_context: int | str | None = None,
476
- undo: bool | None = None,
401
+ execution_context: int | str | None = None, undo: bool | None = None
477
402
  ):
478
403
  """Undocumented, consider contributing.
479
404
 
480
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
481
405
  :type execution_context: int | str | None
482
406
  :type undo: bool | None
483
407
  """
484
408
 
485
409
  def pastebuffer(
486
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
487
410
  execution_context: int | str | None = None,
488
411
  undo: bool | None = None,
412
+ /,
489
413
  *,
490
414
  autoselect: bool | None = True,
491
415
  active_collection: bool | None = True,
492
416
  ):
493
417
  """Paste objects from the internal clipboard
494
418
 
495
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
496
419
  :type execution_context: int | str | None
497
420
  :type undo: bool | None
498
421
  :param autoselect: Select, Select pasted objects
@@ -502,9 +425,9 @@ def pastebuffer(
502
425
  """
503
426
 
504
427
  def render_border(
505
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
506
428
  execution_context: int | str | None = None,
507
429
  undo: bool | None = None,
430
+ /,
508
431
  *,
509
432
  xmin: int | None = 0,
510
433
  xmax: int | None = 0,
@@ -514,7 +437,6 @@ def render_border(
514
437
  ):
515
438
  """Set the boundaries of the border render and enable border render
516
439
 
517
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
518
440
  :type execution_context: int | str | None
519
441
  :type undo: bool | None
520
442
  :param xmin: X Min
@@ -530,49 +452,38 @@ def render_border(
530
452
  """
531
453
 
532
454
  def rotate(
533
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
534
455
  execution_context: int | str | None = None,
535
456
  undo: bool | None = None,
457
+ /,
536
458
  *,
537
459
  use_cursor_init: bool | None = True,
538
460
  ):
539
461
  """Rotate the view
540
462
 
541
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
542
463
  :type execution_context: int | str | None
543
464
  :type undo: bool | None
544
465
  :param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
545
466
  :type use_cursor_init: bool | None
546
467
  """
547
468
 
548
- def ruler_add(
549
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
550
- execution_context: int | str | None = None,
551
- undo: bool | None = None,
552
- ):
469
+ def ruler_add(execution_context: int | str | None = None, undo: bool | None = None):
553
470
  """Add ruler
554
471
 
555
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
556
472
  :type execution_context: int | str | None
557
473
  :type undo: bool | None
558
474
  """
559
475
 
560
- def ruler_remove(
561
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
562
- execution_context: int | str | None = None,
563
- undo: bool | None = None,
564
- ):
476
+ def ruler_remove(execution_context: int | str | None = None, undo: bool | None = None):
565
477
  """Undocumented, consider contributing.
566
478
 
567
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
568
479
  :type execution_context: int | str | None
569
480
  :type undo: bool | None
570
481
  """
571
482
 
572
483
  def select(
573
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
574
484
  execution_context: int | str | None = None,
575
485
  undo: bool | None = None,
486
+ /,
576
487
  *,
577
488
  extend: bool | None = False,
578
489
  deselect: bool | None = False,
@@ -586,7 +497,6 @@ def select(
586
497
  ):
587
498
  """Select and activate item(s)
588
499
 
589
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
590
500
  :type execution_context: int | str | None
591
501
  :type undo: bool | None
592
502
  :param extend: Extend, Extend selection instead of deselecting everything first
@@ -610,9 +520,9 @@ def select(
610
520
  """
611
521
 
612
522
  def select_box(
613
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
614
523
  execution_context: int | str | None = None,
615
524
  undo: bool | None = None,
525
+ /,
616
526
  *,
617
527
  xmin: int | None = 0,
618
528
  xmax: int | None = 0,
@@ -623,7 +533,6 @@ def select_box(
623
533
  ):
624
534
  """Select items using box selection
625
535
 
626
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
627
536
  :type execution_context: int | str | None
628
537
  :type undo: bool | None
629
538
  :param xmin: X Min
@@ -656,9 +565,9 @@ def select_box(
656
565
  """
657
566
 
658
567
  def select_circle(
659
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
660
568
  execution_context: int | str | None = None,
661
569
  undo: bool | None = None,
570
+ /,
662
571
  *,
663
572
  x: int | None = 0,
664
573
  y: int | None = 0,
@@ -668,7 +577,6 @@ def select_circle(
668
577
  ):
669
578
  """Select items using circle selection
670
579
 
671
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
672
580
  :type execution_context: int | str | None
673
581
  :type undo: bool | None
674
582
  :param x: X
@@ -693,9 +601,9 @@ def select_circle(
693
601
  """
694
602
 
695
603
  def select_lasso(
696
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
697
604
  execution_context: int | str | None = None,
698
605
  undo: bool | None = None,
606
+ /,
699
607
  *,
700
608
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
701
609
  use_smooth_stroke: bool | None = False,
@@ -705,7 +613,6 @@ def select_lasso(
705
613
  ):
706
614
  """Select items using lasso selection
707
615
 
708
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
709
616
  :type execution_context: int | str | None
710
617
  :type undo: bool | None
711
618
  :param path: Path
@@ -736,9 +643,9 @@ def select_lasso(
736
643
  """
737
644
 
738
645
  def select_menu(
739
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
740
646
  execution_context: int | str | None = None,
741
647
  undo: bool | None = None,
648
+ /,
742
649
  *,
743
650
  name: str | None = "",
744
651
  extend: bool | None = False,
@@ -747,7 +654,6 @@ def select_menu(
747
654
  ):
748
655
  """Menu object selection
749
656
 
750
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
751
657
  :type execution_context: int | str | None
752
658
  :type undo: bool | None
753
659
  :param name: Object Name
@@ -760,88 +666,67 @@ def select_menu(
760
666
  :type toggle: bool | None
761
667
  """
762
668
 
763
- def smoothview(
764
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
765
- execution_context: int | str | None = None,
766
- undo: bool | None = None,
767
- ):
669
+ def smoothview(execution_context: int | str | None = None, undo: bool | None = None):
768
670
  """Undocumented, consider contributing.
769
671
 
770
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
771
672
  :type execution_context: int | str | None
772
673
  :type undo: bool | None
773
674
  """
774
675
 
775
676
  def snap_cursor_to_active(
776
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
777
- execution_context: int | str | None = None,
778
- undo: bool | None = None,
677
+ execution_context: int | str | None = None, undo: bool | None = None
779
678
  ):
780
679
  """Snap 3D cursor to the active item
781
680
 
782
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
783
681
  :type execution_context: int | str | None
784
682
  :type undo: bool | None
785
683
  """
786
684
 
787
685
  def snap_cursor_to_center(
788
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
789
- execution_context: int | str | None = None,
790
- undo: bool | None = None,
686
+ execution_context: int | str | None = None, undo: bool | None = None
791
687
  ):
792
688
  """Snap 3D cursor to the world origin
793
689
 
794
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
795
690
  :type execution_context: int | str | None
796
691
  :type undo: bool | None
797
692
  """
798
693
 
799
694
  def snap_cursor_to_grid(
800
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
801
- execution_context: int | str | None = None,
802
- undo: bool | None = None,
695
+ execution_context: int | str | None = None, undo: bool | None = None
803
696
  ):
804
697
  """Snap 3D cursor to the nearest grid division
805
698
 
806
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
807
699
  :type execution_context: int | str | None
808
700
  :type undo: bool | None
809
701
  """
810
702
 
811
703
  def snap_cursor_to_selected(
812
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
813
- execution_context: int | str | None = None,
814
- undo: bool | None = None,
704
+ execution_context: int | str | None = None, undo: bool | None = None
815
705
  ):
816
706
  """Snap 3D cursor to the middle of the selected item(s)
817
707
 
818
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
819
708
  :type execution_context: int | str | None
820
709
  :type undo: bool | None
821
710
  """
822
711
 
823
712
  def snap_selected_to_active(
824
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
825
- execution_context: int | str | None = None,
826
- undo: bool | None = None,
713
+ execution_context: int | str | None = None, undo: bool | None = None
827
714
  ):
828
715
  """Snap selected item(s) to the active item
829
716
 
830
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
831
717
  :type execution_context: int | str | None
832
718
  :type undo: bool | None
833
719
  """
834
720
 
835
721
  def snap_selected_to_cursor(
836
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
837
722
  execution_context: int | str | None = None,
838
723
  undo: bool | None = None,
724
+ /,
839
725
  *,
840
726
  use_offset: bool | None = True,
841
727
  ):
842
728
  """Snap selected item(s) to the 3D cursor
843
729
 
844
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
845
730
  :type execution_context: int | str | None
846
731
  :type undo: bool | None
847
732
  :param use_offset: Offset, If the selection should be snapped as a whole or by each object center
@@ -849,40 +734,33 @@ def snap_selected_to_cursor(
849
734
  """
850
735
 
851
736
  def snap_selected_to_grid(
852
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
853
- execution_context: int | str | None = None,
854
- undo: bool | None = None,
737
+ execution_context: int | str | None = None, undo: bool | None = None
855
738
  ):
856
739
  """Snap selected item(s) to their nearest grid division
857
740
 
858
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
859
741
  :type execution_context: int | str | None
860
742
  :type undo: bool | None
861
743
  """
862
744
 
863
745
  def toggle_matcap_flip(
864
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
865
- execution_context: int | str | None = None,
866
- undo: bool | None = None,
746
+ execution_context: int | str | None = None, undo: bool | None = None
867
747
  ):
868
748
  """Flip MatCap
869
749
 
870
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
871
750
  :type execution_context: int | str | None
872
751
  :type undo: bool | None
873
752
  """
874
753
 
875
754
  def toggle_shading(
876
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
877
755
  execution_context: int | str | None = None,
878
756
  undo: bool | None = None,
757
+ /,
879
758
  *,
880
759
  type: typing.Literal["WIREFRAME", "SOLID", "MATERIAL", "RENDERED"]
881
760
  | None = "WIREFRAME",
882
761
  ):
883
762
  """Toggle shading type in 3D viewport
884
763
 
885
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
886
764
  :type execution_context: int | str | None
887
765
  :type undo: bool | None
888
766
  :param type: Type, Shading type to toggle
@@ -901,29 +779,23 @@ def toggle_shading(
901
779
  :type type: typing.Literal['WIREFRAME','SOLID','MATERIAL','RENDERED'] | None
902
780
  """
903
781
 
904
- def toggle_xray(
905
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
906
- execution_context: int | str | None = None,
907
- undo: bool | None = None,
908
- ):
782
+ def toggle_xray(execution_context: int | str | None = None, undo: bool | None = None):
909
783
  """Transparent scene display. Allow selecting through items
910
784
 
911
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
912
785
  :type execution_context: int | str | None
913
786
  :type undo: bool | None
914
787
  """
915
788
 
916
789
  def transform_gizmo_set(
917
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
918
790
  execution_context: int | str | None = None,
919
791
  undo: bool | None = None,
792
+ /,
920
793
  *,
921
794
  extend: bool | None = False,
922
795
  type: set[typing.Literal["TRANSLATE", "ROTATE", "SCALE"]] | None = {},
923
796
  ):
924
797
  """Set the current transform gizmo
925
798
 
926
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
927
799
  :type execution_context: int | str | None
928
800
  :type undo: bool | None
929
801
  :param extend: Extend
@@ -933,16 +805,15 @@ def transform_gizmo_set(
933
805
  """
934
806
 
935
807
  def view_all(
936
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
937
808
  execution_context: int | str | None = None,
938
809
  undo: bool | None = None,
810
+ /,
939
811
  *,
940
812
  use_all_regions: bool | None = False,
941
813
  center: bool | None = False,
942
814
  ):
943
815
  """View all objects in scene
944
816
 
945
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
946
817
  :type execution_context: int | str | None
947
818
  :type undo: bool | None
948
819
  :param use_all_regions: All Regions, View selected for all regions
@@ -952,9 +823,9 @@ def view_all(
952
823
  """
953
824
 
954
825
  def view_axis(
955
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
956
826
  execution_context: int | str | None = None,
957
827
  undo: bool | None = None,
828
+ /,
958
829
  *,
959
830
  type: typing.Literal["LEFT", "RIGHT", "BOTTOM", "TOP", "FRONT", "BACK"]
960
831
  | None = "LEFT",
@@ -963,7 +834,6 @@ def view_axis(
963
834
  ):
964
835
  """Use a preset viewpoint
965
836
 
966
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
967
837
  :type execution_context: int | str | None
968
838
  :type undo: bool | None
969
839
  :param type: View, Preset viewpoint to use
@@ -992,94 +862,71 @@ def view_axis(
992
862
  :type relative: bool | None
993
863
  """
994
864
 
995
- def view_camera(
996
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
997
- execution_context: int | str | None = None,
998
- undo: bool | None = None,
999
- ):
865
+ def view_camera(execution_context: int | str | None = None, undo: bool | None = None):
1000
866
  """Toggle the camera view
1001
867
 
1002
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1003
868
  :type execution_context: int | str | None
1004
869
  :type undo: bool | None
1005
870
  """
1006
871
 
1007
872
  def view_center_camera(
1008
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1009
- execution_context: int | str | None = None,
1010
- undo: bool | None = None,
873
+ execution_context: int | str | None = None, undo: bool | None = None
1011
874
  ):
1012
875
  """Center the camera view, resizing the view to fit its bounds
1013
876
 
1014
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1015
877
  :type execution_context: int | str | None
1016
878
  :type undo: bool | None
1017
879
  """
1018
880
 
1019
881
  def view_center_cursor(
1020
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1021
- execution_context: int | str | None = None,
1022
- undo: bool | None = None,
882
+ execution_context: int | str | None = None, undo: bool | None = None
1023
883
  ):
1024
884
  """Center the view so that the cursor is in the middle of the view
1025
885
 
1026
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1027
886
  :type execution_context: int | str | None
1028
887
  :type undo: bool | None
1029
888
  """
1030
889
 
1031
890
  def view_center_lock(
1032
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1033
- execution_context: int | str | None = None,
1034
- undo: bool | None = None,
891
+ execution_context: int | str | None = None, undo: bool | None = None
1035
892
  ):
1036
893
  """Center the view lock offset
1037
894
 
1038
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1039
895
  :type execution_context: int | str | None
1040
896
  :type undo: bool | None
1041
897
  """
1042
898
 
1043
899
  def view_center_pick(
1044
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1045
- execution_context: int | str | None = None,
1046
- undo: bool | None = None,
900
+ execution_context: int | str | None = None, undo: bool | None = None
1047
901
  ):
1048
902
  """Center the view to the Z-depth position under the mouse cursor
1049
903
 
1050
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1051
904
  :type execution_context: int | str | None
1052
905
  :type undo: bool | None
1053
906
  """
1054
907
 
1055
908
  def view_lock_clear(
1056
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1057
- execution_context: int | str | None = None,
1058
- undo: bool | None = None,
909
+ execution_context: int | str | None = None, undo: bool | None = None
1059
910
  ):
1060
911
  """Clear all view locking
1061
912
 
1062
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1063
913
  :type execution_context: int | str | None
1064
914
  :type undo: bool | None
1065
915
  """
1066
916
 
1067
917
  def view_lock_to_active(
1068
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1069
- execution_context: int | str | None = None,
1070
- undo: bool | None = None,
918
+ execution_context: int | str | None = None, undo: bool | None = None
1071
919
  ):
1072
920
  """Lock the view to the active object/bone
1073
921
 
1074
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1075
922
  :type execution_context: int | str | None
1076
923
  :type undo: bool | None
1077
924
  """
1078
925
 
1079
926
  def view_orbit(
1080
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1081
927
  execution_context: int | str | None = None,
1082
928
  undo: bool | None = None,
929
+ /,
1083
930
  *,
1084
931
  angle: float | None = 0.0,
1085
932
  type: typing.Literal["ORBITLEFT", "ORBITRIGHT", "ORBITUP", "ORBITDOWN"]
@@ -1087,7 +934,6 @@ def view_orbit(
1087
934
  ):
1088
935
  """Orbit the view
1089
936
 
1090
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1091
937
  :type execution_context: int | str | None
1092
938
  :type undo: bool | None
1093
939
  :param angle: Roll
@@ -1109,15 +955,14 @@ def view_orbit(
1109
955
  """
1110
956
 
1111
957
  def view_pan(
1112
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1113
958
  execution_context: int | str | None = None,
1114
959
  undo: bool | None = None,
960
+ /,
1115
961
  *,
1116
962
  type: typing.Literal["PANLEFT", "PANRIGHT", "PANUP", "PANDOWN"] | None = "PANLEFT",
1117
963
  ):
1118
964
  """Pan the view in a given direction
1119
965
 
1120
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1121
966
  :type execution_context: int | str | None
1122
967
  :type undo: bool | None
1123
968
  :param type: Pan, Direction of View Pan
@@ -1137,28 +982,24 @@ def view_pan(
1137
982
  """
1138
983
 
1139
984
  def view_persportho(
1140
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1141
- execution_context: int | str | None = None,
1142
- undo: bool | None = None,
985
+ execution_context: int | str | None = None, undo: bool | None = None
1143
986
  ):
1144
987
  """Switch the current view from perspective/orthographic projection
1145
988
 
1146
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1147
989
  :type execution_context: int | str | None
1148
990
  :type undo: bool | None
1149
991
  """
1150
992
 
1151
993
  def view_roll(
1152
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1153
994
  execution_context: int | str | None = None,
1154
995
  undo: bool | None = None,
996
+ /,
1155
997
  *,
1156
998
  angle: float | None = 0.0,
1157
999
  type: typing.Literal["ANGLE", "LEFT", "RIGHT"] | None = "ANGLE",
1158
1000
  ):
1159
1001
  """Roll the view
1160
1002
 
1161
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1162
1003
  :type execution_context: int | str | None
1163
1004
  :type undo: bool | None
1164
1005
  :param angle: Roll
@@ -1177,37 +1018,31 @@ def view_roll(
1177
1018
  """
1178
1019
 
1179
1020
  def view_selected(
1180
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1181
1021
  execution_context: int | str | None = None,
1182
1022
  undo: bool | None = None,
1023
+ /,
1183
1024
  *,
1184
1025
  use_all_regions: bool | None = False,
1185
1026
  ):
1186
1027
  """Move the view to the selection center
1187
1028
 
1188
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1189
1029
  :type execution_context: int | str | None
1190
1030
  :type undo: bool | None
1191
1031
  :param use_all_regions: All Regions, View selected for all regions
1192
1032
  :type use_all_regions: bool | None
1193
1033
  """
1194
1034
 
1195
- def walk(
1196
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1197
- execution_context: int | str | None = None,
1198
- undo: bool | None = None,
1199
- ):
1035
+ def walk(execution_context: int | str | None = None, undo: bool | None = None):
1200
1036
  """Interactively walk around the scene
1201
1037
 
1202
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1203
1038
  :type execution_context: int | str | None
1204
1039
  :type undo: bool | None
1205
1040
  """
1206
1041
 
1207
1042
  def zoom(
1208
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1209
1043
  execution_context: int | str | None = None,
1210
1044
  undo: bool | None = None,
1045
+ /,
1211
1046
  *,
1212
1047
  mx: int | None = 0,
1213
1048
  my: int | None = 0,
@@ -1216,7 +1051,6 @@ def zoom(
1216
1051
  ):
1217
1052
  """Zoom in/out in the view
1218
1053
 
1219
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1220
1054
  :type execution_context: int | str | None
1221
1055
  :type undo: bool | None
1222
1056
  :param mx: Region Position X
@@ -1230,9 +1064,9 @@ def zoom(
1230
1064
  """
1231
1065
 
1232
1066
  def zoom_border(
1233
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1234
1067
  execution_context: int | str | None = None,
1235
1068
  undo: bool | None = None,
1069
+ /,
1236
1070
  *,
1237
1071
  xmin: int | None = 0,
1238
1072
  xmax: int | None = 0,
@@ -1243,7 +1077,6 @@ def zoom_border(
1243
1077
  ):
1244
1078
  """Zoom in the view to the nearest object contained in the border
1245
1079
 
1246
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1247
1080
  :type execution_context: int | str | None
1248
1081
  :type undo: bool | None
1249
1082
  :param xmin: X Min
@@ -1261,13 +1094,10 @@ def zoom_border(
1261
1094
  """
1262
1095
 
1263
1096
  def zoom_camera_1_to_1(
1264
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1265
- execution_context: int | str | None = None,
1266
- undo: bool | None = None,
1097
+ execution_context: int | str | None = None, undo: bool | None = None
1267
1098
  ):
1268
1099
  """Match the camera to 1:1 to the render output
1269
1100
 
1270
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1271
1101
  :type execution_context: int | str | None
1272
1102
  :type undo: bool | None
1273
1103
  """