fake-bpy-module 20241208__py3-none-any.whl → 20241209__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 (80) hide show
  1. bpy/ops/action/__init__.pyi +38 -138
  2. bpy/ops/anim/__init__.pyi +61 -179
  3. bpy/ops/armature/__init__.pyi +48 -147
  4. bpy/ops/asset/__init__.pyi +16 -71
  5. bpy/ops/boid/__init__.pyi +8 -41
  6. bpy/ops/brush/__init__.pyi +13 -39
  7. bpy/ops/buttons/__init__.pyi +6 -29
  8. bpy/ops/cachefile/__init__.pyi +5 -19
  9. bpy/ops/camera/__init__.pyi +2 -5
  10. bpy/ops/clip/__init__.pyi +92 -290
  11. bpy/ops/cloth/__init__.pyi +1 -3
  12. bpy/ops/collection/__init__.pyi +9 -25
  13. bpy/ops/console/__init__.pyi +21 -79
  14. bpy/ops/constraint/__init__.pyi +18 -45
  15. bpy/ops/curve/__init__.pyi +51 -180
  16. bpy/ops/curves/__init__.pyi +28 -100
  17. bpy/ops/cycles/__init__.pyi +3 -9
  18. bpy/ops/dpaint/__init__.pyi +5 -19
  19. bpy/ops/ed/__init__.pyi +12 -53
  20. bpy/ops/export_anim/__init__.pyi +1 -3
  21. bpy/ops/export_scene/__init__.pyi +2 -5
  22. bpy/ops/extensions/__init__.pyi +34 -110
  23. bpy/ops/file/__init__.pyi +40 -167
  24. bpy/ops/fluid/__init__.pyi +14 -77
  25. bpy/ops/font/__init__.pyi +23 -85
  26. bpy/ops/geometry/__init__.pyi +10 -27
  27. bpy/ops/gizmogroup/__init__.pyi +2 -9
  28. bpy/ops/gpencil/__init__.pyi +8 -32
  29. bpy/ops/graph/__init__.pyi +65 -184
  30. bpy/ops/grease_pencil/__init__.pyi +108 -290
  31. bpy/ops/image/__init__.pyi +49 -154
  32. bpy/ops/import_anim/__init__.pyi +1 -3
  33. bpy/ops/import_curve/__init__.pyi +1 -3
  34. bpy/ops/import_scene/__init__.pyi +2 -4
  35. bpy/ops/info/__init__.pyi +7 -29
  36. bpy/ops/lattice/__init__.pyi +8 -29
  37. bpy/ops/marker/__init__.pyi +11 -31
  38. bpy/ops/mask/__init__.pyi +39 -132
  39. bpy/ops/material/__init__.pyi +3 -19
  40. bpy/ops/mball/__init__.pyi +8 -19
  41. bpy/ops/mesh/__init__.pyi +164 -401
  42. bpy/ops/nla/__init__.pyi +39 -147
  43. bpy/ops/node/__init__.pyi +115 -390
  44. bpy/ops/object/__init__.pyi +237 -630
  45. bpy/ops/outliner/__init__.pyi +71 -263
  46. bpy/ops/paint/__init__.pyi +54 -140
  47. bpy/ops/paintcurve/__init__.pyi +8 -33
  48. bpy/ops/palette/__init__.pyi +7 -27
  49. bpy/ops/particle/__init__.pyi +36 -134
  50. bpy/ops/pose/__init__.pyi +51 -169
  51. bpy/ops/poselib/__init__.pyi +9 -33
  52. bpy/ops/preferences/__init__.pyi +35 -94
  53. bpy/ops/ptcache/__init__.pyi +7 -33
  54. bpy/ops/render/__init__.pyi +13 -37
  55. bpy/ops/rigidbody/__init__.pyi +13 -45
  56. bpy/ops/scene/__init__.pyi +37 -121
  57. bpy/ops/screen/__init__.pyi +39 -137
  58. bpy/ops/script/__init__.pyi +3 -11
  59. bpy/ops/sculpt/__init__.pyi +37 -94
  60. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  61. bpy/ops/sequencer/__init__.pyi +89 -284
  62. bpy/ops/sound/__init__.pyi +7 -23
  63. bpy/ops/spreadsheet/__init__.pyi +4 -15
  64. bpy/ops/surface/__init__.pyi +6 -13
  65. bpy/ops/text/__init__.pyi +43 -175
  66. bpy/ops/text_editor/__init__.pyi +1 -3
  67. bpy/ops/texture/__init__.pyi +4 -21
  68. bpy/ops/transform/__init__.pyi +27 -61
  69. bpy/ops/ui/__init__.pyi +34 -117
  70. bpy/ops/uilist/__init__.pyi +3 -7
  71. bpy/ops/uv/__init__.pyi +49 -134
  72. bpy/ops/view2d/__init__.pyi +14 -39
  73. bpy/ops/view3d/__init__.pyi +67 -232
  74. bpy/ops/wm/__init__.pyi +114 -298
  75. bpy/ops/workspace/__init__.pyi +7 -33
  76. bpy/ops/world/__init__.pyi +2 -11
  77. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  78. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
  79. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  80. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/nla/__init__.pyi CHANGED
