fake-bpy-module 20240507__py3-none-any.whl → 20240509__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 (83) hide show
  1. bpy/ops/action/__init__.pyi +152 -76
  2. bpy/ops/anim/__init__.pyi +212 -106
  3. bpy/ops/armature/__init__.pyi +192 -96
  4. bpy/ops/asset/__init__.pyi +64 -32
  5. bpy/ops/boid/__init__.pyi +32 -16
  6. bpy/ops/brush/__init__.pyi +36 -18
  7. bpy/ops/buttons/__init__.pyi +24 -12
  8. bpy/ops/cachefile/__init__.pyi +20 -10
  9. bpy/ops/camera/__init__.pyi +8 -4
  10. bpy/ops/clip/__init__.pyi +368 -184
  11. bpy/ops/cloth/__init__.pyi +4 -2
  12. bpy/ops/collection/__init__.pyi +36 -18
  13. bpy/ops/console/__init__.pyi +84 -42
  14. bpy/ops/constraint/__init__.pyi +72 -36
  15. bpy/ops/curve/__init__.pyi +204 -102
  16. bpy/ops/curves/__init__.pyi +108 -54
  17. bpy/ops/cycles/__init__.pyi +12 -6
  18. bpy/ops/dpaint/__init__.pyi +20 -10
  19. bpy/ops/ed/__init__.pyi +48 -24
  20. bpy/ops/export_anim/__init__.pyi +4 -2
  21. bpy/ops/export_mesh/__init__.pyi +4 -2
  22. bpy/ops/export_scene/__init__.pyi +14 -8
  23. bpy/ops/file/__init__.pyi +160 -80
  24. bpy/ops/fluid/__init__.pyi +56 -28
  25. bpy/ops/font/__init__.pyi +92 -46
  26. bpy/ops/geometry/__init__.pyi +40 -20
  27. bpy/ops/gizmogroup/__init__.pyi +8 -4
  28. bpy/ops/gpencil/__init__.pyi +600 -300
  29. bpy/ops/graph/__init__.pyi +260 -130
  30. bpy/ops/grease_pencil/__init__.pyi +268 -134
  31. bpy/ops/image/__init__.pyi +188 -94
  32. bpy/ops/import_anim/__init__.pyi +4 -2
  33. bpy/ops/import_curve/__init__.pyi +4 -2
  34. bpy/ops/import_mesh/__init__.pyi +4 -2
  35. bpy/ops/import_scene/__init__.pyi +12 -6
  36. bpy/ops/info/__init__.pyi +28 -14
  37. bpy/ops/lattice/__init__.pyi +32 -16
  38. bpy/ops/marker/__init__.pyi +44 -22
  39. bpy/ops/mask/__init__.pyi +156 -78
  40. bpy/ops/material/__init__.pyi +12 -6
  41. bpy/ops/mball/__init__.pyi +32 -16
  42. bpy/ops/mesh/__init__.pyi +652 -326
  43. bpy/ops/nla/__init__.pyi +158 -80
  44. bpy/ops/node/__init__.pyi +404 -202
  45. bpy/ops/object/__init__.pyi +1002 -490
  46. bpy/ops/outliner/__init__.pyi +276 -138
  47. bpy/ops/paint/__init__.pyi +212 -106
  48. bpy/ops/paintcurve/__init__.pyi +32 -16
  49. bpy/ops/palette/__init__.pyi +28 -14
  50. bpy/ops/particle/__init__.pyi +144 -72
  51. bpy/ops/pose/__init__.pyi +156 -78
  52. bpy/ops/poselib/__init__.pyi +36 -18
  53. bpy/ops/preferences/__init__.pyi +152 -76
  54. bpy/ops/ptcache/__init__.pyi +28 -14
  55. bpy/ops/render/__init__.pyi +48 -24
  56. bpy/ops/rigidbody/__init__.pyi +52 -26
  57. bpy/ops/scene/__init__.pyi +156 -78
  58. bpy/ops/screen/__init__.pyi +156 -78
  59. bpy/ops/script/__init__.pyi +12 -6
  60. bpy/ops/sculpt/__init__.pyi +134 -68
  61. bpy/ops/sculpt_curves/__init__.pyi +16 -8
  62. bpy/ops/sequencer/__init__.pyi +340 -170
  63. bpy/ops/sound/__init__.pyi +28 -14
  64. bpy/ops/spreadsheet/__init__.pyi +16 -8
  65. bpy/ops/surface/__init__.pyi +24 -12
  66. bpy/ops/text/__init__.pyi +172 -86
  67. bpy/ops/text_editor/__init__.pyi +4 -2
  68. bpy/ops/texture/__init__.pyi +16 -8
  69. bpy/ops/transform/__init__.pyi +108 -54
  70. bpy/ops/ui/__init__.pyi +132 -66
  71. bpy/ops/uilist/__init__.pyi +12 -6
  72. bpy/ops/uv/__init__.pyi +196 -98
  73. bpy/ops/view2d/__init__.pyi +56 -28
  74. bpy/ops/view3d/__init__.pyi +268 -134
  75. bpy/ops/wm/__init__.pyi +493 -224
  76. bpy/ops/workspace/__init__.pyi +28 -14
  77. bpy/ops/world/__init__.pyi +4 -2
  78. bpy/types/__init__.pyi +1250 -631
  79. {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
  80. {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
  81. mathutils/__init__.pyi +20 -0
  82. {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
  83. {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/mask/__init__.pyi CHANGED
@@ -5,14 +5,16 @@ import bpy.types
5
5
  GenericType = typing.TypeVar("GenericType")
6
6
 
7
7
  def add_feather_vertex(
8
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
8
+ override_context: typing.Optional[
9
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
10
+ ] = None,
9
11
  execution_context: typing.Optional[typing.Union[str, int]] = None,
10
12
  undo: typing.Optional[bool] = None,
11
13
  location: typing.Optional[typing.Any] = (0.0, 0.0),
12
14
  ):
13
15
  """Add vertex to feather
14
16
 
15
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
17
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
16
18
  :type execution_context: typing.Optional[typing.Union[str, int]]
17
19
  :type undo: typing.Optional[bool]
18
20
  :param location: Location, Location of vertex in normalized space
@@ -22,7 +24,9 @@ def add_feather_vertex(
22
24
  ...
23
25
 
24
26
  def add_feather_vertex_slide(
25
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
27
+ override_context: typing.Optional[
28
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
29
+ ] = None,
26
30
  execution_context: typing.Optional[typing.Union[str, int]] = None,
27
31
  undo: typing.Optional[bool] = None,
28
32
  MASK_OT_add_feather_vertex: typing.Optional[add_feather_vertex] = None,
@@ -30,7 +34,7 @@ def add_feather_vertex_slide(
30
34
  ):
31
35
  """Add new vertex to feather and slide it
32
36
 
33
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
37
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
34
38
  :type execution_context: typing.Optional[typing.Union[str, int]]
35
39
  :type undo: typing.Optional[bool]
36
40
  :param MASK_OT_add_feather_vertex: Add Feather Vertex, Add vertex to feather
@@ -42,14 +46,16 @@ def add_feather_vertex_slide(
42
46
  ...
43
47
 
44
48
  def add_vertex(
45
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
49
+ override_context: typing.Optional[
50
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
51
+ ] = None,
46
52
  execution_context: typing.Optional[typing.Union[str, int]] = None,
47
53
  undo: typing.Optional[bool] = None,
48
54
  location: typing.Optional[typing.Any] = (0.0, 0.0),
49
55
  ):
50
56
  """Add vertex to active spline
51
57
 
52
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
58
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
53
59
  :type execution_context: typing.Optional[typing.Union[str, int]]
54
60
  :type undo: typing.Optional[bool]
55
61
  :param location: Location, Location of vertex in normalized space
@@ -59,7 +65,9 @@ def add_vertex(
59
65
  ...
60
66
 
61
67
  def add_vertex_slide(
62
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
68
+ override_context: typing.Optional[
69
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
70
+ ] = None,
63
71
  execution_context: typing.Optional[typing.Union[str, int]] = None,
64
72
  undo: typing.Optional[bool] = None,
65
73
  MASK_OT_add_vertex: typing.Optional[add_vertex] = None,
@@ -67,7 +75,7 @@ def add_vertex_slide(
67
75
  ):
68
76
  """Add new vertex and slide it
69
77
 
70
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
78
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
71
79
  :type execution_context: typing.Optional[typing.Union[str, int]]
72
80
  :type undo: typing.Optional[bool]
73
81
  :param MASK_OT_add_vertex: Add Vertex, Add vertex to active spline
@@ -79,13 +87,15 @@ def add_vertex_slide(
79
87
  ...
80
88
 
81
89
  def copy_splines(
82
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
90
+ override_context: typing.Optional[
91
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
92
+ ] = None,
83
93
  execution_context: typing.Optional[typing.Union[str, int]] = None,
84
94
  undo: typing.Optional[bool] = None,
85
95
  ):
86
96
  """Copy the selected splines to the internal clipboard
87
97
 
88
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
98
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
89
99
  :type execution_context: typing.Optional[typing.Union[str, int]]
90
100
  :type undo: typing.Optional[bool]
91
101
  """
@@ -93,13 +103,15 @@ def copy_splines(
93
103
  ...
94
104
 
95
105
  def cyclic_toggle(
96
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
106
+ override_context: typing.Optional[
107
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
108
+ ] = None,
97
109
  execution_context: typing.Optional[typing.Union[str, int]] = None,
98
110
  undo: typing.Optional[bool] = None,
99
111
  ):
100
112
  """Toggle cyclic for selected splines
101
113
 
102
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
114
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
103
115
  :type execution_context: typing.Optional[typing.Union[str, int]]
104
116
  :type undo: typing.Optional[bool]
105
117
  """
@@ -107,14 +119,16 @@ def cyclic_toggle(
107
119
  ...
108
120
 
109
121
  def delete(
110
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
122
+ override_context: typing.Optional[
123
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
124
+ ] = None,
111
125
  execution_context: typing.Optional[typing.Union[str, int]] = None,
112
126
  undo: typing.Optional[bool] = None,
113
127
  confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
114
128
  ):
115
129
  """Delete selected control points or splines
116
130
 
117
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
131
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
118
132
  :type execution_context: typing.Optional[typing.Union[str, int]]
119
133
  :type undo: typing.Optional[bool]
120
134
  :param confirm: Confirm, Prompt for confirmation
@@ -124,13 +138,15 @@ def delete(
124
138
  ...
125
139
 
126
140
  def duplicate(
127
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
141
+ override_context: typing.Optional[
142
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
143
+ ] = None,
128
144
  execution_context: typing.Optional[typing.Union[str, int]] = None,
129
145
  undo: typing.Optional[bool] = None,
130
146
  ):
131
147
  """Duplicate selected control points and segments between them
132
148
 
133
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
149
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
134
150
  :type execution_context: typing.Optional[typing.Union[str, int]]
135
151
  :type undo: typing.Optional[bool]
136
152
  """
@@ -138,7 +154,9 @@ def duplicate(
138
154
  ...
139
155
 
140
156
  def duplicate_move(
141
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
157
+ override_context: typing.Optional[
158
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
159
+ ] = None,
142
160
  execution_context: typing.Optional[typing.Union[str, int]] = None,
143
161
  undo: typing.Optional[bool] = None,
144
162
  MASK_OT_duplicate: typing.Optional[duplicate] = None,
@@ -146,7 +164,7 @@ def duplicate_move(
146
164
  ):
147
165
  """Duplicate mask and move
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
  :param MASK_OT_duplicate: Duplicate Mask, Duplicate selected control points and segments between them
@@ -158,13 +176,15 @@ def duplicate_move(
158
176
  ...
159
177
 
160
178
  def feather_weight_clear(
161
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
179
+ override_context: typing.Optional[
180
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
181
+ ] = None,
162
182
  execution_context: typing.Optional[typing.Union[str, int]] = None,
163
183
  undo: typing.Optional[bool] = None,
164
184
  ):
165
185
  """Reset the feather weight to zero
166
186
 
167
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
187
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
168
188
  :type execution_context: typing.Optional[typing.Union[str, int]]
169
189
  :type undo: typing.Optional[bool]
170
190
  """
@@ -172,14 +192,16 @@ def feather_weight_clear(
172
192
  ...
173
193
 
174
194
  def handle_type_set(
175
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
195
+ override_context: typing.Optional[
196
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
197
+ ] = None,
176
198
  execution_context: typing.Optional[typing.Union[str, int]] = None,
177
199
  undo: typing.Optional[bool] = None,
178
200
  type: typing.Optional[typing.Any] = "AUTO",
179
201
  ):
180
202
  """Set type of handles for selected control points
181
203
 
182
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
204
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
183
205
  :type execution_context: typing.Optional[typing.Union[str, int]]
184
206
  :type undo: typing.Optional[bool]
185
207
  :param type: Type, Spline type
@@ -189,14 +211,16 @@ def handle_type_set(
189
211
  ...
190
212
 
191
213
  def hide_view_clear(
192
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
214
+ override_context: typing.Optional[
215
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
216
+ ] = None,
193
217
  execution_context: typing.Optional[typing.Union[str, int]] = None,
194
218
  undo: typing.Optional[bool] = None,
195
219
  select: typing.Optional[typing.Union[bool, typing.Any]] = True,
196
220
  ):
197
221
  """Reveal temporarily hidden mask layers
198
222
 
199
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
223
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
200
224
  :type execution_context: typing.Optional[typing.Union[str, int]]
201
225
  :type undo: typing.Optional[bool]
202
226
  :param select: Select
@@ -206,14 +230,16 @@ def hide_view_clear(
206
230
  ...
207
231
 
208
232
  def hide_view_set(
209
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
233
+ override_context: typing.Optional[
234
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
235
+ ] = None,
210
236
  execution_context: typing.Optional[typing.Union[str, int]] = None,
211
237
  undo: typing.Optional[bool] = None,
212
238
  unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
213
239
  ):
214
240
  """Temporarily hide mask layers
215
241
 
216
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
242
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
217
243
  :type execution_context: typing.Optional[typing.Union[str, int]]
218
244
  :type undo: typing.Optional[bool]
219
245
  :param unselected: Unselected, Hide unselected rather than selected layers
@@ -223,14 +249,16 @@ def hide_view_set(
223
249
  ...
224
250
 
225
251
  def layer_move(
226
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
252
+ override_context: typing.Optional[
253
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
254
+ ] = None,
227
255
  execution_context: typing.Optional[typing.Union[str, int]] = None,
228
256
  undo: typing.Optional[bool] = None,
229
257
  direction: typing.Optional[typing.Any] = "UP",
230
258
  ):
231
259
  """Move the active layer up/down in the list
232
260
 
233
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
261
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
234
262
  :type execution_context: typing.Optional[typing.Union[str, int]]
235
263
  :type undo: typing.Optional[bool]
236
264
  :param direction: Direction, Direction to move the active layer
@@ -240,14 +268,16 @@ def layer_move(
240
268
  ...
241
269
 
242
270
  def layer_new(
243
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
271
+ override_context: typing.Optional[
272
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
273
+ ] = None,
244
274
  execution_context: typing.Optional[typing.Union[str, int]] = None,
245
275
  undo: typing.Optional[bool] = None,
246
276
  name: typing.Union[str, typing.Any] = "",
247
277
  ):
248
278
  """Add new mask layer for masking
249
279
 
250
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
280
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
251
281
  :type execution_context: typing.Optional[typing.Union[str, int]]
252
282
  :type undo: typing.Optional[bool]
253
283
  :param name: Name, Name of new mask layer
@@ -257,13 +287,15 @@ def layer_new(
257
287
  ...
258
288
 
259
289
  def layer_remove(
260
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
290
+ override_context: typing.Optional[
291
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
292
+ ] = None,
261
293
  execution_context: typing.Optional[typing.Union[str, int]] = None,
262
294
  undo: typing.Optional[bool] = None,
263
295
  ):
264
296
  """Remove mask layer
265
297
 
266
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
298
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
267
299
  :type execution_context: typing.Optional[typing.Union[str, int]]
268
300
  :type undo: typing.Optional[bool]
269
301
  """
@@ -271,14 +303,16 @@ def layer_remove(
271
303
  ...
272
304
 
273
305
  def new(
274
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
306
+ override_context: typing.Optional[
307
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
308
+ ] = None,
275
309
  execution_context: typing.Optional[typing.Union[str, int]] = None,
276
310
  undo: typing.Optional[bool] = None,
277
311
  name: typing.Union[str, typing.Any] = "",
278
312
  ):
279
313
  """Create new mask
280
314
 
281
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
315
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
282
316
  :type execution_context: typing.Optional[typing.Union[str, int]]
283
317
  :type undo: typing.Optional[bool]
284
318
  :param name: Name, Name of new mask
@@ -288,13 +322,15 @@ def new(
288
322
  ...
289
323
 
290
324
  def normals_make_consistent(
291
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
325
+ override_context: typing.Optional[
326
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
327
+ ] = None,
292
328
  execution_context: typing.Optional[typing.Union[str, int]] = None,
293
329
  undo: typing.Optional[bool] = None,
294
330
  ):
295
331
  """Recalculate the direction of selected handles
296
332
 
297
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
333
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
298
334
  :type execution_context: typing.Optional[typing.Union[str, int]]
299
335
  :type undo: typing.Optional[bool]
300
336
  """
@@ -302,13 +338,15 @@ def normals_make_consistent(
302
338
  ...
303
339
 
304
340
  def parent_clear(
305
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
341
+ override_context: typing.Optional[
342
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
343
+ ] = None,
306
344
  execution_context: typing.Optional[typing.Union[str, int]] = None,
307
345
  undo: typing.Optional[bool] = None,
308
346
  ):
309
347
  """Clear the mask's parenting
310
348
 
311
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
349
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
312
350
  :type execution_context: typing.Optional[typing.Union[str, int]]
313
351
  :type undo: typing.Optional[bool]
314
352
  """
@@ -316,13 +354,15 @@ def parent_clear(
316
354
  ...
317
355
 
318
356
  def parent_set(
319
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
357
+ override_context: typing.Optional[
358
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
359
+ ] = None,
320
360
  execution_context: typing.Optional[typing.Union[str, int]] = None,
321
361
  undo: typing.Optional[bool] = None,
322
362
  ):
323
363
  """Set the mask's parenting
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
  """
@@ -330,13 +370,15 @@ def parent_set(
330
370
  ...
331
371
 
332
372
  def paste_splines(
333
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
373
+ override_context: typing.Optional[
374
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
375
+ ] = None,
334
376
  execution_context: typing.Optional[typing.Union[str, int]] = None,
335
377
  undo: typing.Optional[bool] = None,
336
378
  ):
337
379
  """Paste splines from the internal clipboard
338
380
 
339
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
381
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
340
382
  :type execution_context: typing.Optional[typing.Union[str, int]]
341
383
  :type undo: typing.Optional[bool]
342
384
  """
@@ -344,7 +386,9 @@ def paste_splines(
344
386
  ...
345
387
 
346
388
  def primitive_circle_add(
347
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
389
+ override_context: typing.Optional[
390
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
391
+ ] = None,
348
392
  execution_context: typing.Optional[typing.Union[str, int]] = None,
349
393
  undo: typing.Optional[bool] = None,
350
394
  size: typing.Optional[typing.Any] = 100.0,
@@ -352,7 +396,7 @@ def primitive_circle_add(
352
396
  ):
353
397
  """Add new circle-shaped spline
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
  :param size: Size, Size of new circle
@@ -364,7 +408,9 @@ def primitive_circle_add(
364
408
  ...
365
409
 
366
410
  def primitive_square_add(
367
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
411
+ override_context: typing.Optional[
412
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
413
+ ] = None,
368
414
  execution_context: typing.Optional[typing.Union[str, int]] = None,
369
415
  undo: typing.Optional[bool] = None,
370
416
  size: typing.Optional[typing.Any] = 100.0,
@@ -372,7 +418,7 @@ def primitive_square_add(
372
418
  ):
373
419
  """Add new square-shaped spline
374
420
 
375
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
421
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
376
422
  :type execution_context: typing.Optional[typing.Union[str, int]]
377
423
  :type undo: typing.Optional[bool]
378
424
  :param size: Size, Size of new circle
@@ -384,7 +430,9 @@ def primitive_square_add(
384
430
  ...
385
431
 
386
432
  def select(
387
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
433
+ override_context: typing.Optional[
434
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
435
+ ] = None,
388
436
  execution_context: typing.Optional[typing.Union[str, int]] = None,
389
437
  undo: typing.Optional[bool] = None,
390
438
  extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
@@ -396,7 +444,7 @@ def select(
396
444
  ):
397
445
  """Select spline points
398
446
 
399
- :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]]
400
448
  :type execution_context: typing.Optional[typing.Union[str, int]]
401
449
  :type undo: typing.Optional[bool]
402
450
  :param extend: Extend, Extend selection instead of deselecting everything first
@@ -416,14 +464,16 @@ def select(
416
464
  ...
417
465
 
418
466
  def select_all(
419
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
467
+ override_context: typing.Optional[
468
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
469
+ ] = None,
420
470
  execution_context: typing.Optional[typing.Union[str, int]] = None,
421
471
  undo: typing.Optional[bool] = None,
422
472
  action: typing.Optional[typing.Any] = "TOGGLE",
423
473
  ):
424
474
  """Change selection of all curve points
425
475
 
426
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
476
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
427
477
  :type execution_context: typing.Optional[typing.Union[str, int]]
428
478
  :type undo: typing.Optional[bool]
429
479
  :param action: Action, Selection action to execute
@@ -445,7 +495,9 @@ def select_all(
445
495
  ...
446
496
 
447
497
  def select_box(
448
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
498
+ override_context: typing.Optional[
499
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
500
+ ] = None,
449
501
  execution_context: typing.Optional[typing.Union[str, int]] = None,
450
502
  undo: typing.Optional[bool] = None,
451
503
  xmin: typing.Optional[typing.Any] = 0,
@@ -457,7 +509,7 @@ def select_box(
457
509
  ):
458
510
  """Select curve points using box selection
459
511
 
460
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
512
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
461
513
  :type execution_context: typing.Optional[typing.Union[str, int]]
462
514
  :type undo: typing.Optional[bool]
463
515
  :param xmin: X Min
@@ -486,7 +538,9 @@ def select_box(
486
538
  ...
487
539
 
488
540
  def select_circle(
489
- 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,
490
544
  execution_context: typing.Optional[typing.Union[str, int]] = None,
491
545
  undo: typing.Optional[bool] = None,
492
546
  x: typing.Optional[typing.Any] = 0,
@@ -497,7 +551,7 @@ def select_circle(
497
551
  ):
498
552
  """Select curve points using circle selection
499
553
 
500
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
554
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
501
555
  :type execution_context: typing.Optional[typing.Union[str, int]]
502
556
  :type undo: typing.Optional[bool]
503
557
  :param x: X
@@ -524,7 +578,9 @@ def select_circle(
524
578
  ...
525
579
 
526
580
  def select_lasso(
527
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
581
+ override_context: typing.Optional[
582
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
583
+ ] = None,
528
584
  execution_context: typing.Optional[typing.Union[str, int]] = None,
529
585
  undo: typing.Optional[bool] = None,
530
586
  path: typing.Optional[
@@ -534,7 +590,7 @@ def select_lasso(
534
590
  ):
535
591
  """Select curve points using lasso selection
536
592
 
537
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
593
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
538
594
  :type execution_context: typing.Optional[typing.Union[str, int]]
539
595
  :type undo: typing.Optional[bool]
540
596
  :param path: Path
@@ -555,13 +611,15 @@ def select_lasso(
555
611
  ...
556
612
 
557
613
  def select_less(
558
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
614
+ override_context: typing.Optional[
615
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
616
+ ] = None,
559
617
  execution_context: typing.Optional[typing.Union[str, int]] = None,
560
618
  undo: typing.Optional[bool] = None,
561
619
  ):
562
620
  """Deselect spline points at the boundary of each selection region
563
621
 
564
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
622
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
565
623
  :type execution_context: typing.Optional[typing.Union[str, int]]
566
624
  :type undo: typing.Optional[bool]
567
625
  """
@@ -569,13 +627,15 @@ def select_less(
569
627
  ...
570
628
 
571
629
  def select_linked(
572
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
630
+ override_context: typing.Optional[
631
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
632
+ ] = None,
573
633
  execution_context: typing.Optional[typing.Union[str, int]] = None,
574
634
  undo: typing.Optional[bool] = None,
575
635
  ):
576
636
  """Select all curve points linked to already selected ones
577
637
 
578
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
638
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
579
639
  :type execution_context: typing.Optional[typing.Union[str, int]]
580
640
  :type undo: typing.Optional[bool]
581
641
  """
@@ -583,14 +643,16 @@ def select_linked(
583
643
  ...
584
644
 
585
645
  def select_linked_pick(
586
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
646
+ override_context: typing.Optional[
647
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
648
+ ] = None,
587
649
  execution_context: typing.Optional[typing.Union[str, int]] = None,
588
650
  undo: typing.Optional[bool] = None,
589
651
  deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
590
652
  ):
591
653
  """(De)select all points linked to the curve under the mouse cursor
592
654
 
593
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
655
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
594
656
  :type execution_context: typing.Optional[typing.Union[str, int]]
595
657
  :type undo: typing.Optional[bool]
596
658
  :param deselect: Deselect
@@ -600,13 +662,15 @@ def select_linked_pick(
600
662
  ...
601
663
 
602
664
  def select_more(
603
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
665
+ override_context: typing.Optional[
666
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
667
+ ] = None,
604
668
  execution_context: typing.Optional[typing.Union[str, int]] = None,
605
669
  undo: typing.Optional[bool] = None,
606
670
  ):
607
671
  """Select more spline points connected to initial selection
608
672
 
609
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
673
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
610
674
  :type execution_context: typing.Optional[typing.Union[str, int]]
611
675
  :type undo: typing.Optional[bool]
612
676
  """
@@ -614,13 +678,15 @@ def select_more(
614
678
  ...
615
679
 
616
680
  def shape_key_clear(
617
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
681
+ override_context: typing.Optional[
682
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
683
+ ] = None,
618
684
  execution_context: typing.Optional[typing.Union[str, int]] = None,
619
685
  undo: typing.Optional[bool] = None,
620
686
  ):
621
687
  """Remove mask shape keyframe for active mask layer at the current frame
622
688
 
623
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
689
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
624
690
  :type execution_context: typing.Optional[typing.Union[str, int]]
625
691
  :type undo: typing.Optional[bool]
626
692
  """
@@ -628,13 +694,15 @@ def shape_key_clear(
628
694
  ...
629
695
 
630
696
  def shape_key_feather_reset(
631
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
697
+ override_context: typing.Optional[
698
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
699
+ ] = None,
632
700
  execution_context: typing.Optional[typing.Union[str, int]] = None,
633
701
  undo: typing.Optional[bool] = None,
634
702
  ):
635
703
  """Reset feather weights on all selected points animation values
636
704
 
637
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
705
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
638
706
  :type execution_context: typing.Optional[typing.Union[str, int]]
639
707
  :type undo: typing.Optional[bool]
640
708
  """
@@ -642,13 +710,15 @@ def shape_key_feather_reset(
642
710
  ...
643
711
 
644
712
  def shape_key_insert(
645
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
713
+ override_context: typing.Optional[
714
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
715
+ ] = None,
646
716
  execution_context: typing.Optional[typing.Union[str, int]] = None,
647
717
  undo: typing.Optional[bool] = None,
648
718
  ):
649
719
  """Insert mask shape keyframe for active mask layer at the current frame
650
720
 
651
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
721
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
652
722
  :type execution_context: typing.Optional[typing.Union[str, int]]
653
723
  :type undo: typing.Optional[bool]
654
724
  """
@@ -656,7 +726,9 @@ def shape_key_insert(
656
726
  ...
657
727
 
658
728
  def shape_key_rekey(
659
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
729
+ override_context: typing.Optional[
730
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
731
+ ] = None,
660
732
  execution_context: typing.Optional[typing.Union[str, int]] = None,
661
733
  undo: typing.Optional[bool] = None,
662
734
  location: typing.Optional[typing.Union[bool, typing.Any]] = True,
@@ -664,7 +736,7 @@ def shape_key_rekey(
664
736
  ):
665
737
  """Recalculate animation data on selected points for frames selected in the dopesheet
666
738
 
667
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
739
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
668
740
  :type execution_context: typing.Optional[typing.Union[str, int]]
669
741
  :type undo: typing.Optional[bool]
670
742
  :param location: Location
@@ -676,7 +748,9 @@ def shape_key_rekey(
676
748
  ...
677
749
 
678
750
  def slide_point(
679
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
751
+ override_context: typing.Optional[
752
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
753
+ ] = None,
680
754
  execution_context: typing.Optional[typing.Union[str, int]] = None,
681
755
  undo: typing.Optional[bool] = None,
682
756
  slide_feather: typing.Optional[typing.Union[bool, typing.Any]] = False,
@@ -684,7 +758,7 @@ def slide_point(
684
758
  ):
685
759
  """Slide control points
686
760
 
687
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
761
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
688
762
  :type execution_context: typing.Optional[typing.Union[str, int]]
689
763
  :type undo: typing.Optional[bool]
690
764
  :param slide_feather: Slide Feather, First try to slide feather instead of vertex
@@ -696,13 +770,15 @@ def slide_point(
696
770
  ...
697
771
 
698
772
  def slide_spline_curvature(
699
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
773
+ override_context: typing.Optional[
774
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
775
+ ] = None,
700
776
  execution_context: typing.Optional[typing.Union[str, int]] = None,
701
777
  undo: typing.Optional[bool] = None,
702
778
  ):
703
779
  """Slide a point on the spline to define its curvature
704
780
 
705
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
781
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
706
782
  :type execution_context: typing.Optional[typing.Union[str, int]]
707
783
  :type undo: typing.Optional[bool]
708
784
  """
@@ -710,13 +786,15 @@ def slide_spline_curvature(
710
786
  ...
711
787
 
712
788
  def switch_direction(
713
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
789
+ override_context: typing.Optional[
790
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
791
+ ] = None,
714
792
  execution_context: typing.Optional[typing.Union[str, int]] = None,
715
793
  undo: typing.Optional[bool] = None,
716
794
  ):
717
795
  """Switch direction of selected splines
718
796
 
719
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
797
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
720
798
  :type execution_context: typing.Optional[typing.Union[str, int]]
721
799
  :type undo: typing.Optional[bool]
722
800
  """