fake-bpy-module 20240508__py3-none-any.whl → 20240510__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (84) hide show
  1. bmesh/ops/__init__.pyi +106 -106
  2. bpy/ops/action/__init__.pyi +152 -76
  3. bpy/ops/anim/__init__.pyi +212 -106
  4. bpy/ops/armature/__init__.pyi +192 -96
  5. bpy/ops/asset/__init__.pyi +64 -32
  6. bpy/ops/boid/__init__.pyi +32 -16
  7. bpy/ops/brush/__init__.pyi +36 -18
  8. bpy/ops/buttons/__init__.pyi +24 -12
  9. bpy/ops/cachefile/__init__.pyi +20 -10
  10. bpy/ops/camera/__init__.pyi +8 -4
  11. bpy/ops/clip/__init__.pyi +368 -184
  12. bpy/ops/cloth/__init__.pyi +4 -2
  13. bpy/ops/collection/__init__.pyi +36 -18
  14. bpy/ops/console/__init__.pyi +84 -42
  15. bpy/ops/constraint/__init__.pyi +72 -36
  16. bpy/ops/curve/__init__.pyi +204 -102
  17. bpy/ops/curves/__init__.pyi +108 -54
  18. bpy/ops/cycles/__init__.pyi +12 -6
  19. bpy/ops/dpaint/__init__.pyi +20 -10
  20. bpy/ops/ed/__init__.pyi +48 -24
  21. bpy/ops/export_anim/__init__.pyi +4 -2
  22. bpy/ops/export_mesh/__init__.pyi +4 -2
  23. bpy/ops/export_scene/__init__.pyi +15 -9
  24. bpy/ops/file/__init__.pyi +160 -80
  25. bpy/ops/fluid/__init__.pyi +56 -28
  26. bpy/ops/font/__init__.pyi +92 -46
  27. bpy/ops/geometry/__init__.pyi +40 -20
  28. bpy/ops/gizmogroup/__init__.pyi +8 -4
  29. bpy/ops/gpencil/__init__.pyi +600 -300
  30. bpy/ops/graph/__init__.pyi +260 -130
  31. bpy/ops/grease_pencil/__init__.pyi +268 -134
  32. bpy/ops/image/__init__.pyi +188 -94
  33. bpy/ops/import_anim/__init__.pyi +4 -2
  34. bpy/ops/import_curve/__init__.pyi +4 -2
  35. bpy/ops/import_mesh/__init__.pyi +4 -2
  36. bpy/ops/import_scene/__init__.pyi +12 -6
  37. bpy/ops/info/__init__.pyi +28 -14
  38. bpy/ops/lattice/__init__.pyi +32 -16
  39. bpy/ops/marker/__init__.pyi +44 -22
  40. bpy/ops/mask/__init__.pyi +156 -78
  41. bpy/ops/material/__init__.pyi +12 -6
  42. bpy/ops/mball/__init__.pyi +32 -16
  43. bpy/ops/mesh/__init__.pyi +652 -326
  44. bpy/ops/nla/__init__.pyi +158 -80
  45. bpy/ops/node/__init__.pyi +404 -202
  46. bpy/ops/object/__init__.pyi +1002 -490
  47. bpy/ops/outliner/__init__.pyi +276 -138
  48. bpy/ops/paint/__init__.pyi +212 -106
  49. bpy/ops/paintcurve/__init__.pyi +32 -16
  50. bpy/ops/palette/__init__.pyi +28 -14
  51. bpy/ops/particle/__init__.pyi +144 -72
  52. bpy/ops/pose/__init__.pyi +156 -78
  53. bpy/ops/poselib/__init__.pyi +36 -18
  54. bpy/ops/preferences/__init__.pyi +152 -76
  55. bpy/ops/ptcache/__init__.pyi +28 -14
  56. bpy/ops/render/__init__.pyi +48 -24
  57. bpy/ops/rigidbody/__init__.pyi +52 -26
  58. bpy/ops/scene/__init__.pyi +156 -78
  59. bpy/ops/screen/__init__.pyi +156 -78
  60. bpy/ops/script/__init__.pyi +12 -6
  61. bpy/ops/sculpt/__init__.pyi +134 -68
  62. bpy/ops/sculpt_curves/__init__.pyi +16 -8
  63. bpy/ops/sequencer/__init__.pyi +340 -170
  64. bpy/ops/sound/__init__.pyi +28 -14
  65. bpy/ops/spreadsheet/__init__.pyi +16 -8
  66. bpy/ops/surface/__init__.pyi +24 -12
  67. bpy/ops/text/__init__.pyi +172 -86
  68. bpy/ops/text_editor/__init__.pyi +4 -2
  69. bpy/ops/texture/__init__.pyi +16 -8
  70. bpy/ops/transform/__init__.pyi +108 -54
  71. bpy/ops/ui/__init__.pyi +132 -66
  72. bpy/ops/uilist/__init__.pyi +12 -6
  73. bpy/ops/uv/__init__.pyi +196 -98
  74. bpy/ops/view2d/__init__.pyi +56 -28
  75. bpy/ops/view3d/__init__.pyi +268 -134
  76. bpy/ops/wm/__init__.pyi +496 -227
  77. bpy/ops/workspace/__init__.pyi +28 -14
  78. bpy/ops/world/__init__.pyi +4 -2
  79. bpy/types/__init__.pyi +434 -37
  80. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/METADATA +1 -1
  81. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/RECORD +84 -84
  82. mathutils/__init__.pyi +20 -0
  83. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/WHEEL +0 -0
  84. {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/top_level.txt +0 -0
@@ -4,14 +4,16 @@ import bpy.types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  def actionzone(
7
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
7
+ override_context: typing.Optional[
8
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
9
+ ] = None,
8
10
  execution_context: typing.Optional[typing.Union[str, int]] = None,
9
11
  undo: typing.Optional[bool] = None,
10
12
  modifier: typing.Optional[typing.Any] = 0,
11
13
  ):
12
14
  """Handle area action zones for mouse actions/gestures
13
15
 
14
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
16
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
15
17
  :type execution_context: typing.Optional[typing.Union[str, int]]
16
18
  :type undo: typing.Optional[bool]
17
19
  :param modifier: Modifier, Modifier state
@@ -21,14 +23,16 @@ def actionzone(
21
23
  ...
22
24
 
23
25
  def animation_cancel(
24
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
26
+ override_context: typing.Optional[
27
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
28
+ ] = None,
25
29
  execution_context: typing.Optional[typing.Union[str, int]] = None,
26
30
  undo: typing.Optional[bool] = None,
27
31
  restore_frame: typing.Optional[typing.Union[bool, typing.Any]] = True,
28
32
  ):
29
33
  """Cancel animation, returning to the original frame
30
34
 
31
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
35
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
32
36
  :type execution_context: typing.Optional[typing.Union[str, int]]
33
37
  :type undo: typing.Optional[bool]
34
38
  :param restore_frame: Restore Frame, Restore the frame when animation was initialized
@@ -38,7 +42,9 @@ def animation_cancel(
38
42
  ...
39
43
 
40
44
  def animation_play(
41
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
45
+ override_context: typing.Optional[
46
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
47
+ ] = None,
42
48
  execution_context: typing.Optional[typing.Union[str, int]] = None,
43
49
  undo: typing.Optional[bool] = None,
44
50
  reverse: typing.Optional[typing.Union[bool, typing.Any]] = False,
@@ -46,7 +52,7 @@ def animation_play(
46
52
  ):
47
53
  """Play animation
48
54
 
49
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
55
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
50
56
  :type execution_context: typing.Optional[typing.Union[str, int]]
51
57
  :type undo: typing.Optional[bool]
52
58
  :param reverse: Play in Reverse, Animation is played backwards
@@ -58,13 +64,15 @@ def animation_play(
58
64
  ...
59
65
 
60
66
  def animation_step(
61
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
67
+ override_context: typing.Optional[
68
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
69
+ ] = None,
62
70
  execution_context: typing.Optional[typing.Union[str, int]] = None,
63
71
  undo: typing.Optional[bool] = None,
64
72
  ):
65
73
  """Step through animation by position
66
74
 
67
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
75
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
68
76
  :type execution_context: typing.Optional[typing.Union[str, int]]
69
77
  :type undo: typing.Optional[bool]
70
78
  """
@@ -72,13 +80,15 @@ def animation_step(
72
80
  ...
73
81
 
74
82
  def area_close(
75
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
83
+ override_context: typing.Optional[
84
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
85
+ ] = None,
76
86
  execution_context: typing.Optional[typing.Union[str, int]] = None,
77
87
  undo: typing.Optional[bool] = None,
78
88
  ):
79
89
  """Close selected area
80
90
 
81
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
91
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
82
92
  :type execution_context: typing.Optional[typing.Union[str, int]]
83
93
  :type undo: typing.Optional[bool]
84
94
  """
@@ -86,13 +96,15 @@ def area_close(
86
96
  ...
87
97
 
88
98
  def area_dupli(
89
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
99
+ override_context: typing.Optional[
100
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
101
+ ] = None,
90
102
  execution_context: typing.Optional[typing.Union[str, int]] = None,
91
103
  undo: typing.Optional[bool] = None,
92
104
  ):
93
105
  """Duplicate selected area into new window
94
106
 
95
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
107
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
96
108
  :type execution_context: typing.Optional[typing.Union[str, int]]
97
109
  :type undo: typing.Optional[bool]
98
110
  """
@@ -100,14 +112,16 @@ def area_dupli(
100
112
  ...
101
113
 
102
114
  def area_join(
103
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
115
+ override_context: typing.Optional[
116
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
117
+ ] = None,
104
118
  execution_context: typing.Optional[typing.Union[str, int]] = None,
105
119
  undo: typing.Optional[bool] = None,
106
120
  cursor: typing.Optional[typing.Any] = (0, 0),
107
121
  ):
108
122
  """Join selected areas into new window
109
123
 
110
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
124
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
111
125
  :type execution_context: typing.Optional[typing.Union[str, int]]
112
126
  :type undo: typing.Optional[bool]
113
127
  :param cursor: Cursor
@@ -117,7 +131,9 @@ def area_join(
117
131
  ...
118
132
 
119
133
  def area_move(
120
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
134
+ override_context: typing.Optional[
135
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
136
+ ] = None,
121
137
  execution_context: typing.Optional[typing.Union[str, int]] = None,
122
138
  undo: typing.Optional[bool] = None,
123
139
  x: typing.Optional[typing.Any] = 0,
@@ -126,7 +142,7 @@ def area_move(
126
142
  ):
127
143
  """Move selected area edges
128
144
 
129
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
145
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
130
146
  :type execution_context: typing.Optional[typing.Union[str, int]]
131
147
  :type undo: typing.Optional[bool]
132
148
  :param x: X
@@ -140,13 +156,15 @@ def area_move(
140
156
  ...
141
157
 
142
158
  def area_options(
143
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
159
+ override_context: typing.Optional[
160
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
161
+ ] = None,
144
162
  execution_context: typing.Optional[typing.Union[str, int]] = None,
145
163
  undo: typing.Optional[bool] = None,
146
164
  ):
147
165
  """Operations for splitting and merging
148
166
 
149
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
167
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
150
168
  :type execution_context: typing.Optional[typing.Union[str, int]]
151
169
  :type undo: typing.Optional[bool]
152
170
  """
@@ -154,7 +172,9 @@ def area_options(
154
172
  ...
155
173
 
156
174
  def area_split(
157
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
175
+ override_context: typing.Optional[
176
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
177
+ ] = None,
158
178
  execution_context: typing.Optional[typing.Union[str, int]] = None,
159
179
  undo: typing.Optional[bool] = None,
160
180
  direction: typing.Optional[typing.Any] = "HORIZONTAL",
@@ -163,7 +183,7 @@ def area_split(
163
183
  ):
164
184
  """Split selected area into new windows
165
185
 
166
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
186
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
167
187
  :type execution_context: typing.Optional[typing.Union[str, int]]
168
188
  :type undo: typing.Optional[bool]
169
189
  :param direction: Direction
@@ -177,14 +197,16 @@ def area_split(
177
197
  ...
178
198
 
179
199
  def area_swap(
180
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
200
+ override_context: typing.Optional[
201
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
202
+ ] = None,
181
203
  execution_context: typing.Optional[typing.Union[str, int]] = None,
182
204
  undo: typing.Optional[bool] = None,
183
205
  cursor: typing.Optional[typing.Any] = (0, 0),
184
206
  ):
185
207
  """Swap selected areas screen positions
186
208
 
187
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
209
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
188
210
  :type execution_context: typing.Optional[typing.Union[str, int]]
189
211
  :type undo: typing.Optional[bool]
190
212
  :param cursor: Cursor
@@ -194,13 +216,15 @@ def area_swap(
194
216
  ...
195
217
 
196
218
  def back_to_previous(
197
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
219
+ override_context: typing.Optional[
220
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
221
+ ] = None,
198
222
  execution_context: typing.Optional[typing.Union[str, int]] = None,
199
223
  undo: typing.Optional[bool] = None,
200
224
  ):
201
225
  """Revert back to the original screen layout, before fullscreen area overlay
202
226
 
203
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
227
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
204
228
  :type execution_context: typing.Optional[typing.Union[str, int]]
205
229
  :type undo: typing.Optional[bool]
206
230
  """
@@ -208,13 +232,15 @@ def back_to_previous(
208
232
  ...
209
233
 
210
234
  def delete(
211
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
235
+ override_context: typing.Optional[
236
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
237
+ ] = None,
212
238
  execution_context: typing.Optional[typing.Union[str, int]] = None,
213
239
  undo: typing.Optional[bool] = None,
214
240
  ):
215
241
  """Delete active screen
216
242
 
217
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
243
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
218
244
  :type execution_context: typing.Optional[typing.Union[str, int]]
219
245
  :type undo: typing.Optional[bool]
220
246
  """
@@ -222,13 +248,15 @@ def delete(
222
248
  ...
223
249
 
224
250
  def drivers_editor_show(
225
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
251
+ override_context: typing.Optional[
252
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
253
+ ] = None,
226
254
  execution_context: typing.Optional[typing.Union[str, int]] = None,
227
255
  undo: typing.Optional[bool] = None,
228
256
  ):
229
257
  """Show drivers editor in a separate window
230
258
 
231
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
259
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
232
260
  :type execution_context: typing.Optional[typing.Union[str, int]]
233
261
  :type undo: typing.Optional[bool]
234
262
  """
@@ -236,14 +264,16 @@ def drivers_editor_show(
236
264
  ...
237
265
 
238
266
  def frame_jump(
239
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
267
+ override_context: typing.Optional[
268
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
269
+ ] = None,
240
270
  execution_context: typing.Optional[typing.Union[str, int]] = None,
241
271
  undo: typing.Optional[bool] = None,
242
272
  end: typing.Optional[typing.Union[bool, typing.Any]] = False,
243
273
  ):
244
274
  """Jump to first/last frame in frame range
245
275
 
246
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
276
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
247
277
  :type execution_context: typing.Optional[typing.Union[str, int]]
248
278
  :type undo: typing.Optional[bool]
249
279
  :param end: Last Frame, Jump to the last frame of the frame range
@@ -253,14 +283,16 @@ def frame_jump(
253
283
  ...
254
284
 
255
285
  def frame_offset(
256
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
286
+ override_context: typing.Optional[
287
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
288
+ ] = None,
257
289
  execution_context: typing.Optional[typing.Union[str, int]] = None,
258
290
  undo: typing.Optional[bool] = None,
259
291
  delta: typing.Optional[typing.Any] = 0,
260
292
  ):
261
293
  """Move current frame forward/backward by a given number
262
294
 
263
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
295
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
264
296
  :type execution_context: typing.Optional[typing.Union[str, int]]
265
297
  :type undo: typing.Optional[bool]
266
298
  :param delta: Delta
@@ -270,13 +302,15 @@ def frame_offset(
270
302
  ...
271
303
 
272
304
  def header_toggle_menus(
273
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
305
+ override_context: typing.Optional[
306
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
307
+ ] = None,
274
308
  execution_context: typing.Optional[typing.Union[str, int]] = None,
275
309
  undo: typing.Optional[bool] = None,
276
310
  ):
277
311
  """Expand or collapse the header pulldown menus
278
312
 
279
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
313
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
280
314
  :type execution_context: typing.Optional[typing.Union[str, int]]
281
315
  :type undo: typing.Optional[bool]
282
316
  """
@@ -284,13 +318,15 @@ def header_toggle_menus(
284
318
  ...
285
319
 
286
320
  def info_log_show(
287
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
321
+ override_context: typing.Optional[
322
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
323
+ ] = None,
288
324
  execution_context: typing.Optional[typing.Union[str, int]] = None,
289
325
  undo: typing.Optional[bool] = None,
290
326
  ):
291
327
  """Show info log in a separate window
292
328
 
293
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
329
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
294
330
  :type execution_context: typing.Optional[typing.Union[str, int]]
295
331
  :type undo: typing.Optional[bool]
296
332
  """
@@ -298,14 +334,16 @@ def info_log_show(
298
334
  ...
299
335
 
300
336
  def keyframe_jump(
301
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
337
+ override_context: typing.Optional[
338
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
339
+ ] = None,
302
340
  execution_context: typing.Optional[typing.Union[str, int]] = None,
303
341
  undo: typing.Optional[bool] = None,
304
342
  next: typing.Optional[typing.Union[bool, typing.Any]] = True,
305
343
  ):
306
344
  """Jump to previous/next keyframe
307
345
 
308
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
346
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
309
347
  :type execution_context: typing.Optional[typing.Union[str, int]]
310
348
  :type undo: typing.Optional[bool]
311
349
  :param next: Next Keyframe
@@ -315,14 +353,16 @@ def keyframe_jump(
315
353
  ...
316
354
 
317
355
  def marker_jump(
318
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
356
+ override_context: typing.Optional[
357
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
358
+ ] = None,
319
359
  execution_context: typing.Optional[typing.Union[str, int]] = None,
320
360
  undo: typing.Optional[bool] = None,
321
361
  next: typing.Optional[typing.Union[bool, typing.Any]] = True,
322
362
  ):
323
363
  """Jump to previous/next marker
324
364
 
325
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
365
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
326
366
  :type execution_context: typing.Optional[typing.Union[str, int]]
327
367
  :type undo: typing.Optional[bool]
328
368
  :param next: Next Marker
@@ -332,13 +372,15 @@ def marker_jump(
332
372
  ...
333
373
 
334
374
  def new(
335
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
375
+ override_context: typing.Optional[
376
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
377
+ ] = None,
336
378
  execution_context: typing.Optional[typing.Union[str, int]] = None,
337
379
  undo: typing.Optional[bool] = None,
338
380
  ):
339
381
  """Add a new screen
340
382
 
341
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
383
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
342
384
  :type execution_context: typing.Optional[typing.Union[str, int]]
343
385
  :type undo: typing.Optional[bool]
344
386
  """
@@ -346,13 +388,15 @@ def new(
346
388
  ...
347
389
 
348
390
  def redo_last(
349
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
391
+ override_context: typing.Optional[
392
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
393
+ ] = None,
350
394
  execution_context: typing.Optional[typing.Union[str, int]] = None,
351
395
  undo: typing.Optional[bool] = None,
352
396
  ):
353
397
  """Display parameters for last action performed
354
398
 
355
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
399
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
356
400
  :type execution_context: typing.Optional[typing.Union[str, int]]
357
401
  :type undo: typing.Optional[bool]
358
402
  """
@@ -360,13 +404,15 @@ def redo_last(
360
404
  ...
361
405
 
362
406
  def region_blend(
363
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
407
+ override_context: typing.Optional[
408
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
409
+ ] = None,
364
410
  execution_context: typing.Optional[typing.Union[str, int]] = None,
365
411
  undo: typing.Optional[bool] = None,
366
412
  ):
367
413
  """Blend in and out overlapping region
368
414
 
369
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
415
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
370
416
  :type execution_context: typing.Optional[typing.Union[str, int]]
371
417
  :type undo: typing.Optional[bool]
372
418
  """
@@ -374,13 +420,15 @@ def region_blend(
374
420
  ...
375
421
 
376
422
  def region_context_menu(
377
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
423
+ override_context: typing.Optional[
424
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
425
+ ] = None,
378
426
  execution_context: typing.Optional[typing.Union[str, int]] = None,
379
427
  undo: typing.Optional[bool] = None,
380
428
  ):
381
429
  """Display region context menu
382
430
 
383
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
431
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
384
432
  :type execution_context: typing.Optional[typing.Union[str, int]]
385
433
  :type undo: typing.Optional[bool]
386
434
  """
@@ -388,13 +436,15 @@ def region_context_menu(
388
436
  ...
389
437
 
390
438
  def region_flip(
391
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
439
+ override_context: typing.Optional[
440
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
441
+ ] = None,
392
442
  execution_context: typing.Optional[typing.Union[str, int]] = None,
393
443
  undo: typing.Optional[bool] = None,
394
444
  ):
395
445
  """Toggle the region's alignment (left/right or top/bottom)
396
446
 
397
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
447
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
398
448
  :type execution_context: typing.Optional[typing.Union[str, int]]
399
449
  :type undo: typing.Optional[bool]
400
450
  """
@@ -402,13 +452,15 @@ def region_flip(
402
452
  ...
403
453
 
404
454
  def region_quadview(
405
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
455
+ override_context: typing.Optional[
456
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
457
+ ] = None,
406
458
  execution_context: typing.Optional[typing.Union[str, int]] = None,
407
459
  undo: typing.Optional[bool] = None,
408
460
  ):
409
461
  """Split selected area into camera, front, right, and top views
410
462
 
411
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
463
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
412
464
  :type execution_context: typing.Optional[typing.Union[str, int]]
413
465
  :type undo: typing.Optional[bool]
414
466
  """
@@ -416,13 +468,15 @@ def region_quadview(
416
468
  ...
417
469
 
418
470
  def region_scale(
419
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
471
+ override_context: typing.Optional[
472
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
473
+ ] = None,
420
474
  execution_context: typing.Optional[typing.Union[str, int]] = None,
421
475
  undo: typing.Optional[bool] = None,
422
476
  ):
423
477
  """Scale selected area
424
478
 
425
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
479
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
426
480
  :type execution_context: typing.Optional[typing.Union[str, int]]
427
481
  :type undo: typing.Optional[bool]
428
482
  """
@@ -430,14 +484,16 @@ def region_scale(
430
484
  ...
431
485
 
432
486
  def region_toggle(
433
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
487
+ override_context: typing.Optional[
488
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
489
+ ] = None,
434
490
  execution_context: typing.Optional[typing.Union[str, int]] = None,
435
491
  undo: typing.Optional[bool] = None,
436
492
  region_type: typing.Optional[typing.Union[str, int]] = "WINDOW",
437
493
  ):
438
494
  """Hide or unhide the region
439
495
 
440
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
496
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
441
497
  :type execution_context: typing.Optional[typing.Union[str, int]]
442
498
  :type undo: typing.Optional[bool]
443
499
  :param region_type: Region Type, Type of the region to toggle
@@ -447,14 +503,16 @@ def region_toggle(
447
503
  ...
448
504
 
449
505
  def repeat_history(
450
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
506
+ override_context: typing.Optional[
507
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
508
+ ] = None,
451
509
  execution_context: typing.Optional[typing.Union[str, int]] = None,
452
510
  undo: typing.Optional[bool] = None,
453
511
  index: typing.Optional[typing.Any] = 0,
454
512
  ):
455
513
  """Display menu for previous actions performed
456
514
 
457
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
515
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
458
516
  :type execution_context: typing.Optional[typing.Union[str, int]]
459
517
  :type undo: typing.Optional[bool]
460
518
  :param index: Index
@@ -464,13 +522,15 @@ def repeat_history(
464
522
  ...
465
523
 
466
524
  def repeat_last(
467
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
525
+ override_context: typing.Optional[
526
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
527
+ ] = None,
468
528
  execution_context: typing.Optional[typing.Union[str, int]] = None,
469
529
  undo: typing.Optional[bool] = None,
470
530
  ):
471
531
  """Repeat last action
472
532
 
473
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
533
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
474
534
  :type execution_context: typing.Optional[typing.Union[str, int]]
475
535
  :type undo: typing.Optional[bool]
476
536
  """
@@ -478,14 +538,16 @@ def repeat_last(
478
538
  ...
479
539
 
480
540
  def screen_full_area(
481
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
541
+ override_context: typing.Optional[
542
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
543
+ ] = None,
482
544
  execution_context: typing.Optional[typing.Union[str, int]] = None,
483
545
  undo: typing.Optional[bool] = None,
484
546
  use_hide_panels: typing.Optional[typing.Union[bool, typing.Any]] = False,
485
547
  ):
486
548
  """Toggle display selected area as fullscreen/maximized
487
549
 
488
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
550
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
489
551
  :type execution_context: typing.Optional[typing.Union[str, int]]
490
552
  :type undo: typing.Optional[bool]
491
553
  :param use_hide_panels: Hide Panels, Hide all the panels
@@ -495,14 +557,16 @@ def screen_full_area(
495
557
  ...
496
558
 
497
559
  def screen_set(
498
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
560
+ override_context: typing.Optional[
561
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
562
+ ] = None,
499
563
  execution_context: typing.Optional[typing.Union[str, int]] = None,
500
564
  undo: typing.Optional[bool] = None,
501
565
  delta: typing.Optional[typing.Any] = 1,
502
566
  ):
503
567
  """Cycle through available screens
504
568
 
505
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
569
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
506
570
  :type execution_context: typing.Optional[typing.Union[str, int]]
507
571
  :type undo: typing.Optional[bool]
508
572
  :param delta: Delta
@@ -512,7 +576,9 @@ def screen_set(
512
576
  ...
513
577
 
514
578
  def screenshot(
515
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
579
+ override_context: typing.Optional[
580
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
581
+ ] = None,
516
582
  execution_context: typing.Optional[typing.Union[str, int]] = None,
517
583
  undo: typing.Optional[bool] = None,
518
584
  filepath: typing.Union[str, typing.Any] = "",
@@ -543,7 +609,7 @@ def screenshot(
543
609
  ):
544
610
  """Capture a picture of the whole Blender window
545
611
 
546
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
612
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
547
613
  :type execution_context: typing.Optional[typing.Union[str, int]]
548
614
  :type undo: typing.Optional[bool]
549
615
  :param filepath: File Path, Path to file
@@ -613,7 +679,9 @@ def screenshot(
613
679
  ...
614
680
 
615
681
  def screenshot_area(
616
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
682
+ override_context: typing.Optional[
683
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
684
+ ] = None,
617
685
  execution_context: typing.Optional[typing.Union[str, int]] = None,
618
686
  undo: typing.Optional[bool] = None,
619
687
  filepath: typing.Union[str, typing.Any] = "",
@@ -644,7 +712,7 @@ def screenshot_area(
644
712
  ):
645
713
  """Capture a picture of an editor
646
714
 
647
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
715
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
648
716
  :type execution_context: typing.Optional[typing.Union[str, int]]
649
717
  :type undo: typing.Optional[bool]
650
718
  :param filepath: File Path, Path to file
@@ -714,14 +782,16 @@ def screenshot_area(
714
782
  ...
715
783
 
716
784
  def space_context_cycle(
717
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
785
+ override_context: typing.Optional[
786
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
787
+ ] = None,
718
788
  execution_context: typing.Optional[typing.Union[str, int]] = None,
719
789
  undo: typing.Optional[bool] = None,
720
790
  direction: typing.Optional[typing.Any] = "NEXT",
721
791
  ):
722
792
  """Cycle through the editor context by activating the next/previous one
723
793
 
724
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
794
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
725
795
  :type execution_context: typing.Optional[typing.Union[str, int]]
726
796
  :type undo: typing.Optional[bool]
727
797
  :param direction: Direction, Direction to cycle through
@@ -731,14 +801,16 @@ def space_context_cycle(
731
801
  ...
732
802
 
733
803
  def space_type_set_or_cycle(
734
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
804
+ override_context: typing.Optional[
805
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
806
+ ] = None,
735
807
  execution_context: typing.Optional[typing.Union[str, int]] = None,
736
808
  undo: typing.Optional[bool] = None,
737
809
  space_type: typing.Optional[typing.Union[str, int]] = "EMPTY",
738
810
  ):
739
811
  """Set the space type or cycle subtype
740
812
 
741
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
813
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
742
814
  :type execution_context: typing.Optional[typing.Union[str, int]]
743
815
  :type undo: typing.Optional[bool]
744
816
  :param space_type: Type
@@ -748,13 +820,15 @@ def space_type_set_or_cycle(
748
820
  ...
749
821
 
750
822
  def spacedata_cleanup(
751
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
823
+ override_context: typing.Optional[
824
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
825
+ ] = None,
752
826
  execution_context: typing.Optional[typing.Union[str, int]] = None,
753
827
  undo: typing.Optional[bool] = None,
754
828
  ):
755
829
  """Remove unused settings for invisible editors
756
830
 
757
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
831
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
758
832
  :type execution_context: typing.Optional[typing.Union[str, int]]
759
833
  :type undo: typing.Optional[bool]
760
834
  """
@@ -762,14 +836,16 @@ def spacedata_cleanup(
762
836
  ...
763
837
 
764
838
  def userpref_show(
765
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
839
+ override_context: typing.Optional[
840
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
841
+ ] = None,
766
842
  execution_context: typing.Optional[typing.Union[str, int]] = None,
767
843
  undo: typing.Optional[bool] = None,
768
844
  section: typing.Optional[typing.Union[str, int]] = "INTERFACE",
769
845
  ):
770
846
  """Edit user preferences and system settings
771
847
 
772
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
848
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
773
849
  :type execution_context: typing.Optional[typing.Union[str, int]]
774
850
  :type undo: typing.Optional[bool]
775
851
  :param section: Section to activate in the Preferences
@@ -779,14 +855,16 @@ def userpref_show(
779
855
  ...
780
856
 
781
857
  def workspace_cycle(
782
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
858
+ override_context: typing.Optional[
859
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
860
+ ] = None,
783
861
  execution_context: typing.Optional[typing.Union[str, int]] = None,
784
862
  undo: typing.Optional[bool] = None,
785
863
  direction: typing.Optional[typing.Any] = "NEXT",
786
864
  ):
787
865
  """Cycle through workspaces
788
866
 
789
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
867
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
790
868
  :type execution_context: typing.Optional[typing.Union[str, int]]
791
869
  :type undo: typing.Optional[bool]
792
870
  :param direction: Direction, Direction to cycle through