@@ -2,19 +2,17 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import bpy.ops.transform
5
- import bpy.types
6
5
  import bpy.typing
7
6
 
8
7
  def action_pushdown(
9
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
10
8
  execution_context: int | str | None = None,
11
9
  undo: bool | None = None,
10
+ /,
12
11
  *,
13
12
  track_index: int | None = -1,
14
13
  ):
15
14
  """Push action down onto the top of the NLA stack as a new strip
16
15
 
17
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
18
16
  :type execution_context: int | str | None
19
17
  :type undo: bool | None
20
18
  :param track_index: Track Index, Index of NLA action track to perform pushdown operation on
@@ -22,15 +20,14 @@ def action_pushdown(
22
20
  """
23
21
 
24
22
  def action_sync_length(
25
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
26
23
  execution_context: int | str | None = None,
27
24
  undo: bool | None = None,
25
+ /,
28
26
  *,
29
27
  active: bool | None = True,
30
28
  ):
31
29
  """Synchronize the length of the referenced Action with the length used in the strip
32
30
 
33
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
34
31
  :type execution_context: int | str | None
35
32
  :type undo: bool | None
36
33
  :param active: Active Strip Only, Only sync the active length for the active strip
@@ -38,15 +35,14 @@ def action_sync_length(
38
35
  """
39
36
 
40
37
  def action_unlink(
41
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
42
38
  execution_context: int | str | None = None,
43
39
  undo: bool | None = None,
40
+ /,
44
41
  *,
45
42
  force_delete: bool | None = False,
46
43
  ):
47
44
  """Unlink this action from the active action slot (and/or exit Tweak Mode)
48
45
 
49
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
50
46
  :type execution_context: int | str | None
51
47
  :type undo: bool | None
52
48
  :param force_delete: Force Delete, Clear Fake User and remove copy stashed in this data-block's NLA stack
@@ -54,37 +50,31 @@ def action_unlink(
54
50
  """
55
51
 
56
52
  def actionclip_add(
57
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
58
53
  execution_context: int | str | None = None,
59
54
  undo: bool | None = None,
55
+ /,
60
56
  *,
61
57
  action: str | None = "",
62
58
  ):
63
59
  """Add an Action-Clip strip (i.e. an NLA Strip referencing an Action) to the active track
64
60
 
65
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
66
61
  :type execution_context: int | str | None
67
62
  :type undo: bool | None
68
63
  :param action: Action
69
64
  :type action: str | None
70
65
  """
71
66
 
72
- def apply_scale(
73
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
74
- execution_context: int | str | None = None,
75
- undo: bool | None = None,
76
- ):
67
+ def apply_scale(execution_context: int | str | None = None, undo: bool | None = None):
77
68
  """Apply scaling of selected strips to their referenced Actions
78
69
 
79
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
80
70
  :type execution_context: int | str | None
81
71
  :type undo: bool | None
82
72
  """
83
73
 
