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
@@ -7,21 +7,18 @@ import bpy.typing
7
7
  import mathutils
8
8
 
9
9
  def change_effect_input(
10
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
11
- execution_context: int | str | None = None,
12
- undo: bool | None = None,
10
+ execution_context: int | str | None = None, undo: bool | None = None
13
11
  ):
14
12
  """Undocumented, consider contributing.
15
13
 
16
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
17
14
  :type execution_context: int | str | None
18
15
  :type undo: bool | None
19
16
  """
20
17
 
21
18
  def change_effect_type(
22
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
23
19
  execution_context: int | str | None = None,
24
20
  undo: bool | None = None,
21
+ /,
25
22
  *,
26
23
  type: typing.Literal[
27
24
  "CROSS",
@@ -47,7 +44,6 @@ def change_effect_type(
47
44
  ):
48
45
  """Undocumented, consider contributing.
49
46
 
50
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
51
47
  :type execution_context: int | str | None
52
48
  :type undo: bool | None
53
49
  :param type: Type, Sequencer effect type
@@ -109,9 +105,9 @@ def change_effect_type(
109
105
  """
110
106
 
111
107
  def change_path(
112
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
113
108
  execution_context: int | str | None = None,
114
109
  undo: bool | None = None,
110
+ /,
115
111
  *,
116
112
  filepath: str = "",
117
113
  directory: str = "",
@@ -147,7 +143,6 @@ def change_path(
147
143
  ):
148
144
  """Undocumented, consider contributing.
149
145
 
150
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
151
146
  :type execution_context: int | str | None
152
147
  :type undo: bool | None
153
148
  :param filepath: File Path, Path to file
@@ -219,15 +214,14 @@ def change_path(
219
214
  """
220
215
 
221
216
  def change_scene(
222
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
223
217
  execution_context: int | str | None = None,
224
218
  undo: bool | None = None,
219
+ /,
225
220
  *,
226
221
  scene: str | None = "",
227
222
  ):
228
223
  """Change Scene assigned to Strip
229
224
 
230
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
231
225
  :type execution_context: int | str | None
232
226
  :type undo: bool | None
233
227
  :param scene: Scene
@@ -235,55 +229,45 @@ def change_scene(
235
229
  """
236
230
 
237
231
  def connect(
238
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
239
232
  execution_context: int | str | None = None,
240
233
  undo: bool | None = None,
234
+ /,
241
235
  *,
242
236
  toggle: bool | None = True,
243
237
  ):
244
238
  """Link selected strips together for simplified group selection
245
239
 
246
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
247
240
  :type execution_context: int | str | None
248
241
  :type undo: bool | None
249
242
  :param toggle: Toggle, Toggle strip connections
250
243
  :type toggle: bool | None
251
244
  """
252
245
 
253
- def copy(
254
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
255
- execution_context: int | str | None = None,
256
- undo: bool | None = None,
257
- ):
246
+ def copy(execution_context: int | str | None = None, undo: bool | None = None):
258
247
  """Copy the selected strips to the internal clipboard
259
248
 
260
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
261
249
  :type execution_context: int | str | None
262
250
  :type undo: bool | None
263
251
  """
264
252
 
265
253
  def crossfade_sounds(
266
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
267
- execution_context: int | str | None = None,
268
- undo: bool | None = None,
254
+ execution_context: int | str | None = None, undo: bool | None = None
269
255
  ):
270
256
  """Do cross-fading volume animation of two selected sound strips
271
257
 
272
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
273
258
  :type execution_context: int | str | None
274
259
  :type undo: bool | None
275
260
  """
276
261
 
277
262
  def cursor_set(
278
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
279
263
  execution_context: int | str | None = None,
280
264
  undo: bool | None = None,
265
+ /,
281
266
  *,
282
267
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
283
268
  ):
284
269
  """Set 2D cursor location
285
270
 
286
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
287
271
  :type execution_context: int | str | None
288
272
  :type undo: bool | None
289
273
  :param location: Location, Cursor location in normalized preview coordinates
@@ -291,68 +275,53 @@ def cursor_set(
291
275
  """
292
276
 
293
277
  def deinterlace_selected_movies(
294
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
295
- execution_context: int | str | None = None,
296
- undo: bool | None = None,
278
+ execution_context: int | str | None = None, undo: bool | None = None
297
279
  ):
298
280
  """Deinterlace all selected movie sources
299
281
 
300
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
301
282
  :type execution_context: int | str | None
302
283
  :type undo: bool | None
303
284
  """
304
285
 
305
286
  def delete(
306
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
307
287
  execution_context: int | str | None = None,
308
288
  undo: bool | None = None,
289
+ /,
309
290
  *,
310
291
  delete_data: bool | None = False,
311
292
  ):
312
293
  """Delete selected strips from the sequencer
313
294
 
314
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
315
295
  :type execution_context: int | str | None
316
296
  :type undo: bool | None
317
297
  :param delete_data: Delete Data, After removing the Strip, delete the associated data also
318
298
  :type delete_data: bool | None
319
299
  """
320
300
 
321
- def disconnect(
322
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
323
- execution_context: int | str | None = None,
324
- undo: bool | None = None,
325
- ):
301
+ def disconnect(execution_context: int | str | None = None, undo: bool | None = None):
326
302
  """Unlink selected strips so that they can be selected individually
327
303
 
328
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
329
304
  :type execution_context: int | str | None
330
305
  :type undo: bool | None
331
306
  """
332
307
 
333
- def duplicate(
334
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
335
- execution_context: int | str | None = None,
336
- undo: bool | None = None,
337
- ):
308
+ def duplicate(execution_context: int | str | None = None, undo: bool | None = None):
338
309
  """Duplicate the selected strips
339
310
 
340
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
341
311
  :type execution_context: int | str | None
342
312
  :type undo: bool | None
343
313
  """
344
314
 
345
315
  def duplicate_move(
346
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
347
316
  execution_context: int | str | None = None,
348
317
  undo: bool | None = None,
318
+ /,
349
319
  *,
350
320
  SEQUENCER_OT_duplicate: duplicate | None = None,
351
321
  TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide | None = None,
352
322
  ):
353
323
  """Duplicate selected strips and move them
354
324
 
355
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
356
325
  :type execution_context: int | str | None
357
326
  :type undo: bool | None
358
327
  :param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
@@ -362,9 +331,9 @@ def duplicate_move(
362
331
  """
363
332
 
364
333
  def effect_strip_add(
365
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
366
334
  execution_context: int | str | None = None,
367
335
  undo: bool | None = None,
336
+ /,
368
337
  *,
369
338
  type: typing.Literal[
370
339
  "CROSS",
@@ -397,7 +366,6 @@ def effect_strip_add(
397
366
  ):
398
367
  """Add an effect to the sequencer, most are applied on top of existing strips
399
368
 
400
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
401
369
  :type execution_context: int | str | None
402
370
  :type undo: bool | None
403
371
  :param type: Type, Sequencer effect type
@@ -473,9 +441,9 @@ def effect_strip_add(
473
441
  """
474
442
 
475
443
  def enable_proxies(
476
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
477
444
  execution_context: int | str | None = None,
478
445
  undo: bool | None = None,
446
+ /,
479
447
  *,
480
448
  proxy_25: bool | None = False,
481
449
  proxy_50: bool | None = False,
@@ -485,7 +453,6 @@ def enable_proxies(
485
453
  ):
486
454
  """Enable selected proxies on all selected Movie and Image strips
487
455
 
488
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
489
456
  :type execution_context: int | str | None
490
457
  :type undo: bool | None
491
458
  :param proxy_25: 25%
@@ -501,9 +468,9 @@ def enable_proxies(
501
468
  """
502
469
 
503
470
  def export_subtitles(
504
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
505
471
  execution_context: int | str | None = None,
506
472
  undo: bool | None = None,
473
+ /,
507
474
  *,
508
475
  filepath: str = "",
509
476
  hide_props_region: bool | None = True,
@@ -534,7 +501,6 @@ def export_subtitles(
534
501
  ):
535
502
  """Export .srt file containing text strips
536
503
 
537
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
538
504
  :type execution_context: int | str | None
539
505
  :type undo: bool | None
540
506
  :param filepath: File Path, Path to file
@@ -598,9 +564,9 @@ def export_subtitles(
598
564
  """
599
565
 
600
566
  def fades_add(
601
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
602
567
  execution_context: int | str | None = None,
603
568
  undo: bool | None = None,
569
+ /,
604
570
  *,
605
571
  duration_seconds: float | None = 1.0,
606
572
  type: typing.Literal["IN_OUT", "IN", "OUT", "CURSOR_FROM", "CURSOR_TO"]
@@ -608,7 +574,6 @@ def fades_add(
608
574
  ):
609
575
  """Adds or updates a fade animation for either visual or audio strips
610
576
 
611
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
612
577
  :type execution_context: int | str | None
613
578
  :type undo: bool | None
614
579
  :param duration_seconds: Fade Duration, Duration of the fade in seconds
@@ -632,28 +597,22 @@ def fades_add(
632
597
  :type type: typing.Literal['IN_OUT','IN','OUT','CURSOR_FROM','CURSOR_TO'] | None
633
598
  """
634
599
 
635
- def fades_clear(
636
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
637
- execution_context: int | str | None = None,
638
- undo: bool | None = None,
639
- ):
600
+ def fades_clear(execution_context: int | str | None = None, undo: bool | None = None):
640
601
  """Removes fade animation from selected sequences
641
602
 
642
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
643
603
  :type execution_context: int | str | None
644
604
  :type undo: bool | None
645
605
  """
646
606
 
647
607
  def gap_insert(
648
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
649
608
  execution_context: int | str | None = None,
650
609
  undo: bool | None = None,
610
+ /,
651
611
  *,
652
612
  frames: int | None = 10,
653
613
  ):
654
614
  """Insert gap at current frame to first strips at the right, independent of selection or locked state of strips
655
615
 
656
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
657
616
  :type execution_context: int | str | None
658
617
  :type undo: bool | None
659
618
  :param frames: Frames, Frames to insert after current strip
@@ -661,15 +620,14 @@ def gap_insert(
661
620
  """
662
621
 
663
622
  def gap_remove(
664
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
665
623
  execution_context: int | str | None = None,
666
624
  undo: bool | None = None,
625
+ /,
667
626
  *,
668
627
  all: bool | None = False,
669
628
  ):
670
629
  """Remove gap at current frame to first strip at the right, independent of selection or locked state of strips
671
630
 
672
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
673
631
  :type execution_context: int | str | None
674
632
  :type undo: bool | None
675
633
  :param all: All Gaps, Do all gaps to right of current frame
@@ -677,9 +635,9 @@ def gap_remove(
677
635
  """
678
636
 
679
637
  def image_strip_add(
680
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
681
638
  execution_context: int | str | None = None,
682
639
  undo: bool | None = None,
640
+ /,
683
641
  *,
684
642
  directory: str = "",
685
643
  files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
@@ -731,7 +689,6 @@ def image_strip_add(
731
689
  ):
732
690
  """Add an image or image sequence to the sequencer
733
691
 
734
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
735
692
  :type execution_context: int | str | None
736
693
  :type undo: bool | None
737
694
  :param directory: Directory, Directory of the file
@@ -849,37 +806,31 @@ def image_strip_add(
849
806
  """
850
807
 
851
808
  def images_separate(
852
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
853
809
  execution_context: int | str | None = None,
854
810
  undo: bool | None = None,
811
+ /,
855
812
  *,
856
813
  length: int | None = 1,
857
814
  ):
858
815
  """On image sequence strips, it returns a strip for each image
859
816
 
860
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
861
817
  :type execution_context: int | str | None
862
818
  :type undo: bool | None
863
819
  :param length: Length, Length of each frame
864
820
  :type length: int | None
865
821
  """
866
822
 
867
- def lock(
868
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
869
- execution_context: int | str | None = None,
870
- undo: bool | None = None,
871
- ):
823
+ def lock(execution_context: int | str | None = None, undo: bool | None = None):
872
824
  """Lock strips so they can't be transformed
873
825
 
874
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
875
826
  :type execution_context: int | str | None
876
827
  :type undo: bool | None
877
828
  """
878
829
 
879
830
  def mask_strip_add(
880
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
881
831
  execution_context: int | str | None = None,
882
832
  undo: bool | None = None,
833
+ /,
883
834
  *,
884
835
  frame_start: int | None = 0,
885
836
  channel: int | None = 1,
@@ -890,7 +841,6 @@ def mask_strip_add(
890
841
  ):
891
842
  """Add a mask strip to the sequencer
892
843
 
893
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
894
844
  :type execution_context: int | str | None
895
845
  :type undo: bool | None
896
846
  :param frame_start: Start Frame, Start frame of the sequence strip
@@ -907,46 +857,31 @@ def mask_strip_add(
907
857
  :type mask: str | None
908
858
  """
909
859
 
910
- def meta_make(
911
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
912
- execution_context: int | str | None = None,
913
- undo: bool | None = None,
914
- ):
860
+ def meta_make(execution_context: int | str | None = None, undo: bool | None = None):
915
861
  """Group selected strips into a meta-strip
916
862
 
917
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
918
863
  :type execution_context: int | str | None
919
864
  :type undo: bool | None
920
865
  """
921
866
 
922
- def meta_separate(
923
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
924
- execution_context: int | str | None = None,
925
- undo: bool | None = None,
926
- ):
867
+ def meta_separate(execution_context: int | str | None = None, undo: bool | None = None):
927
868
  """Put the contents of a meta-strip back in the sequencer
928
869
 
929
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
930
870
  :type execution_context: int | str | None
931
871
  :type undo: bool | None
932
872
  """
933
873
 
934
- def meta_toggle(
935
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
936
- execution_context: int | str | None = None,
937
- undo: bool | None = None,
938
- ):
874
+ def meta_toggle(execution_context: int | str | None = None, undo: bool | None = None):
939
875
  """Toggle a meta-strip (to edit enclosed strips)
940
876
 
941
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
942
877
  :type execution_context: int | str | None
943
878
  :type undo: bool | None
944
879
  """
945
880
 
946
881
  def movie_strip_add(
947
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
948
882
  execution_context: int | str | None = None,
949
883
  undo: bool | None = None,
884
+ /,
950
885
  *,
951
886
  filepath: str = "",
952
887
  directory: str = "",
@@ -1000,7 +935,6 @@ def movie_strip_add(
1000
935
  ):
1001
936
  """Add a movie strip to the sequencer
1002
937
 
1003
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1004
938
  :type execution_context: int | str | None
1005
939
  :type undo: bool | None
1006
940
  :param filepath: File Path, Path to file
@@ -1122,9 +1056,9 @@ def movie_strip_add(
1122
1056
  """
1123
1057
 
1124
1058
  def movieclip_strip_add(
1125
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1126
1059
  execution_context: int | str | None = None,
1127
1060
  undo: bool | None = None,
1061
+ /,
1128
1062
  *,
1129
1063
  frame_start: int | None = 0,
1130
1064
  channel: int | None = 1,
@@ -1135,7 +1069,6 @@ def movieclip_strip_add(
1135
1069
  ):
1136
1070
  """Add a movieclip strip to the sequencer
1137
1071
 
1138
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1139
1072
  :type execution_context: int | str | None
1140
1073
  :type undo: bool | None
1141
1074
  :param frame_start: Start Frame, Start frame of the sequence strip
@@ -1153,43 +1086,36 @@ def movieclip_strip_add(
1153
1086
  """
1154
1087
 
1155
1088
  def mute(
1156
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1157
1089
  execution_context: int | str | None = None,
1158
1090
  undo: bool | None = None,
1091
+ /,
1159
1092
  *,
1160
1093
  unselected: bool | None = False,
1161
1094
  ):
1162
1095
  """Mute (un)selected strips
1163
1096
 
1164
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1165
1097
  :type execution_context: int | str | None
1166
1098
  :type undo: bool | None
1167
1099
  :param unselected: Unselected, Mute unselected rather than selected strips
1168
1100
  :type unselected: bool | None
1169
1101
  """
1170
1102
 
1171
- def offset_clear(
1172
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1173
- execution_context: int | str | None = None,
1174
- undo: bool | None = None,
1175
- ):
1103
+ def offset_clear(execution_context: int | str | None = None, undo: bool | None = None):
1176
1104
  """Clear strip offsets from the start and end frames
1177
1105
 
1178
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1179
1106
  :type execution_context: int | str | None
1180
1107
  :type undo: bool | None
1181
1108
  """
1182
1109
 
1183
1110
  def paste(
1184
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1185
1111
  execution_context: int | str | None = None,
1186
1112
  undo: bool | None = None,
1113
+ /,
1187
1114
  *,
1188
1115
  keep_offset: bool | None = False,
1189
1116
  ):
1190
1117
  """Paste strips from the internal clipboard
1191
1118
 
1192
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1193
1119
  :type execution_context: int | str | None
1194
1120
  :type undo: bool | None
1195
1121
  :param keep_offset: Keep Offset, Keep strip offset relative to the current frame when pasting
@@ -1197,51 +1123,37 @@ def paste(
1197
1123
  """
1198
1124
 
1199
1125
  def reassign_inputs(
1200
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1201
- execution_context: int | str | None = None,
1202
- undo: bool | None = None,
1126
+ execution_context: int | str | None = None, undo: bool | None = None
1203
1127
  ):
1204
1128
  """Reassign the inputs for the effect strip
1205
1129
 
1206
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1207
1130
  :type execution_context: int | str | None
1208
1131
  :type undo: bool | None
1209
1132
  """
1210
1133
 
1211
- def rebuild_proxy(
1212
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1213
- execution_context: int | str | None = None,
1214
- undo: bool | None = None,
1215
- ):
1134
+ def rebuild_proxy(execution_context: int | str | None = None, undo: bool | None = None):
1216
1135
  """Rebuild all selected proxies and timecode indices
1217
1136
 
1218
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1219
1137
  :type execution_context: int | str | None
1220
1138
  :type undo: bool | None
1221
1139
  """
1222
1140
 
1223
- def refresh_all(
1224
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1225
- execution_context: int | str | None = None,
1226
- undo: bool | None = None,
1227
- ):
1141
+ def refresh_all(execution_context: int | str | None = None, undo: bool | None = None):
1228
1142
  """Refresh the sequencer editor
1229
1143
 
1230
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1231
1144
  :type execution_context: int | str | None
1232
1145
  :type undo: bool | None
1233
1146
  """
1234
1147
 
1235
1148
  def reload(
1236
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1237
1149
  execution_context: int | str | None = None,
1238
1150
  undo: bool | None = None,
1151
+ /,
1239
1152
  *,
1240
1153
  adjust_length: bool | None = False,
1241
1154
  ):
1242
1155
  """Reload strips in the sequencer
1243
1156
 
1244
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1245
1157
  :type execution_context: int | str | None
1246
1158
  :type undo: bool | None
1247
1159
  :param adjust_length: Adjust Length, Adjust length of strips to their data length
@@ -1249,40 +1161,31 @@ def reload(
1249
1161
  """
1250
1162
 
1251
1163
  def rename_channel(
1252
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1253
- execution_context: int | str | None = None,
1254
- undo: bool | None = None,
1164
+ execution_context: int | str | None = None, undo: bool | None = None
1255
1165
  ):
1256
1166
  """Undocumented, consider contributing.
1257
1167
 
1258
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1259
1168
  :type execution_context: int | str | None
1260
1169
  :type undo: bool | None
1261
1170
  """
1262
1171
 
1263
- def rendersize(
1264
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1265
- execution_context: int | str | None = None,
1266
- undo: bool | None = None,
1267
- ):
1172
+ def rendersize(execution_context: int | str | None = None, undo: bool | None = None):
1268
1173
  """Set render size and aspect from active sequence
1269
1174
 
1270
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1271
1175
  :type execution_context: int | str | None
1272
1176
  :type undo: bool | None
1273
1177
  """
1274
1178
 
1275
1179
  def retiming_add_freeze_frame_slide(
1276
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1277
1180
  execution_context: int | str | None = None,
1278
1181
  undo: bool | None = None,
1182
+ /,
1279
1183
  *,
1280
1184
  SEQUENCER_OT_retiming_freeze_frame_add: retiming_freeze_frame_add | None = None,
1281
1185
  TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide | None = None,
1282
1186
  ):
1283
1187
  """Add freeze frame and move it
1284
1188
 
1285
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1286
1189
  :type execution_context: int | str | None
1287
1190
  :type undo: bool | None
1288
1191
  :param SEQUENCER_OT_retiming_freeze_frame_add: Add Freeze Frame, Add freeze frame
@@ -1292,16 +1195,15 @@ def retiming_add_freeze_frame_slide(
1292
1195
  """
1293
1196
 
1294
1197
  def retiming_add_transition_slide(
1295
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1296
1198
  execution_context: int | str | None = None,
1297
1199
  undo: bool | None = None,
1200
+ /,
1298
1201
  *,
1299
1202
  SEQUENCER_OT_retiming_transition_add: retiming_transition_add | None = None,
1300
1203
  TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide | None = None,
1301
1204
  ):
1302
1205
  """Add smooth transition between 2 retimed segments and change its duration
1303
1206
 
1304
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1305
1207
  :type execution_context: int | str | None
1306
1208
  :type undo: bool | None
1307
1209
  :param SEQUENCER_OT_retiming_transition_add: Add Speed Transition, Add smooth transition between 2 retimed segments
@@ -1311,15 +1213,14 @@ def retiming_add_transition_slide(
1311
1213
  """
1312
1214
 
1313
1215
  def retiming_freeze_frame_add(
1314
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1315
1216
  execution_context: int | str | None = None,
1316
1217
  undo: bool | None = None,
1218
+ /,
1317
1219
  *,
1318
1220
  duration: int | None = 0,
1319
1221
  ):
1320
1222
  """Add freeze frame
1321
1223
 
1322
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1323
1224
  :type execution_context: int | str | None
1324
1225
  :type undo: bool | None
1325
1226
  :param duration: Duration, Duration of freeze frame segment
@@ -1327,15 +1228,14 @@ def retiming_freeze_frame_add(
1327
1228
  """
1328
1229
 
1329
1230
  def retiming_key_add(
1330
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1331
1231
  execution_context: int | str | None = None,
1332
1232
  undo: bool | None = None,
1233
+ /,
1333
1234
  *,
1334
1235
  timeline_frame: int | None = 0,
1335
1236
  ):
1336
1237
  """Add retiming Key
1337
1238
 
1338
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1339
1239
  :type execution_context: int | str | None
1340
1240
  :type undo: bool | None
1341
1241
  :param timeline_frame: Timeline Frame, Frame where key will be added
@@ -1343,40 +1243,33 @@ def retiming_key_add(
1343
1243
  """
1344
1244
 
1345
1245
  def retiming_key_delete(
1346
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1347
- execution_context: int | str | None = None,
1348
- undo: bool | None = None,
1246
+ execution_context: int | str | None = None, undo: bool | None = None
1349
1247
  ):
1350
1248
  """Delete selected strips from the sequencer
1351
1249
 
1352
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1353
1250
  :type execution_context: int | str | None
1354
1251
  :type undo: bool | None
1355
1252
  """
1356
1253
 
1357
1254
  def retiming_reset(
1358
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1359
- execution_context: int | str | None = None,
1360
- undo: bool | None = None,
1255
+ execution_context: int | str | None = None, undo: bool | None = None
1361
1256
  ):
1362
1257
  """Reset strip retiming
1363
1258
 
1364
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1365
1259
  :type execution_context: int | str | None
1366
1260
  :type undo: bool | None
1367
1261
  """
1368
1262
 
1369
1263
  def retiming_segment_speed_set(
1370
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1371
1264
  execution_context: int | str | None = None,
1372
1265
  undo: bool | None = None,
1266
+ /,
1373
1267
  *,
1374
1268
  speed: float | None = 100.0,
1375
1269
  keep_retiming: bool | None = True,
1376
1270
  ):
1377
1271
  """Set speed of retimed segment
1378
1272
 
1379
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1380
1273
  :type execution_context: int | str | None
1381
1274
  :type undo: bool | None
1382
1275
  :param speed: Speed, New speed of retimed segment
@@ -1385,28 +1278,22 @@ def retiming_segment_speed_set(
1385
1278
  :type keep_retiming: bool | None
1386
1279
  """
1387
1280
 
1388
- def retiming_show(
1389
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1390
- execution_context: int | str | None = None,
1391
- undo: bool | None = None,
1392
- ):
1281
+ def retiming_show(execution_context: int | str | None = None, undo: bool | None = None):
1393
1282
  """Show retiming keys in selected strips
1394
1283
 
1395
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1396
1284
  :type execution_context: int | str | None
1397
1285
  :type undo: bool | None
1398
1286
  """
1399
1287
 
1400
1288
  def retiming_transition_add(
1401
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1402
1289
  execution_context: int | str | None = None,
1403
1290
  undo: bool | None = None,
1291
+ /,
1404
1292
  *,
1405
1293
  duration: int | None = 0,
1406
1294
  ):
1407
1295
  """Add smooth transition between 2 retimed segments
1408
1296
 
1409
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1410
1297
  :type execution_context: int | str | None
1411
1298
  :type undo: bool | None
1412
1299
  :param duration: Duration, Duration of freeze frame segment
@@ -1414,15 +1301,14 @@ def retiming_transition_add(
1414
1301
  """
1415
1302
 
1416
1303
  def sample(
1417
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1418
1304
  execution_context: int | str | None = None,
1419
1305
  undo: bool | None = None,
1306
+ /,
1420
1307
  *,
1421
1308
  size: int | None = 1,
1422
1309
  ):
1423
1310
  """Use mouse to sample color in current frame
1424
1311
 
1425
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1426
1312
  :type execution_context: int | str | None
1427
1313
  :type undo: bool | None
1428
1314
  :param size: Sample Size
@@ -1430,21 +1316,18 @@ def sample(
1430
1316
  """
1431
1317
 
1432
1318
  def scene_frame_range_update(
1433
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1434
- execution_context: int | str | None = None,
1435
- undo: bool | None = None,
1319
+ execution_context: int | str | None = None, undo: bool | None = None
1436
1320
  ):
1437
1321
  """Update frame range of scene strip
1438
1322
 
1439
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1440
1323
  :type execution_context: int | str | None
1441
1324
  :type undo: bool | None
1442
1325
  """
1443
1326
 
1444
1327
  def scene_strip_add(
1445
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1446
1328
  execution_context: int | str | None = None,
1447
1329
  undo: bool | None = None,
1330
+ /,
1448
1331
  *,
1449
1332
  frame_start: int | None = 0,
1450
1333
  channel: int | None = 1,
@@ -1455,7 +1338,6 @@ def scene_strip_add(
1455
1338
  ):
1456
1339
  """Add a strip to the sequencer using a Blender scene as a source
1457
1340
 
1458
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1459
1341
  :type execution_context: int | str | None
1460
1342
  :type undo: bool | None
1461
1343
  :param frame_start: Start Frame, Start frame of the sequence strip
@@ -1473,9 +1355,9 @@ def scene_strip_add(
1473
1355
  """
1474
1356
 
1475
1357
  def scene_strip_add_new(
1476
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1477
1358
  execution_context: int | str | None = None,
1478
1359
  undo: bool | None = None,
1360
+ /,
1479
1361
  *,
1480
1362
  frame_start: int | None = 0,
1481
1363
  channel: int | None = 1,
@@ -1486,7 +1368,6 @@ def scene_strip_add_new(
1486
1368
  ):
1487
1369
  """Create a new Strip and assign a new Scene as source
1488
1370
 
1489
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1490
1371
  :type execution_context: int | str | None
1491
1372
  :type undo: bool | None
1492
1373
  :param frame_start: Start Frame, Start frame of the sequence strip
@@ -1516,9 +1397,9 @@ def scene_strip_add_new(
1516
1397
  """
1517
1398
 
1518
1399
  def select(
1519
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1520
1400
  execution_context: int | str | None = None,
1521
1401
  undo: bool | None = None,
1402
+ /,
1522
1403
  *,
1523
1404
  wait_to_deselect_others: bool | None = False,
1524
1405
  mouse_x: int | None = 0,
@@ -1536,7 +1417,6 @@ def select(
1536
1417
  ):
1537
1418
  """Select a strip (last selected becomes the "active strip")
1538
1419
 
1539
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1540
1420
  :type execution_context: int | str | None
1541
1421
  :type undo: bool | None
1542
1422
  :param wait_to_deselect_others: Wait to Deselect Others
@@ -1568,15 +1448,14 @@ def select(
1568
1448
  """
1569
1449
 
1570
1450
  def select_all(
1571
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1572
1451
  execution_context: int | str | None = None,
1573
1452
  undo: bool | None = None,
1453
+ /,
1574
1454
  *,
1575
1455
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
1576
1456
  ):
1577
1457
  """Select or deselect all strips
1578
1458
 
1579
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1580
1459
  :type execution_context: int | str | None
1581
1460
  :type undo: bool | None
1582
1461
  :param action: Action, Selection action to execute
@@ -1596,9 +1475,9 @@ def select_all(
1596
1475
  """
1597
1476
 
1598
1477
  def select_box(
1599
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1600
1478
  execution_context: int | str | None = None,
1601
1479
  undo: bool | None = None,
1480
+ /,
1602
1481
  *,
1603
1482
  xmin: int | None = 0,
1604
1483
  xmax: int | None = 0,
@@ -1612,7 +1491,6 @@ def select_box(
1612
1491
  ):
1613
1492
  """Select strips using box selection
1614
1493
 
1615
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1616
1494
  :type execution_context: int | str | None
1617
1495
  :type undo: bool | None
1618
1496
  :param xmin: X Min
@@ -1645,9 +1523,9 @@ def select_box(
1645
1523
  """
1646
1524
 
1647
1525
  def select_grouped(
1648
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1649
1526
  execution_context: int | str | None = None,
1650
1527
  undo: bool | None = None,
1528
+ /,
1651
1529
  *,
1652
1530
  type: typing.Literal[
1653
1531
  "TYPE", "TYPE_BASIC", "TYPE_EFFECT", "DATA", "EFFECT", "EFFECT_LINK", "OVERLAP"
@@ -1658,7 +1536,6 @@ def select_grouped(
1658
1536
  ):
1659
1537
  """Select all strips grouped by various properties
1660
1538
 
1661
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1662
1539
  :type execution_context: int | str | None
1663
1540
  :type undo: bool | None
1664
1541
  :param type: Type
@@ -1691,9 +1568,9 @@ def select_grouped(
1691
1568
  """
1692
1569
 
1693
1570
  def select_handle(
1694
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1695
1571
  execution_context: int | str | None = None,
1696
1572
  undo: bool | None = None,
1573
+ /,
1697
1574
  *,
1698
1575
  wait_to_deselect_others: bool | None = False,
1699
1576
  mouse_x: int | None = 0,
@@ -1702,7 +1579,6 @@ def select_handle(
1702
1579
  ):
1703
1580
  """Select strip handle
1704
1581
 
1705
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1706
1582
  :type execution_context: int | str | None
1707
1583
  :type undo: bool | None
1708
1584
  :param wait_to_deselect_others: Wait to Deselect Others
@@ -1716,9 +1592,9 @@ def select_handle(
1716
1592
  """
1717
1593
 
1718
1594
  def select_handles(
1719
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1720
1595
  execution_context: int | str | None = None,
1721
1596
  undo: bool | None = None,
1597
+ /,
1722
1598
  *,
1723
1599
  side: typing.Literal[
1724
1600
  "LEFT", "RIGHT", "BOTH", "LEFT_NEIGHBOR", "RIGHT_NEIGHBOR", "BOTH_NEIGHBORS"
@@ -1727,75 +1603,57 @@ def select_handles(
1727
1603
  ):
1728
1604
  """Select gizmo handles on the sides of the selected strip
1729
1605
 
1730
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1731
1606
  :type execution_context: int | str | None
1732
1607
  :type undo: bool | None
1733
1608
  :param side: Side, The side of the handle that is selected
1734
1609
  :type side: typing.Literal['LEFT','RIGHT','BOTH','LEFT_NEIGHBOR','RIGHT_NEIGHBOR','BOTH_NEIGHBORS'] | None
1735
1610
  """
1736
1611
 
1737
- def select_less(
1738
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1739
- execution_context: int | str | None = None,
1740
- undo: bool | None = None,
1741
- ):
1612
+ def select_less(execution_context: int | str | None = None, undo: bool | None = None):
1742
1613
  """Shrink the current selection of adjacent selected strips
1743
1614
 
1744
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1745
1615
  :type execution_context: int | str | None
1746
1616
  :type undo: bool | None
1747
1617
  """
1748
1618
 
1749
- def select_linked(
1750
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1751
- execution_context: int | str | None = None,
1752
- undo: bool | None = None,
1753
- ):
1619
+ def select_linked(execution_context: int | str | None = None, undo: bool | None = None):
1754
1620
  """Select all strips adjacent to the current selection
1755
1621
 
1756
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1757
1622
  :type execution_context: int | str | None
1758
1623
  :type undo: bool | None
1759
1624
  """
1760
1625
 
1761
1626
  def select_linked_pick(
1762
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1763
1627
  execution_context: int | str | None = None,
1764
1628
  undo: bool | None = None,
1629
+ /,
1765
1630
  *,
1766
1631
  extend: bool | None = False,
1767
1632
  ):
1768
1633
  """Select a chain of linked strips nearest to the mouse pointer
1769
1634
 
1770
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1771
1635
  :type execution_context: int | str | None
1772
1636
  :type undo: bool | None
1773
1637
  :param extend: Extend, Extend the selection
1774
1638
  :type extend: bool | None
1775
1639
  """
1776
1640
 
1777
- def select_more(
1778
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1779
- execution_context: int | str | None = None,
1780
- undo: bool | None = None,
1781
- ):
1641
+ def select_more(execution_context: int | str | None = None, undo: bool | None = None):
1782
1642
  """Select more strips adjacent to the current selection
1783
1643
 
1784
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1785
1644
  :type execution_context: int | str | None
1786
1645
  :type undo: bool | None
1787
1646
  """
1788
1647
 
1789
1648
  def select_side(
1790
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1791
1649
  execution_context: int | str | None = None,
1792
1650
  undo: bool | None = None,
1651
+ /,
1793
1652
  *,
1794
1653
  side: typing.Literal["MOUSE", "LEFT", "RIGHT", "BOTH", "NO_CHANGE"] | None = "BOTH",
1795
1654
  ):
1796
1655
  """Select strips on the nominated side of the selected strips
1797
1656
 
1798
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1799
1657
  :type execution_context: int | str | None
1800
1658
  :type undo: bool | None
1801
1659
  :param side: Side, The side to which the selection is applied
@@ -1803,16 +1661,15 @@ def select_side(
1803
1661
  """
1804
1662
 
1805
1663
  def select_side_of_frame(
1806
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1807
1664
  execution_context: int | str | None = None,
1808
1665
  undo: bool | None = None,
1666
+ /,
1809
1667
  *,
1810
1668
  extend: bool | None = False,
1811
1669
  side: typing.Literal["LEFT", "RIGHT", "CURRENT"] | None = "LEFT",
1812
1670
  ):
1813
1671
  """Select strips relative to the current frame
1814
1672
 
1815
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1816
1673
  :type execution_context: int | str | None
1817
1674
  :type undo: bool | None
1818
1675
  :param extend: Extend, Extend the selection
@@ -1831,15 +1688,14 @@ def select_side_of_frame(
1831
1688
  """
1832
1689
 
1833
1690
  def set_range_to_strips(
1834
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1835
1691
  execution_context: int | str | None = None,
1836
1692
  undo: bool | None = None,
1693
+ /,
1837
1694
  *,
1838
1695
  preview: bool | None = False,
1839
1696
  ):
1840
1697
  """Set the frame range to the selected strips start and end
1841
1698
 
1842
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1843
1699
  :type execution_context: int | str | None
1844
1700
  :type undo: bool | None
1845
1701
  :param preview: Preview, Set the preview range instead
@@ -1847,15 +1703,14 @@ def set_range_to_strips(
1847
1703
  """
1848
1704
 
1849
1705
  def slip(
1850
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1851
1706
  execution_context: int | str | None = None,
1852
1707
  undo: bool | None = None,
1708
+ /,
1853
1709
  *,
1854
1710
  offset: float | None = 0.0,
1855
1711
  ):
1856
1712
  """Slip the contents of selected strips
1857
1713
 
1858
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1859
1714
  :type execution_context: int | str | None
1860
1715
  :type undo: bool | None
1861
1716
  :param offset: Offset, Offset to the data of the strip
@@ -1863,15 +1718,14 @@ def slip(
1863
1718
  """
1864
1719
 
1865
1720
  def snap(
1866
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1867
1721
  execution_context: int | str | None = None,
1868
1722
  undo: bool | None = None,
1723
+ /,
1869
1724
  *,
1870
1725
  frame: int | None = 0,
1871
1726
  ):
1872
1727
  """Frame where selected strips will be snapped
1873
1728
 
1874
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1875
1729
  :type execution_context: int | str | None
1876
1730
  :type undo: bool | None
1877
1731
  :param frame: Frame, Frame where selected strips will be snapped
@@ -1879,9 +1733,9 @@ def snap(
1879
1733
  """
1880
1734
 
1881
1735
  def sound_strip_add(
1882
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1883
1736
  execution_context: int | str | None = None,
1884
1737
  undo: bool | None = None,
1738
+ /,
1885
1739
  *,
1886
1740
  filepath: str = "",
1887
1741
  directory: str = "",
@@ -1930,7 +1784,6 @@ def sound_strip_add(
1930
1784
  ):
1931
1785
  """Add a sound strip to the sequencer
1932
1786
 
1933
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1934
1787
  :type execution_context: int | str | None
1935
1788
  :type undo: bool | None
1936
1789
  :param filepath: File Path, Path to file
@@ -2030,9 +1883,9 @@ def sound_strip_add(
2030
1883
  """
2031
1884
 
2032
1885
  def split(
2033
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2034
1886
  execution_context: int | str | None = None,
2035
1887
  undo: bool | None = None,
1888
+ /,
2036
1889
  *,
2037
1890
  frame: int | None = 0,
2038
1891
  channel: int | None = 0,
@@ -2044,7 +1897,6 @@ def split(
2044
1897
  ):
2045
1898
  """Split the selected strips in two
2046
1899
 
2047
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2048
1900
  :type execution_context: int | str | None
2049
1901
  :type undo: bool | None
2050
1902
  :param frame: Frame, Frame where selected strips will be split
@@ -2062,15 +1914,14 @@ def split(
2062
1914
  """
2063
1915
 
2064
1916
  def split_multicam(
2065
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2066
1917
  execution_context: int | str | None = None,
2067
1918
  undo: bool | None = None,
1919
+ /,
2068
1920
  *,
2069
1921
  camera: int | None = 1,
2070
1922
  ):
2071
1923
  """Split multicam strip and select camera
2072
1924
 
2073
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2074
1925
  :type execution_context: int | str | None
2075
1926
  :type undo: bool | None
2076
1927
  :param camera: Camera
@@ -2078,15 +1929,14 @@ def split_multicam(
2078
1929
  """
2079
1930
 
2080
1931
  def strip_color_tag_set(
2081
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2082
1932
  execution_context: int | str | None = None,
2083
1933
  undo: bool | None = None,
1934
+ /,
2084
1935
  *,
2085
1936
  color: bpy.typing.StripColorItems | None = "NONE",
2086
1937
  ):
2087
1938
  """Set a color tag for the selected strips
2088
1939
 
2089
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2090
1940
  :type execution_context: int | str | None
2091
1941
  :type undo: bool | None
2092
1942
  :param color: Color Tag
@@ -2094,16 +1944,15 @@ def strip_color_tag_set(
2094
1944
  """
2095
1945
 
2096
1946
  def strip_jump(
2097
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2098
1947
  execution_context: int | str | None = None,
2099
1948
  undo: bool | None = None,
1949
+ /,
2100
1950
  *,
2101
1951
  next: bool | None = True,
2102
1952
  center: bool | None = True,
2103
1953
  ):
2104
1954
  """Move frame to previous edit point
2105
1955
 
2106
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2107
1956
  :type execution_context: int | str | None
2108
1957
  :type undo: bool | None
2109
1958
  :param next: Next Strip
@@ -2113,15 +1962,14 @@ def strip_jump(
2113
1962
  """
2114
1963
 
2115
1964
  def strip_modifier_add(
2116
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2117
1965
  execution_context: int | str | None = None,
2118
1966
  undo: bool | None = None,
1967
+ /,
2119
1968
  *,
2120
1969
  type: str | None = "",
2121
1970
  ):
2122
1971
  """Add a modifier to the strip
2123
1972
 
2124
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2125
1973
  :type execution_context: int | str | None
2126
1974
  :type undo: bool | None
2127
1975
  :param type: Type
@@ -2129,15 +1977,14 @@ def strip_modifier_add(
2129
1977
  """
2130
1978
 
2131
1979
  def strip_modifier_copy(
2132
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2133
1980
  execution_context: int | str | None = None,
2134
1981
  undo: bool | None = None,
1982
+ /,
2135
1983
  *,
2136
1984
  type: typing.Literal["REPLACE", "APPEND"] | None = "REPLACE",
2137
1985
  ):
2138
1986
  """Copy modifiers of the active strip to all selected strips
2139
1987
 
2140
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2141
1988
  :type execution_context: int | str | None
2142
1989
  :type undo: bool | None
2143
1990
  :param type: Type
@@ -2151,16 +1998,15 @@ def strip_modifier_copy(
2151
1998
  """
2152
1999
 
2153
2000
  def strip_modifier_equalizer_redefine(
2154
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2155
2001
  execution_context: int | str | None = None,
2156
2002
  undo: bool | None = None,
2003
+ /,
2157
2004
  *,
2158
2005
  graphs: typing.Literal["SIMPLE", "DOUBLE", "TRIPLE"] | None = "SIMPLE",
2159
2006
  name: str = "Name",
2160
2007
  ):
2161
2008
  """Redefine equalizer graphs
2162
2009
 
2163
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2164
2010
  :type execution_context: int | str | None
2165
2011
  :type undo: bool | None
2166
2012
  :param graphs: Graphs, Number of graphs
@@ -2179,16 +2025,15 @@ def strip_modifier_equalizer_redefine(
2179
2025
  """
2180
2026
 
2181
2027
  def strip_modifier_move(
2182
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2183
2028
  execution_context: int | str | None = None,
2184
2029
  undo: bool | None = None,
2030
+ /,
2185
2031
  *,
2186
2032
  name: str = "Name",
2187
2033
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
2188
2034
  ):
2189
2035
  """Move modifier up and down in the stack
2190
2036
 
2191
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2192
2037
  :type execution_context: int | str | None
2193
2038
  :type undo: bool | None
2194
2039
  :param name: Name, Name of modifier to remove
@@ -2204,15 +2049,14 @@ def strip_modifier_move(
2204
2049
  """
2205
2050
 
2206
2051
  def strip_modifier_remove(
2207
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2208
2052
  execution_context: int | str | None = None,
2209
2053
  undo: bool | None = None,
2054
+ /,
2210
2055
  *,
2211
2056
  name: str = "Name",
2212
2057
  ):
2213
2058
  """Remove a modifier from the strip
2214
2059
 
2215
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2216
2060
  :type execution_context: int | str | None
2217
2061
  :type undo: bool | None
2218
2062
  :param name: Name, Name of modifier to remove
@@ -2220,15 +2064,14 @@ def strip_modifier_remove(
2220
2064
  """
2221
2065
 
2222
2066
  def strip_transform_clear(
2223
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2224
2067
  execution_context: int | str | None = None,
2225
2068
  undo: bool | None = None,
2069
+ /,
2226
2070
  *,
2227
2071
  property: typing.Literal["POSITION", "SCALE", "ROTATION", "ALL"] | None = "ALL",
2228
2072
  ):
2229
2073
  """Reset image transformation to default value
2230
2074
 
2231
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2232
2075
  :type execution_context: int | str | None
2233
2076
  :type undo: bool | None
2234
2077
  :param property: Property, Strip transform property to be reset
@@ -2248,15 +2091,14 @@ def strip_transform_clear(
2248
2091
  """
2249
2092
 
2250
2093
  def strip_transform_fit(
2251
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2252
2094
  execution_context: int | str | None = None,
2253
2095
  undo: bool | None = None,
2096
+ /,
2254
2097
  *,
2255
2098
  fit_method: typing.Literal["FIT", "FILL", "STRETCH"] | None = "FIT",
2256
2099
  ):
2257
2100
  """Undocumented, consider contributing.
2258
2101
 
2259
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2260
2102
  :type execution_context: int | str | None
2261
2103
  :type undo: bool | None
2262
2104
  :param fit_method: Fit Method, Scale fit fit_method
@@ -2273,113 +2115,83 @@ def strip_transform_fit(
2273
2115
  """
2274
2116
 
2275
2117
  def swap(
2276
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2277
2118
  execution_context: int | str | None = None,
2278
2119
  undo: bool | None = None,
2120
+ /,
2279
2121
  *,
2280
2122
  side: typing.Literal["LEFT", "RIGHT"] | None = "RIGHT",
2281
2123
  ):
2282
2124
  """Swap active strip with strip to the right or left
2283
2125
 
2284
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2285
2126
  :type execution_context: int | str | None
2286
2127
  :type undo: bool | None
2287
2128
  :param side: Side, Side of the strip to swap
2288
2129
  :type side: typing.Literal['LEFT','RIGHT'] | None
2289
2130
  """
2290
2131
 
2291
- def swap_data(
2292
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2293
- execution_context: int | str | None = None,
2294
- undo: bool | None = None,
2295
- ):
2132
+ def swap_data(execution_context: int | str | None = None, undo: bool | None = None):
2296
2133
  """Swap 2 sequencer strips
2297
2134
 
2298
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2299
2135
  :type execution_context: int | str | None
2300
2136
  :type undo: bool | None
2301
2137
  """
2302
2138
 
2303
- def swap_inputs(
2304
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2305
- execution_context: int | str | None = None,
2306
- undo: bool | None = None,
2307
- ):
2139
+ def swap_inputs(execution_context: int | str | None = None, undo: bool | None = None):
2308
2140
  """Swap the two inputs of the effect strip
2309
2141
 
2310
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2311
2142
  :type execution_context: int | str | None
2312
2143
  :type undo: bool | None
2313
2144
  """
2314
2145
 
2315
- def unlock(
2316
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2317
- execution_context: int | str | None = None,
2318
- undo: bool | None = None,
2319
- ):
2146
+ def unlock(execution_context: int | str | None = None, undo: bool | None = None):
2320
2147
  """Unlock strips so they can be transformed
2321
2148
 
2322
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2323
2149
  :type execution_context: int | str | None
2324
2150
  :type undo: bool | None
2325
2151
  """
2326
2152
 
2327
2153
  def unmute(
2328
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2329
2154
  execution_context: int | str | None = None,
2330
2155
  undo: bool | None = None,
2156
+ /,
2331
2157
  *,
2332
2158
  unselected: bool | None = False,
2333
2159
  ):
2334
2160
  """Unmute (un)selected strips
2335
2161
 
2336
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2337
2162
  :type execution_context: int | str | None
2338
2163
  :type undo: bool | None
2339
2164
  :param unselected: Unselected, Unmute unselected rather than selected strips
2340
2165
  :type unselected: bool | None
2341
2166
  """
2342
2167
 
2343
- def view_all(
2344
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2345
- execution_context: int | str | None = None,
2346
- undo: bool | None = None,
2347
- ):
2168
+ def view_all(execution_context: int | str | None = None, undo: bool | None = None):
2348
2169
  """View all the strips in the sequencer
2349
2170
 
2350
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2351
2171
  :type execution_context: int | str | None
2352
2172
  :type undo: bool | None
2353
2173
  """
2354
2174
 
2355
2175
  def view_all_preview(
2356
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2357
- execution_context: int | str | None = None,
2358
- undo: bool | None = None,
2176
+ execution_context: int | str | None = None, undo: bool | None = None
2359
2177
  ):
2360
2178
  """Zoom preview to fit in the area
2361
2179
 
2362
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2363
2180
  :type execution_context: int | str | None
2364
2181
  :type undo: bool | None
2365
2182
  """
2366
2183
 
2367
- def view_frame(
2368
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2369
- execution_context: int | str | None = None,
2370
- undo: bool | None = None,
2371
- ):
2184
+ def view_frame(execution_context: int | str | None = None, undo: bool | None = None):
2372
2185
  """Move the view to the current frame
2373
2186
 
2374
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2375
2187
  :type execution_context: int | str | None
2376
2188
  :type undo: bool | None
2377
2189
  """
2378
2190
 
2379
2191
  def view_ghost_border(
2380
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2381
2192
  execution_context: int | str | None = None,
2382
2193
  undo: bool | None = None,
2194
+ /,
2383
2195
  *,
2384
2196
  xmin: int | None = 0,
2385
2197
  xmax: int | None = 0,
@@ -2389,7 +2201,6 @@ def view_ghost_border(
2389
2201
  ):
2390
2202
  """Set the boundaries of the border used for offset view
2391
2203
 
2392
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2393
2204
  :type execution_context: int | str | None
2394
2205
  :type undo: bool | None
2395
2206
  :param xmin: X Min
@@ -2404,28 +2215,22 @@ def view_ghost_border(
2404
2215
  :type wait_for_input: bool | None
2405
2216
  """
2406
2217
 
2407
- def view_selected(
2408
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2409
- execution_context: int | str | None = None,
2410
- undo: bool | None = None,
2411
- ):
2218
+ def view_selected(execution_context: int | str | None = None, undo: bool | None = None):
2412
2219
  """Zoom the sequencer on the selected strips
2413
2220
 
2414
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2415
2221
  :type execution_context: int | str | None
2416
2222
  :type undo: bool | None
2417
2223
  """
2418
2224
 
2419
2225
  def view_zoom_ratio(
2420
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
2421
2226
  execution_context: int | str | None = None,
2422
2227
  undo: bool | None = None,
2228
+ /,
2423
2229
  *,
2424
2230
  ratio: float | None = 1.0,
2425
2231
  ):
2426
2232
  """Change zoom ratio of sequencer preview
2427
2233
 
2428
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
2429
2234
  :type execution_context: int | str | None
2430
2235
  :type undo: bool | None
2431
2236
  :param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out