84
74
  def bake(
85
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
86
75
  execution_context: int | str | None = None,
87
76
  undo: bool | None = None,
77
+ /,
88
78
  *,
89
79
  frame_start: int | None = 1,
90
80
  frame_end: int | None = 250,
@@ -103,7 +93,6 @@ def bake(
103
93
  ):
104
94
  """Bake all selected objects location/scale/rotation animation to an action
105
95
 
106
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
107
96
  :type execution_context: int | str | None
108
97
  :type undo: bool | None
109
98
  :param frame_start: Start Frame, Start frame for baking
@@ -152,37 +141,31 @@ def bake(
152
141
  """
153
142
 
154
143
  def channels_click(
155
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
156
144
  execution_context: int | str | None = None,
157
145
  undo: bool | None = None,
146
+ /,
158
147
  *,
159
148
  extend: bool | None = False,
160
149
  ):
161
150
  """Handle clicks to select NLA tracks
162
151
 
163
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
164
152
  :type execution_context: int | str | None
165
153
  :type undo: bool | None
166
154
  :param extend: Extend Select
167
155
  :type extend: bool | None
168
156
  """
169
157
 
170
- def clear_scale(
171
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
172
- execution_context: int | str | None = None,
173
- undo: bool | None = None,
174
- ):
158
+ def clear_scale(execution_context: int | str | None = None, undo: bool | None = None):
175
159
  """Reset scaling of selected strips
176
160
 
177
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
178
161
  :type execution_context: int | str | None
179
162
  :type undo: bool | None
180
163
  """
181
164
 
182
165
  def click_select(
183
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
184
166
  execution_context: int | str | None = None,
185
167
  undo: bool | None = None,
168
+ /,
186
169
  *,
187
170
  wait_to_deselect_others: bool | None = False,
188
171
  mouse_x: int | None = 0,
@@ -192,7 +175,6 @@ def click_select(
192
175
  ):
193
176
  """Handle clicks to select NLA Strips
194
177
 
195
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
196
178
  :type execution_context: int | str | None
197
179
  :type undo: bool | None
198
180
  :param wait_to_deselect_others: Wait to Deselect Others
@@ -207,28 +189,22 @@ def click_select(
207
189
  :type deselect_all: bool | None
208
190
  """
209
191
 
210
- def delete(
211
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
212
- execution_context: int | str | None = None,
213
- undo: bool | None = None,
214
- ):
192
+ def delete(execution_context: int | str | None = None, undo: bool | None = None):
215
193
  """Delete selected strips
216
194
 
217
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
218
195
  :type execution_context: int | str | None
219
196
  :type undo: bool | None
220
197
  """
221
198
 
222
199
  def duplicate(
223
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
224
200
  execution_context: int | str | None = None,
225
201
  undo: bool | None = None,
202
+ /,
226
203
  *,
227
204
  linked: bool | None = False,
228
205
  ):
229
206
  """Duplicate selected NLA-Strips, adding the new strips to new track(s)
230
207
 
231
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
232
208
  :type execution_context: int | str | None
233
209
  :type undo: bool | None
234
210
  :param linked: Linked, When duplicating strips, assign new copies of the actions they use
@@ -236,16 +212,15 @@ def duplicate(
236
212
  """
237
213
 
238
214
  def duplicate_linked_move(
239
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
240
215
  execution_context: int | str | None = None,
241
216
  undo: bool | None = None,
217
+ /,
242
218
  *,
243
219
  NLA_OT_duplicate: duplicate | None = None,
244
220
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
245
221
  ):
246
222
  """Duplicate Linked selected NLA-Strips, adding the new strips to new track(s)
247
223
 
248
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
249
224
  :type execution_context: int | str | None
250
225
  :type undo: bool | None
251
226
  :param NLA_OT_duplicate: Duplicate Strips, Duplicate selected NLA-Strips, adding the new strips to new track(s)
@@ -255,16 +230,15 @@ def duplicate_linked_move(
255
230
  """
256
231
 
257
232
  def duplicate_move(
258
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
259
233
  execution_context: int | str | None = None,
260
234
  undo: bool | None = None,
235
+ /,
261
236
  *,
262
237
  NLA_OT_duplicate: duplicate | None = None,
263
238
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
264
239
  ):
265
240
  """Duplicate selected NLA-Strips, adding the new strips to new track(s)
266
241
 
267
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
268
242
  :type execution_context: int | str | None
269
243
  :type undo: bool | None
270
244
  :param NLA_OT_duplicate: Duplicate Strips, Duplicate selected NLA-Strips, adding the new strips to new track(s)
@@ -274,16 +248,15 @@ def duplicate_move(
274
248
  """
275
249
 
276
250
  def fmodifier_add(
277
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
278
251
  execution_context: int | str | None = None,
279
252
  undo: bool | None = None,
253
+ /,
280
254
  *,
281
255
  type: bpy.typing.FmodifierTypeItems | None = "NULL",
282
256
  only_active: bool | None = True,
283
257
  ):
284
258
  """Add F-Modifier to the active/selected NLA-Strips
285
259
 
286
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
287
260
  :type execution_context: int | str | None
288
261
  :type undo: bool | None
289
262
  :param type: Type
@@ -293,28 +266,24 @@ def fmodifier_add(
293
266
  """
294
267
 
295
268
  def fmodifier_copy(
296
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
297
- execution_context: int | str | None = None,
298
- undo: bool | None = None,
269
+ execution_context: int | str | None = None, undo: bool | None = None
299
270
  ):
300
271
  """Copy the F-Modifier(s) of the active NLA-Strip
301
272
 
302
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
303
273
  :type execution_context: int | str | None
304
274
  :type undo: bool | None
305
275
  """
306
276
 
307
277
  def fmodifier_paste(
308
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
309
278
  execution_context: int | str | None = None,
310
279
  undo: bool | None = None,
280
+ /,
311
281
  *,
312
282
  only_active: bool | None = True,
313
283
  replace: bool | None = False,
314
284
  ):
315
285
  """Add copied F-Modifiers to the selected NLA-Strips
316
286
 
317
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
318
287
  :type execution_context: int | str | None
319
288
  :type undo: bool | None
320
289
  :param only_active: Only Active, Only paste F-Modifiers on active strip
@@ -324,103 +293,73 @@ def fmodifier_paste(
324
293
  """
325
294
 
326
295
  def make_single_user(
327
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
328
296
  execution_context: int | str | None = None,
329
297
  undo: bool | None = None,
298
+ /,
330
299
  *,
331
300
  confirm: bool | None = True,
332
301
  ):
333
302
  """Make linked action local to each strip
334
303
 
335
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
336
304
  :type execution_context: int | str | None
337
305
  :type undo: bool | None
338
306
  :param confirm: Confirm, Prompt for confirmation
339
307
  :type confirm: bool | None
340
308
  """
341
309
 
342
- def meta_add(
343
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
344
- execution_context: int | str | None = None,
345
- undo: bool | None = None,
346
- ):
310
+ def meta_add(execution_context: int | str | None = None, undo: bool | None = None):
347
311
  """Add new meta-strips incorporating the selected strips
348
312
 
349
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
350
313
  :type execution_context: int | str | None
351
314
  :type undo: bool | None
352
315
  """
353
316
 
354
- def meta_remove(
355
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
356
- execution_context: int | str | None = None,
357
- undo: bool | None = None,
358
- ):
317
+ def meta_remove(execution_context: int | str | None = None, undo: bool | None = None):
359
318
  """Separate out the strips held by the selected meta-strips
360
319
 
361
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
362
320
  :type execution_context: int | str | None
363
321
  :type undo: bool | None
364
322
  """
365
323
 
366
- def move_down(
367
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
368
- execution_context: int | str | None = None,
369
- undo: bool | None = None,
370
- ):
324
+ def move_down(execution_context: int | str | None = None, undo: bool | None = None):
371
325
  """Move selected strips down a track if there's room
372
326
 
373
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
374
327
  :type execution_context: int | str | None
375
328
  :type undo: bool | None
376
329
  """
377
330
 
378
- def move_up(
379
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
380
- execution_context: int | str | None = None,
381
- undo: bool | None = None,
382
- ):
331
+ def move_up(execution_context: int | str | None = None, undo: bool | None = None):
383
332
  """Move selected strips up a track if there's room
384
333
 
385
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
386
334
  :type execution_context: int | str | None
387
335
  :type undo: bool | None
388
336
  """
389
337
 
390
- def mute_toggle(
391
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
392
- execution_context: int | str | None = None,
393
- undo: bool | None = None,
394
- ):
338
+ def mute_toggle(execution_context: int | str | None = None, undo: bool | None = None):
395
339
  """Mute or un-mute selected strips
396
340
 
397
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
398
341
  :type execution_context: int | str | None
399
342
  :type undo: bool | None
400
343
  """
401
344
 
402
345
  def previewrange_set(
403
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
404
- execution_context: int | str | None = None,
405
- undo: bool | None = None,
346
+ execution_context: int | str | None = None, undo: bool | None = None
406
347
  ):
407
348
  """Set Preview Range based on extends of selected strips
408
349
 
409
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
410
350
  :type execution_context: int | str | None
411
351
  :type undo: bool | None
412
352
  """
413
353
 
414
354
  def select_all(
415
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
416
355
  execution_context: int | str | None = None,
417
356
  undo: bool | None = None,
357
+ /,
418
358
  *,
419
359
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
420
360
  ):
421
361
  """Select or deselect all NLA-Strips
422
362
 
423
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
424
363
  :type execution_context: int | str | None
425
364
  :type undo: bool | None
426
365
  :param action: Action, Selection action to execute
@@ -440,9 +379,9 @@ def select_all(
440
379
  """
441
380
 
442
381
  def select_box(
443
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
444
382
  execution_context: int | str | None = None,
445
383
  undo: bool | None = None,
384
+ /,
446
385
  *,
447
386
  axis_range: bool | None = False,
448
387
  tweak: bool | None = False,
@@ -455,7 +394,6 @@ def select_box(
455
394
  ):
456
395
  """Use box selection to grab NLA-Strips
457
396
 
458
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
459
397
  :type execution_context: int | str | None
460
398
  :type undo: bool | None
461
399
  :param axis_range: Axis Range
@@ -486,16 +424,15 @@ def select_box(
486
424
  """
487
425
 
488
426
  def select_leftright(
489
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
490
427
  execution_context: int | str | None = None,
491
428
  undo: bool | None = None,
429
+ /,
492
430
  *,
493
431
  mode: typing.Literal["CHECK", "LEFT", "RIGHT"] | None = "CHECK",
494
432
  extend: bool | None = False,
495
433
  ):
496
434
  """Select strips to the left or the right of the current frame
497
435
 
498
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
499
436
  :type execution_context: int | str | None
500
437
  :type undo: bool | None
501
438
  :param mode: Mode
@@ -505,121 +442,92 @@ def select_leftright(
505
442
  """
506
443
 
507
444
  def selected_objects_add(
508
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
509
- execution_context: int | str | None = None,
510
- undo: bool | None = None,
445
+ execution_context: int | str | None = None, undo: bool | None = None
511
446
  ):
512
447
  """Make selected objects appear in NLA Editor by adding Animation Data
513
448
 
514
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
515
449
  :type execution_context: int | str | None
516
450
  :type undo: bool | None
517
451
  """
518
452
 
519
453
  def snap(
520
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
521
454
  execution_context: int | str | None = None,
522
455
  undo: bool | None = None,
456
+ /,
523
457
  *,
524
458
  type: typing.Literal["CFRA", "NEAREST_FRAME", "NEAREST_SECOND", "NEAREST_MARKER"]
525
459
  | None = "CFRA",
526
460
  ):
527
461
  """Move start of strips to specified time
528
462
 
529
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
530
463
  :type execution_context: int | str | None
531
464
  :type undo: bool | None
532
465
  :param type: Type
533
466
  :type type: typing.Literal['CFRA','NEAREST_FRAME','NEAREST_SECOND','NEAREST_MARKER'] | None
534
467
  """
535
468
 
536
- def soundclip_add(
537
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
538
- execution_context: int | str | None = None,
539
- undo: bool | None = None,
540
- ):
469
+ def soundclip_add(execution_context: int | str | None = None, undo: bool | None = None):
541
470
  """Add a strip for controlling when speaker plays its sound clip
542
471
 
543
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
544
472
  :type execution_context: int | str | None
545
473
  :type undo: bool | None
546
474
  """
547
475
 
548
- def split(
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
- ):
476
+ def split(execution_context: int | str | None = None, undo: bool | None = None):
553
477
  """Split selected strips at their midpoints
554
478
 
555
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
556
479
  :type execution_context: int | str | None
557
480
  :type undo: bool | None
558
481
  """
559
482
 
560
- def swap(
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
- ):
483
+ def swap(execution_context: int | str | None = None, undo: bool | None = None):
565
484
  """Swap order of selected strips within tracks
566
485
 
567
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
568
486
  :type execution_context: int | str | None
569
487
  :type undo: bool | None
570
488
  """
571
489
 
572
490
  def tracks_add(
573
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
574
491
  execution_context: int | str | None = None,
575
492
  undo: bool | None = None,
493
+ /,
576
494
  *,
577
495
  above_selected: bool | None = False,
578
496
  ):
579
497
  """Add NLA-Tracks above/after the selected tracks
580
498
 
581
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
582
499
  :type execution_context: int | str | None
583
500
  :type undo: bool | None
584
501
  :param above_selected: Above Selected, Add a new NLA Track above every existing selected one
585
502
  :type above_selected: bool | None
586
503
  """
587
504
 
588
- def tracks_delete(
589
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
590
- execution_context: int | str | None = None,
591
- undo: bool | None = None,
592
- ):
505
+ def tracks_delete(execution_context: int | str | None = None, undo: bool | None = None):
593
506
  """Delete selected NLA-Tracks and the strips they contain
594
507
 
595
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
596
508
  :type execution_context: int | str | None
597
509
  :type undo: bool | None
598
510
  """
599
511
 
600
512
  def transition_add(
601
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
602
- execution_context: int | str | None = None,
603
- undo: bool | None = None,
513
+ execution_context: int | str | None = None, undo: bool | None = None
604
514
  ):
605
515
  """Add a transition strip between two adjacent selected strips
606
516
 
607
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
608
517
  :type execution_context: int | str | None
609
518
  :type undo: bool | None
610
519
  """
611
520
 
612
521
  def tweakmode_enter(
613
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
614
522
  execution_context: int | str | None = None,
615
523
  undo: bool | None = None,
524
+ /,
616
525
  *,
617
526
  isolate_action: bool | None = False,
618
527
  use_upper_stack_evaluation: bool | None = False,
619
528
  ):
620
529
  """Enter tweaking mode for the action referenced by the active strip to edit its keyframes
621
530
 
622
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
623
531
  :type execution_context: int | str | None
624
532
  :type undo: bool | None
625
533
  :param isolate_action: Isolate Action, Enable 'solo' on the NLA Track containing the active strip, to edit it without seeing the effects of the NLA stack
@@ -629,53 +537,37 @@ def tweakmode_enter(
629
537
  """
630
538
 
631
539
  def tweakmode_exit(
632
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
633
540
  execution_context: int | str | None = None,
634
541
  undo: bool | None = None,
542
+ /,
635
543
  *,
636
544
  isolate_action: bool | None = False,
637
545
  ):
638
546
  """Exit tweaking mode for the action referenced by the active strip
639
547
 
640
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
641
548
  :type execution_context: int | str | None
642
549
  :type undo: bool | None
643
550
  :param isolate_action: Isolate Action, Disable 'solo' on any of the NLA Tracks after exiting tweak mode to get things back to normal
644
551
  :type isolate_action: bool | None
645
552
  """
646
553
 
647
- def view_all(
648
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
649
- execution_context: int | str | None = None,
650
- undo: bool | None = None,
651
- ):
554
+ def view_all(execution_context: int | str | None = None, undo: bool | None = None):
652
555
  """Reset viewable area to show full strips range
653
556
 
654
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
655
557
  :type execution_context: int | str | None
656
558
  :type undo: bool | None
657
559
  """
658
560
 
659
- def view_frame(
660
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
661
- execution_context: int | str | None = None,
662
- undo: bool | None = None,
663
- ):
561
+ def view_frame(execution_context: int | str | None = None, undo: bool | None = None):
664
562
  """Move the view to the current frame
665
563
 
666
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
667
564
  :type execution_context: int | str | None
668
565
  :type undo: bool | None
669
566
  """
670
567
 
671
- def view_selected(
672
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
673
- execution_context: int | str | None = None,
674
- undo: bool | None = None,
675
- ):
568
+ def view_selected(execution_context: int | str | None = None, undo: bool | None = None):
676
569
  """Reset viewable area to show selected strips range
677
570
 
678
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
679
571
  :type execution_context: int | str | None
680
572
  :type undo: bool | None
681
573
  """