fake-bpy-module 20240224__py3-none-any.whl → 20240326__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 (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -5,35 +5,33 @@ import bpy.types
5
5
  GenericType = typing.TypeVar("GenericType")
6
6
 
7
7
  def change_effect_input(
8
- override_context=None,
9
- execution_context=None,
10
- undo=None,
11
- *,
12
- swap: typing.Optional[typing.Any] = "A_B",
8
+ override_context: typing.Union[dict, bpy.types.Context] = None,
9
+ execution_context: typing.Union[str, int] = None,
10
+ undo: bool = None,
11
+ swap: typing.Any = "A_B",
13
12
  ):
14
13
  """Undocumented, consider contributing.
15
14
 
16
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
17
- :type execution_context: typing.Optional[typing.Union[int, str]]
18
- :type undo: typing.Optional[bool]
15
+ :type override_context: typing.Union[dict, bpy.types.Context]
16
+ :type execution_context: typing.Union[str, int]
17
+ :type undo: bool
19
18
  :param swap: Swap, The effect inputs to swap
20
- :type swap: typing.Optional[typing.Any]
19
+ :type swap: typing.Any
21
20
  """
22
21
 
23
22
  ...
24
23
 
25
24
  def change_effect_type(
26
- override_context=None,
27
- execution_context=None,
28
- undo=None,
29
- *,
30
- type: typing.Optional[typing.Any] = "CROSS",
25
+ override_context: typing.Union[dict, bpy.types.Context] = None,
26
+ execution_context: typing.Union[str, int] = None,
27
+ undo: bool = None,
28
+ type: typing.Any = "CROSS",
31
29
  ):
32
30
  """Undocumented, consider contributing.
33
31
 
34
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
35
- :type execution_context: typing.Optional[typing.Union[int, str]]
36
- :type undo: typing.Optional[bool]
32
+ :type override_context: typing.Union[dict, bpy.types.Context]
33
+ :type execution_context: typing.Union[str, int]
34
+ :type undo: bool
37
35
  :param type: Type, Sequencer effect type
38
36
 
39
37
  CROSS
@@ -89,99 +87,96 @@ def change_effect_type(
89
87
 
90
88
  COLORMIX
91
89
  Color Mix.
92
- :type type: typing.Optional[typing.Any]
90
+ :type type: typing.Any
93
91
  """
94
92
 
95
93
  ...
96
94
 
97
95
  def change_path(
98
- override_context=None,
99
- execution_context=None,
100
- undo=None,
101
- *,
96
+ override_context: typing.Union[dict, bpy.types.Context] = None,
97
+ execution_context: typing.Union[str, int] = None,
98
+ undo: bool = None,
102
99
  filepath: typing.Union[str, typing.Any] = "",
103
100
  directory: typing.Union[str, typing.Any] = "",
104
- files: typing.Optional[
105
- bpy.types.bpy_prop_collection["bpy.types.OperatorFileListElement"]
106
- ] = None,
107
- hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
108
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
109
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
110
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
111
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
112
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
113
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
114
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
115
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
116
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
117
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
118
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
119
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
120
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
121
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
122
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
123
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
124
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
125
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
126
- filemode: typing.Optional[typing.Any] = 9,
127
- relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
128
- display_type: typing.Optional[typing.Any] = "DEFAULT",
129
- sort_method: typing.Optional[typing.Union[int, str, typing.Any]] = "",
130
- use_placeholders: typing.Optional[typing.Union[bool, typing.Any]] = False,
101
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
102
+ hide_props_region: typing.Union[bool, typing.Any] = True,
103
+ check_existing: typing.Union[bool, typing.Any] = False,
104
+ filter_blender: typing.Union[bool, typing.Any] = False,
105
+ filter_backup: typing.Union[bool, typing.Any] = False,
106
+ filter_image: typing.Union[bool, typing.Any] = False,
107
+ filter_movie: typing.Union[bool, typing.Any] = False,
108
+ filter_python: typing.Union[bool, typing.Any] = False,
109
+ filter_font: typing.Union[bool, typing.Any] = False,
110
+ filter_sound: typing.Union[bool, typing.Any] = False,
111
+ filter_text: typing.Union[bool, typing.Any] = False,
112
+ filter_archive: typing.Union[bool, typing.Any] = False,
113
+ filter_btx: typing.Union[bool, typing.Any] = False,
114
+ filter_collada: typing.Union[bool, typing.Any] = False,
115
+ filter_alembic: typing.Union[bool, typing.Any] = False,
116
+ filter_usd: typing.Union[bool, typing.Any] = False,
117
+ filter_obj: typing.Union[bool, typing.Any] = False,
118
+ filter_volume: typing.Union[bool, typing.Any] = False,
119
+ filter_folder: typing.Union[bool, typing.Any] = True,
120
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
121
+ filemode: typing.Any = 9,
122
+ relative_path: typing.Union[bool, typing.Any] = True,
123
+ display_type: typing.Any = "DEFAULT",
124
+ sort_method: typing.Union[str, int, typing.Any] = "",
125
+ use_placeholders: typing.Union[bool, typing.Any] = False,
131
126
  ):
132
127
  """Undocumented, consider contributing.
133
128
 
134
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
135
- :type execution_context: typing.Optional[typing.Union[int, str]]
136
- :type undo: typing.Optional[bool]
129
+ :type override_context: typing.Union[dict, bpy.types.Context]
130
+ :type execution_context: typing.Union[str, int]
131
+ :type undo: bool
137
132
  :param filepath: File Path, Path to file
138
133
  :type filepath: typing.Union[str, typing.Any]
139
134
  :param directory: Directory, Directory of the file
140
135
  :type directory: typing.Union[str, typing.Any]
141
136
  :param files: Files
142
- :type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
137
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
143
138
  :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
144
- :type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
139
+ :type hide_props_region: typing.Union[bool, typing.Any]
145
140
  :param check_existing: Check Existing, Check and warn on overwriting existing files
146
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
141
+ :type check_existing: typing.Union[bool, typing.Any]
147
142
  :param filter_blender: Filter .blend files
148
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
143
+ :type filter_blender: typing.Union[bool, typing.Any]
149
144
  :param filter_backup: Filter .blend files
150
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
145
+ :type filter_backup: typing.Union[bool, typing.Any]
151
146
  :param filter_image: Filter image files
152
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
147
+ :type filter_image: typing.Union[bool, typing.Any]
153
148
  :param filter_movie: Filter movie files
154
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
149
+ :type filter_movie: typing.Union[bool, typing.Any]
155
150
  :param filter_python: Filter Python files
156
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
151
+ :type filter_python: typing.Union[bool, typing.Any]
157
152
  :param filter_font: Filter font files
158
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
153
+ :type filter_font: typing.Union[bool, typing.Any]
159
154
  :param filter_sound: Filter sound files
160
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
155
+ :type filter_sound: typing.Union[bool, typing.Any]
161
156
  :param filter_text: Filter text files
162
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
157
+ :type filter_text: typing.Union[bool, typing.Any]
163
158
  :param filter_archive: Filter archive files
164
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
159
+ :type filter_archive: typing.Union[bool, typing.Any]
165
160
  :param filter_btx: Filter btx files
166
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
161
+ :type filter_btx: typing.Union[bool, typing.Any]
167
162
  :param filter_collada: Filter COLLADA files
168
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
163
+ :type filter_collada: typing.Union[bool, typing.Any]
169
164
  :param filter_alembic: Filter Alembic files
170
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
165
+ :type filter_alembic: typing.Union[bool, typing.Any]
171
166
  :param filter_usd: Filter USD files
172
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
167
+ :type filter_usd: typing.Union[bool, typing.Any]
173
168
  :param filter_obj: Filter OBJ files
174
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
169
+ :type filter_obj: typing.Union[bool, typing.Any]
175
170
  :param filter_volume: Filter OpenVDB volume files
176
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
171
+ :type filter_volume: typing.Union[bool, typing.Any]
177
172
  :param filter_folder: Filter folders
178
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
173
+ :type filter_folder: typing.Union[bool, typing.Any]
179
174
  :param filter_blenlib: Filter Blender IDs
180
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
175
+ :type filter_blenlib: typing.Union[bool, typing.Any]
181
176
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
182
- :type filemode: typing.Optional[typing.Any]
177
+ :type filemode: typing.Any
183
178
  :param relative_path: Relative Path, Select the file relative to the blend file
184
- :type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
179
+ :type relative_path: typing.Union[bool, typing.Any]
185
180
  :param display_type: Display Type
186
181
 
187
182
  DEFAULT
@@ -195,154 +190,163 @@ def change_path(
195
190
 
196
191
  THUMBNAIL
197
192
  Thumbnails -- Display files as thumbnails.
198
- :type display_type: typing.Optional[typing.Any]
193
+ :type display_type: typing.Any
199
194
  :param sort_method: File sorting mode
200
- :type sort_method: typing.Optional[typing.Union[int, str, typing.Any]]
195
+ :type sort_method: typing.Union[str, int, typing.Any]
201
196
  :param use_placeholders: Use Placeholders, Use placeholders for missing frames of the strip
202
- :type use_placeholders: typing.Optional[typing.Union[bool, typing.Any]]
197
+ :type use_placeholders: typing.Union[bool, typing.Any]
203
198
  """
204
199
 
205
200
  ...
206
201
 
207
202
  def change_scene(
208
- override_context=None,
209
- execution_context=None,
210
- undo=None,
211
- *,
212
- scene: typing.Optional[typing.Union[int, str, typing.Any]] = "",
203
+ override_context: typing.Union[dict, bpy.types.Context] = None,
204
+ execution_context: typing.Union[str, int] = None,
205
+ undo: bool = None,
206
+ scene: typing.Union[str, int, typing.Any] = "",
213
207
  ):
214
208
  """Change Scene assigned to Strip
215
209
 
216
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
217
- :type execution_context: typing.Optional[typing.Union[int, str]]
218
- :type undo: typing.Optional[bool]
210
+ :type override_context: typing.Union[dict, bpy.types.Context]
211
+ :type execution_context: typing.Union[str, int]
212
+ :type undo: bool
219
213
  :param scene: Scene
220
- :type scene: typing.Optional[typing.Union[int, str, typing.Any]]
214
+ :type scene: typing.Union[str, int, typing.Any]
221
215
  """
222
216
 
223
217
  ...
224
218
 
225
- def copy(override_context=None, execution_context=None, undo=None):
219
+ def copy(
220
+ override_context: typing.Union[dict, bpy.types.Context] = None,
221
+ execution_context: typing.Union[str, int] = None,
222
+ undo: bool = None,
223
+ ):
226
224
  """Copy the selected strips to the internal clipboard
227
225
 
228
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
229
- :type execution_context: typing.Optional[typing.Union[int, str]]
230
- :type undo: typing.Optional[bool]
226
+ :type override_context: typing.Union[dict, bpy.types.Context]
227
+ :type execution_context: typing.Union[str, int]
228
+ :type undo: bool
231
229
  """
232
230
 
233
231
  ...
234
232
 
235
- def crossfade_sounds(override_context=None, execution_context=None, undo=None):
233
+ def crossfade_sounds(
234
+ override_context: typing.Union[dict, bpy.types.Context] = None,
235
+ execution_context: typing.Union[str, int] = None,
236
+ undo: bool = None,
237
+ ):
236
238
  """Do cross-fading volume animation of two selected sound strips
237
239
 
238
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
239
- :type execution_context: typing.Optional[typing.Union[int, str]]
240
- :type undo: typing.Optional[bool]
240
+ :type override_context: typing.Union[dict, bpy.types.Context]
241
+ :type execution_context: typing.Union[str, int]
242
+ :type undo: bool
241
243
  """
242
244
 
243
245
  ...
244
246
 
245
247
  def cursor_set(
246
- override_context=None,
247
- execution_context=None,
248
- undo=None,
249
- *,
250
- location: typing.Optional[typing.Any] = (0.0, 0.0),
248
+ override_context: typing.Union[dict, bpy.types.Context] = None,
249
+ execution_context: typing.Union[str, int] = None,
250
+ undo: bool = None,
251
+ location: typing.Any = (0.0, 0.0),
251
252
  ):
252
253
  """Set 2D cursor location
253
254
 
254
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
255
- :type execution_context: typing.Optional[typing.Union[int, str]]
256
- :type undo: typing.Optional[bool]
255
+ :type override_context: typing.Union[dict, bpy.types.Context]
256
+ :type execution_context: typing.Union[str, int]
257
+ :type undo: bool
257
258
  :param location: Location, Cursor location in normalized preview coordinates
258
- :type location: typing.Optional[typing.Any]
259
+ :type location: typing.Any
259
260
  """
260
261
 
261
262
  ...
262
263
 
263
264
  def deinterlace_selected_movies(
264
- override_context=None, execution_context=None, undo=None
265
+ override_context: typing.Union[dict, bpy.types.Context] = None,
266
+ execution_context: typing.Union[str, int] = None,
267
+ undo: bool = None,
265
268
  ):
266
269
  """Deinterlace all selected movie sources
267
270
 
268
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
269
- :type execution_context: typing.Optional[typing.Union[int, str]]
270
- :type undo: typing.Optional[bool]
271
+ :type override_context: typing.Union[dict, bpy.types.Context]
272
+ :type execution_context: typing.Union[str, int]
273
+ :type undo: bool
271
274
  """
272
275
 
273
276
  ...
274
277
 
275
278
  def delete(
276
- override_context=None,
277
- execution_context=None,
278
- undo=None,
279
- *,
280
- delete_data: typing.Optional[typing.Union[bool, typing.Any]] = False,
281
- use_retiming_mode: typing.Optional[typing.Union[bool, typing.Any]] = False,
279
+ override_context: typing.Union[dict, bpy.types.Context] = None,
280
+ execution_context: typing.Union[str, int] = None,
281
+ undo: bool = None,
282
+ delete_data: typing.Union[bool, typing.Any] = False,
283
+ use_retiming_mode: typing.Union[bool, typing.Any] = False,
282
284
  ):
283
285
  """Delete selected strips from the sequencer
284
286
 
285
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
286
- :type execution_context: typing.Optional[typing.Union[int, str]]
287
- :type undo: typing.Optional[bool]
287
+ :type override_context: typing.Union[dict, bpy.types.Context]
288
+ :type execution_context: typing.Union[str, int]
289
+ :type undo: bool
288
290
  :param delete_data: Delete Data, After removing the Strip, delete the associated data also
289
- :type delete_data: typing.Optional[typing.Union[bool, typing.Any]]
291
+ :type delete_data: typing.Union[bool, typing.Any]
290
292
  :param use_retiming_mode: Use Retiming Data, Operate on retiming data instead of strips
291
- :type use_retiming_mode: typing.Optional[typing.Union[bool, typing.Any]]
293
+ :type use_retiming_mode: typing.Union[bool, typing.Any]
292
294
  """
293
295
 
294
296
  ...
295
297
 
296
- def duplicate(override_context=None, execution_context=None, undo=None):
298
+ def duplicate(
299
+ override_context: typing.Union[dict, bpy.types.Context] = None,
300
+ execution_context: typing.Union[str, int] = None,
301
+ undo: bool = None,
302
+ ):
297
303
  """Duplicate the selected strips
298
304
 
299
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
300
- :type execution_context: typing.Optional[typing.Union[int, str]]
301
- :type undo: typing.Optional[bool]
305
+ :type override_context: typing.Union[dict, bpy.types.Context]
306
+ :type execution_context: typing.Union[str, int]
307
+ :type undo: bool
302
308
  """
303
309
 
304
310
  ...
305
311
 
306
312
  def duplicate_move(
307
- override_context=None,
308
- execution_context=None,
309
- undo=None,
310
- *,
311
- SEQUENCER_OT_duplicate: typing.Optional["duplicate"] = None,
312
- TRANSFORM_OT_seq_slide: typing.Optional["bpy.ops.transform.seq_slide"] = None,
313
+ override_context: typing.Union[dict, bpy.types.Context] = None,
314
+ execution_context: typing.Union[str, int] = None,
315
+ undo: bool = None,
316
+ SEQUENCER_OT_duplicate: duplicate = None,
317
+ TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide = None,
313
318
  ):
314
319
  """Duplicate selected strips and move them
315
320
 
316
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
317
- :type execution_context: typing.Optional[typing.Union[int, str]]
318
- :type undo: typing.Optional[bool]
321
+ :type override_context: typing.Union[dict, bpy.types.Context]
322
+ :type execution_context: typing.Union[str, int]
323
+ :type undo: bool
319
324
  :param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
320
- :type SEQUENCER_OT_duplicate: typing.Optional['duplicate']
325
+ :type SEQUENCER_OT_duplicate: duplicate
321
326
  :param TRANSFORM_OT_seq_slide: Sequence Slide, Slide a sequence strip in time
322
- :type TRANSFORM_OT_seq_slide: typing.Optional['bpy.ops.transform.seq_slide']
327
+ :type TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide
323
328
  """
324
329
 
325
330
  ...
326
331
 
327
332
  def effect_strip_add(
328
- override_context=None,
329
- execution_context=None,
330
- undo=None,
331
- *,
332
- type: typing.Optional[typing.Any] = "CROSS",
333
- frame_start: typing.Optional[typing.Any] = 0,
334
- frame_end: typing.Optional[typing.Any] = 0,
335
- channel: typing.Optional[typing.Any] = 1,
336
- replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
337
- overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
338
- overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]] = False,
339
- color: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
333
+ override_context: typing.Union[dict, bpy.types.Context] = None,
334
+ execution_context: typing.Union[str, int] = None,
335
+ undo: bool = None,
336
+ type: typing.Any = "CROSS",
337
+ frame_start: typing.Any = 0,
338
+ frame_end: typing.Any = 0,
339
+ channel: typing.Any = 1,
340
+ replace_sel: typing.Union[bool, typing.Any] = True,
341
+ overlap: typing.Union[bool, typing.Any] = False,
342
+ overlap_shuffle_override: typing.Union[bool, typing.Any] = False,
343
+ color: typing.Any = (0.0, 0.0, 0.0),
340
344
  ):
341
345
  """Add an effect to the sequencer, most are applied on top of existing strips
342
346
 
343
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
344
- :type execution_context: typing.Optional[typing.Union[int, str]]
345
- :type undo: typing.Optional[bool]
347
+ :type override_context: typing.Union[dict, bpy.types.Context]
348
+ :type execution_context: typing.Union[str, int]
349
+ :type undo: bool
346
350
  :param type: Type, Sequencer effect type
347
351
 
348
352
  CROSS
@@ -398,131 +402,129 @@ def effect_strip_add(
398
402
 
399
403
  COLORMIX
400
404
  Color Mix.
401
- :type type: typing.Optional[typing.Any]
405
+ :type type: typing.Any
402
406
  :param frame_start: Start Frame, Start frame of the sequence strip
403
- :type frame_start: typing.Optional[typing.Any]
407
+ :type frame_start: typing.Any
404
408
  :param frame_end: End Frame, End frame for the color strip
405
- :type frame_end: typing.Optional[typing.Any]
409
+ :type frame_end: typing.Any
406
410
  :param channel: Channel, Channel to place this strip into
407
- :type channel: typing.Optional[typing.Any]
411
+ :type channel: typing.Any
408
412
  :param replace_sel: Replace Selection, Replace the current selection
409
- :type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
413
+ :type replace_sel: typing.Union[bool, typing.Any]
410
414
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
411
- :type overlap: typing.Optional[typing.Union[bool, typing.Any]]
415
+ :type overlap: typing.Union[bool, typing.Any]
412
416
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
413
- :type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
417
+ :type overlap_shuffle_override: typing.Union[bool, typing.Any]
414
418
  :param color: Color, Initialize the strip with this color
415
- :type color: typing.Optional[typing.Any]
419
+ :type color: typing.Any
416
420
  """
417
421
 
418
422
  ...
419
423
 
420
424
  def enable_proxies(
421
- override_context=None,
422
- execution_context=None,
423
- undo=None,
424
- *,
425
- proxy_25: typing.Optional[typing.Union[bool, typing.Any]] = False,
426
- proxy_50: typing.Optional[typing.Union[bool, typing.Any]] = False,
427
- proxy_75: typing.Optional[typing.Union[bool, typing.Any]] = False,
428
- proxy_100: typing.Optional[typing.Union[bool, typing.Any]] = False,
429
- overwrite: typing.Optional[typing.Union[bool, typing.Any]] = False,
425
+ override_context: typing.Union[dict, bpy.types.Context] = None,
426
+ execution_context: typing.Union[str, int] = None,
427
+ undo: bool = None,
428
+ proxy_25: typing.Union[bool, typing.Any] = False,
429
+ proxy_50: typing.Union[bool, typing.Any] = False,
430
+ proxy_75: typing.Union[bool, typing.Any] = False,
431
+ proxy_100: typing.Union[bool, typing.Any] = False,
432
+ overwrite: typing.Union[bool, typing.Any] = False,
430
433
  ):
431
434
  """Enable selected proxies on all selected Movie and Image strips
432
435
 
433
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
434
- :type execution_context: typing.Optional[typing.Union[int, str]]
435
- :type undo: typing.Optional[bool]
436
+ :type override_context: typing.Union[dict, bpy.types.Context]
437
+ :type execution_context: typing.Union[str, int]
438
+ :type undo: bool
436
439
  :param proxy_25: 25%
437
- :type proxy_25: typing.Optional[typing.Union[bool, typing.Any]]
440
+ :type proxy_25: typing.Union[bool, typing.Any]
438
441
  :param proxy_50: 50%
439
- :type proxy_50: typing.Optional[typing.Union[bool, typing.Any]]
442
+ :type proxy_50: typing.Union[bool, typing.Any]
440
443
  :param proxy_75: 75%
441
- :type proxy_75: typing.Optional[typing.Union[bool, typing.Any]]
444
+ :type proxy_75: typing.Union[bool, typing.Any]
442
445
  :param proxy_100: 100%
443
- :type proxy_100: typing.Optional[typing.Union[bool, typing.Any]]
446
+ :type proxy_100: typing.Union[bool, typing.Any]
444
447
  :param overwrite: Overwrite
445
- :type overwrite: typing.Optional[typing.Union[bool, typing.Any]]
448
+ :type overwrite: typing.Union[bool, typing.Any]
446
449
  """
447
450
 
448
451
  ...
449
452
 
450
453
  def export_subtitles(
451
- override_context=None,
452
- execution_context=None,
453
- undo=None,
454
- *,
454
+ override_context: typing.Union[dict, bpy.types.Context] = None,
455
+ execution_context: typing.Union[str, int] = None,
456
+ undo: bool = None,
455
457
  filepath: typing.Union[str, typing.Any] = "",
456
- hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
457
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = True,
458
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
459
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
460
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
461
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
462
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
463
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
464
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
465
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
466
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
467
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
468
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
469
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
470
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
471
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
472
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
473
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
474
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
475
- filemode: typing.Optional[typing.Any] = 8,
476
- display_type: typing.Optional[typing.Any] = "DEFAULT",
477
- sort_method: typing.Optional[typing.Union[int, str, typing.Any]] = "",
458
+ hide_props_region: typing.Union[bool, typing.Any] = True,
459
+ check_existing: typing.Union[bool, typing.Any] = True,
460
+ filter_blender: typing.Union[bool, typing.Any] = False,
461
+ filter_backup: typing.Union[bool, typing.Any] = False,
462
+ filter_image: typing.Union[bool, typing.Any] = False,
463
+ filter_movie: typing.Union[bool, typing.Any] = False,
464
+ filter_python: typing.Union[bool, typing.Any] = False,
465
+ filter_font: typing.Union[bool, typing.Any] = False,
466
+ filter_sound: typing.Union[bool, typing.Any] = False,
467
+ filter_text: typing.Union[bool, typing.Any] = False,
468
+ filter_archive: typing.Union[bool, typing.Any] = False,
469
+ filter_btx: typing.Union[bool, typing.Any] = False,
470
+ filter_collada: typing.Union[bool, typing.Any] = False,
471
+ filter_alembic: typing.Union[bool, typing.Any] = False,
472
+ filter_usd: typing.Union[bool, typing.Any] = False,
473
+ filter_obj: typing.Union[bool, typing.Any] = False,
474
+ filter_volume: typing.Union[bool, typing.Any] = False,
475
+ filter_folder: typing.Union[bool, typing.Any] = True,
476
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
477
+ filemode: typing.Any = 8,
478
+ display_type: typing.Any = "DEFAULT",
479
+ sort_method: typing.Union[str, int, typing.Any] = "",
478
480
  ):
479
481
  """Export .srt file containing text strips
480
482
 
481
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
482
- :type execution_context: typing.Optional[typing.Union[int, str]]
483
- :type undo: typing.Optional[bool]
483
+ :type override_context: typing.Union[dict, bpy.types.Context]
484
+ :type execution_context: typing.Union[str, int]
485
+ :type undo: bool
484
486
  :param filepath: File Path, Path to file
485
487
  :type filepath: typing.Union[str, typing.Any]
486
488
  :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
487
- :type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
489
+ :type hide_props_region: typing.Union[bool, typing.Any]
488
490
  :param check_existing: Check Existing, Check and warn on overwriting existing files
489
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
491
+ :type check_existing: typing.Union[bool, typing.Any]
490
492
  :param filter_blender: Filter .blend files
491
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
493
+ :type filter_blender: typing.Union[bool, typing.Any]
492
494
  :param filter_backup: Filter .blend files
493
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
495
+ :type filter_backup: typing.Union[bool, typing.Any]
494
496
  :param filter_image: Filter image files
495
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
497
+ :type filter_image: typing.Union[bool, typing.Any]
496
498
  :param filter_movie: Filter movie files
497
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
499
+ :type filter_movie: typing.Union[bool, typing.Any]
498
500
  :param filter_python: Filter Python files
499
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
501
+ :type filter_python: typing.Union[bool, typing.Any]
500
502
  :param filter_font: Filter font files
501
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
503
+ :type filter_font: typing.Union[bool, typing.Any]
502
504
  :param filter_sound: Filter sound files
503
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
505
+ :type filter_sound: typing.Union[bool, typing.Any]
504
506
  :param filter_text: Filter text files
505
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
507
+ :type filter_text: typing.Union[bool, typing.Any]
506
508
  :param filter_archive: Filter archive files
507
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
509
+ :type filter_archive: typing.Union[bool, typing.Any]
508
510
  :param filter_btx: Filter btx files
509
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
511
+ :type filter_btx: typing.Union[bool, typing.Any]
510
512
  :param filter_collada: Filter COLLADA files
511
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
513
+ :type filter_collada: typing.Union[bool, typing.Any]
512
514
  :param filter_alembic: Filter Alembic files
513
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
515
+ :type filter_alembic: typing.Union[bool, typing.Any]
514
516
  :param filter_usd: Filter USD files
515
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
517
+ :type filter_usd: typing.Union[bool, typing.Any]
516
518
  :param filter_obj: Filter OBJ files
517
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
519
+ :type filter_obj: typing.Union[bool, typing.Any]
518
520
  :param filter_volume: Filter OpenVDB volume files
519
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
521
+ :type filter_volume: typing.Union[bool, typing.Any]
520
522
  :param filter_folder: Filter folders
521
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
523
+ :type filter_folder: typing.Union[bool, typing.Any]
522
524
  :param filter_blenlib: Filter Blender IDs
523
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
525
+ :type filter_blenlib: typing.Union[bool, typing.Any]
524
526
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
525
- :type filemode: typing.Optional[typing.Any]
527
+ :type filemode: typing.Any
526
528
  :param display_type: Display Type
527
529
 
528
530
  DEFAULT
@@ -536,28 +538,27 @@ def export_subtitles(
536
538
 
537
539
  THUMBNAIL
538
540
  Thumbnails -- Display files as thumbnails.
539
- :type display_type: typing.Optional[typing.Any]
541
+ :type display_type: typing.Any
540
542
  :param sort_method: File sorting mode
541
- :type sort_method: typing.Optional[typing.Union[int, str, typing.Any]]
543
+ :type sort_method: typing.Union[str, int, typing.Any]
542
544
  """
543
545
 
544
546
  ...
545
547
 
546
548
  def fades_add(
547
- override_context=None,
548
- execution_context=None,
549
- undo=None,
550
- *,
551
- duration_seconds: typing.Optional[typing.Any] = 1.0,
552
- type: typing.Optional[typing.Any] = "IN_OUT",
549
+ override_context: typing.Union[dict, bpy.types.Context] = None,
550
+ execution_context: typing.Union[str, int] = None,
551
+ undo: bool = None,
552
+ duration_seconds: typing.Any = 1.0,
553
+ type: typing.Any = "IN_OUT",
553
554
  ):
554
555
  """Adds or updates a fade animation for either visual or audio strips
555
556
 
556
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
557
- :type execution_context: typing.Optional[typing.Union[int, str]]
558
- :type undo: typing.Optional[bool]
557
+ :type override_context: typing.Union[dict, bpy.types.Context]
558
+ :type execution_context: typing.Union[str, int]
559
+ :type undo: bool
559
560
  :param duration_seconds: Fade Duration, Duration of the fade in seconds
560
- :type duration_seconds: typing.Optional[typing.Any]
561
+ :type duration_seconds: typing.Any
561
562
  :param type: Fade Type, Fade in, out, both in and out, to, or from the current frame. Default is both in and out
562
563
 
563
564
  IN_OUT
@@ -574,153 +575,152 @@ def fades_add(
574
575
 
575
576
  CURSOR_TO
576
577
  To Current Frame -- Fade from the start of sequences under the time cursor to the current frame.
577
- :type type: typing.Optional[typing.Any]
578
+ :type type: typing.Any
578
579
  """
579
580
 
580
581
  ...
581
582
 
582
- def fades_clear(override_context=None, execution_context=None, undo=None):
583
+ def fades_clear(
584
+ override_context: typing.Union[dict, bpy.types.Context] = None,
585
+ execution_context: typing.Union[str, int] = None,
586
+ undo: bool = None,
587
+ ):
583
588
  """Removes fade animation from selected sequences
584
589
 
585
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
586
- :type execution_context: typing.Optional[typing.Union[int, str]]
587
- :type undo: typing.Optional[bool]
590
+ :type override_context: typing.Union[dict, bpy.types.Context]
591
+ :type execution_context: typing.Union[str, int]
592
+ :type undo: bool
588
593
  """
589
594
 
590
595
  ...
591
596
 
592
597
  def gap_insert(
593
- override_context=None,
594
- execution_context=None,
595
- undo=None,
596
- *,
597
- frames: typing.Optional[typing.Any] = 10,
598
+ override_context: typing.Union[dict, bpy.types.Context] = None,
599
+ execution_context: typing.Union[str, int] = None,
600
+ undo: bool = None,
601
+ frames: typing.Any = 10,
598
602
  ):
599
603
  """Insert gap at current frame to first strips at the right, independent of selection or locked state of strips
600
604
 
601
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
602
- :type execution_context: typing.Optional[typing.Union[int, str]]
603
- :type undo: typing.Optional[bool]
605
+ :type override_context: typing.Union[dict, bpy.types.Context]
606
+ :type execution_context: typing.Union[str, int]
607
+ :type undo: bool
604
608
  :param frames: Frames, Frames to insert after current strip
605
- :type frames: typing.Optional[typing.Any]
609
+ :type frames: typing.Any
606
610
  """
607
611
 
608
612
  ...
609
613
 
610
614
  def gap_remove(
611
- override_context=None,
612
- execution_context=None,
613
- undo=None,
614
- *,
615
- all: typing.Optional[typing.Union[bool, typing.Any]] = False,
615
+ override_context: typing.Union[dict, bpy.types.Context] = None,
616
+ execution_context: typing.Union[str, int] = None,
617
+ undo: bool = None,
618
+ all: typing.Union[bool, typing.Any] = False,
616
619
  ):
617
620
  """Remove gap at current frame to first strip at the right, independent of selection or locked state of strips
618
621
 
619
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
620
- :type execution_context: typing.Optional[typing.Union[int, str]]
621
- :type undo: typing.Optional[bool]
622
+ :type override_context: typing.Union[dict, bpy.types.Context]
623
+ :type execution_context: typing.Union[str, int]
624
+ :type undo: bool
622
625
  :param all: All Gaps, Do all gaps to right of current frame
623
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
626
+ :type all: typing.Union[bool, typing.Any]
624
627
  """
625
628
 
626
629
  ...
627
630
 
628
631
  def image_strip_add(
629
- override_context=None,
630
- execution_context=None,
631
- undo=None,
632
- *,
632
+ override_context: typing.Union[dict, bpy.types.Context] = None,
633
+ execution_context: typing.Union[str, int] = None,
634
+ undo: bool = None,
633
635
  directory: typing.Union[str, typing.Any] = "",
634
- files: typing.Optional[
635
- bpy.types.bpy_prop_collection["bpy.types.OperatorFileListElement"]
636
- ] = None,
637
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
638
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
639
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
640
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = True,
641
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
642
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
643
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
644
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
645
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
646
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
647
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
648
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
649
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
650
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
651
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
652
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
653
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
654
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
655
- filemode: typing.Optional[typing.Any] = 9,
656
- relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
657
- show_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
658
- use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
659
- display_type: typing.Optional[typing.Any] = "DEFAULT",
660
- sort_method: typing.Optional[typing.Any] = "",
661
- frame_start: typing.Optional[typing.Any] = 0,
662
- frame_end: typing.Optional[typing.Any] = 0,
663
- channel: typing.Optional[typing.Any] = 1,
664
- replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
665
- overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
666
- overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]] = False,
667
- fit_method: typing.Optional[typing.Any] = "FIT",
668
- set_view_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
669
- use_placeholders: typing.Optional[typing.Union[bool, typing.Any]] = False,
636
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
637
+ check_existing: typing.Union[bool, typing.Any] = False,
638
+ filter_blender: typing.Union[bool, typing.Any] = False,
639
+ filter_backup: typing.Union[bool, typing.Any] = False,
640
+ filter_image: typing.Union[bool, typing.Any] = True,
641
+ filter_movie: typing.Union[bool, typing.Any] = False,
642
+ filter_python: typing.Union[bool, typing.Any] = False,
643
+ filter_font: typing.Union[bool, typing.Any] = False,
644
+ filter_sound: typing.Union[bool, typing.Any] = False,
645
+ filter_text: typing.Union[bool, typing.Any] = False,
646
+ filter_archive: typing.Union[bool, typing.Any] = False,
647
+ filter_btx: typing.Union[bool, typing.Any] = False,
648
+ filter_collada: typing.Union[bool, typing.Any] = False,
649
+ filter_alembic: typing.Union[bool, typing.Any] = False,
650
+ filter_usd: typing.Union[bool, typing.Any] = False,
651
+ filter_obj: typing.Union[bool, typing.Any] = False,
652
+ filter_volume: typing.Union[bool, typing.Any] = False,
653
+ filter_folder: typing.Union[bool, typing.Any] = True,
654
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
655
+ filemode: typing.Any = 9,
656
+ relative_path: typing.Union[bool, typing.Any] = True,
657
+ show_multiview: typing.Union[bool, typing.Any] = False,
658
+ use_multiview: typing.Union[bool, typing.Any] = False,
659
+ display_type: typing.Any = "DEFAULT",
660
+ sort_method: typing.Any = "",
661
+ frame_start: typing.Any = 0,
662
+ frame_end: typing.Any = 0,
663
+ channel: typing.Any = 1,
664
+ replace_sel: typing.Union[bool, typing.Any] = True,
665
+ overlap: typing.Union[bool, typing.Any] = False,
666
+ overlap_shuffle_override: typing.Union[bool, typing.Any] = False,
667
+ fit_method: typing.Any = "FIT",
668
+ set_view_transform: typing.Union[bool, typing.Any] = True,
669
+ use_placeholders: typing.Union[bool, typing.Any] = False,
670
670
  ):
671
671
  """Add an image or image sequence to the sequencer
672
672
 
673
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
674
- :type execution_context: typing.Optional[typing.Union[int, str]]
675
- :type undo: typing.Optional[bool]
673
+ :type override_context: typing.Union[dict, bpy.types.Context]
674
+ :type execution_context: typing.Union[str, int]
675
+ :type undo: bool
676
676
  :param directory: Directory, Directory of the file
677
677
  :type directory: typing.Union[str, typing.Any]
678
678
  :param files: Files
679
- :type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
679
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
680
680
  :param check_existing: Check Existing, Check and warn on overwriting existing files
681
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
681
+ :type check_existing: typing.Union[bool, typing.Any]
682
682
  :param filter_blender: Filter .blend files
683
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
683
+ :type filter_blender: typing.Union[bool, typing.Any]
684
684
  :param filter_backup: Filter .blend files
685
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
685
+ :type filter_backup: typing.Union[bool, typing.Any]
686
686
  :param filter_image: Filter image files
687
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
687
+ :type filter_image: typing.Union[bool, typing.Any]
688
688
  :param filter_movie: Filter movie files
689
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
689
+ :type filter_movie: typing.Union[bool, typing.Any]
690
690
  :param filter_python: Filter Python files
691
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
691
+ :type filter_python: typing.Union[bool, typing.Any]
692
692
  :param filter_font: Filter font files
693
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
693
+ :type filter_font: typing.Union[bool, typing.Any]
694
694
  :param filter_sound: Filter sound files
695
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
695
+ :type filter_sound: typing.Union[bool, typing.Any]
696
696
  :param filter_text: Filter text files
697
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
697
+ :type filter_text: typing.Union[bool, typing.Any]
698
698
  :param filter_archive: Filter archive files
699
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
699
+ :type filter_archive: typing.Union[bool, typing.Any]
700
700
  :param filter_btx: Filter btx files
701
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
701
+ :type filter_btx: typing.Union[bool, typing.Any]
702
702
  :param filter_collada: Filter COLLADA files
703
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
703
+ :type filter_collada: typing.Union[bool, typing.Any]
704
704
  :param filter_alembic: Filter Alembic files
705
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
705
+ :type filter_alembic: typing.Union[bool, typing.Any]
706
706
  :param filter_usd: Filter USD files
707
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
707
+ :type filter_usd: typing.Union[bool, typing.Any]
708
708
  :param filter_obj: Filter OBJ files
709
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
709
+ :type filter_obj: typing.Union[bool, typing.Any]
710
710
  :param filter_volume: Filter OpenVDB volume files
711
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
711
+ :type filter_volume: typing.Union[bool, typing.Any]
712
712
  :param filter_folder: Filter folders
713
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
713
+ :type filter_folder: typing.Union[bool, typing.Any]
714
714
  :param filter_blenlib: Filter Blender IDs
715
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
715
+ :type filter_blenlib: typing.Union[bool, typing.Any]
716
716
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
717
- :type filemode: typing.Optional[typing.Any]
717
+ :type filemode: typing.Any
718
718
  :param relative_path: Relative Path, Select the file relative to the blend file
719
- :type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
719
+ :type relative_path: typing.Union[bool, typing.Any]
720
720
  :param show_multiview: Enable Multi-View
721
- :type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
721
+ :type show_multiview: typing.Union[bool, typing.Any]
722
722
  :param use_multiview: Use Multi-View
723
- :type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
723
+ :type use_multiview: typing.Union[bool, typing.Any]
724
724
  :param display_type: Display Type
725
725
 
726
726
  DEFAULT
@@ -734,7 +734,7 @@ def image_strip_add(
734
734
 
735
735
  THUMBNAIL
736
736
  Thumbnails -- Display files as thumbnails.
737
- :type display_type: typing.Optional[typing.Any]
737
+ :type display_type: typing.Any
738
738
  :param sort_method: File sorting mode
739
739
 
740
740
  DEFAULT
@@ -751,19 +751,19 @@ def image_strip_add(
751
751
 
752
752
  FILE_SORT_SIZE
753
753
  Size -- Sort files by size.
754
- :type sort_method: typing.Optional[typing.Any]
754
+ :type sort_method: typing.Any
755
755
  :param frame_start: Start Frame, Start frame of the sequence strip
756
- :type frame_start: typing.Optional[typing.Any]
756
+ :type frame_start: typing.Any
757
757
  :param frame_end: End Frame, End frame for the color strip
758
- :type frame_end: typing.Optional[typing.Any]
758
+ :type frame_end: typing.Any
759
759
  :param channel: Channel, Channel to place this strip into
760
- :type channel: typing.Optional[typing.Any]
760
+ :type channel: typing.Any
761
761
  :param replace_sel: Replace Selection, Replace the current selection
762
- :type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
762
+ :type replace_sel: typing.Union[bool, typing.Any]
763
763
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
764
- :type overlap: typing.Optional[typing.Union[bool, typing.Any]]
764
+ :type overlap: typing.Union[bool, typing.Any]
765
765
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
766
- :type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
766
+ :type overlap_shuffle_override: typing.Union[bool, typing.Any]
767
767
  :param fit_method: Fit Method, Scale fit method
768
768
 
769
769
  FIT
@@ -777,206 +777,217 @@ def image_strip_add(
777
777
 
778
778
  ORIGINAL
779
779
  Use Original Size -- Keep image at its original size.
780
- :type fit_method: typing.Optional[typing.Any]
780
+ :type fit_method: typing.Any
781
781
  :param set_view_transform: Set View Transform, Set appropriate view transform based on media color space
782
- :type set_view_transform: typing.Optional[typing.Union[bool, typing.Any]]
782
+ :type set_view_transform: typing.Union[bool, typing.Any]
783
783
  :param use_placeholders: Use Placeholders, Use placeholders for missing frames of the strip
784
- :type use_placeholders: typing.Optional[typing.Union[bool, typing.Any]]
784
+ :type use_placeholders: typing.Union[bool, typing.Any]
785
785
  """
786
786
 
787
787
  ...
788
788
 
789
789
  def images_separate(
790
- override_context=None,
791
- execution_context=None,
792
- undo=None,
793
- *,
794
- length: typing.Optional[typing.Any] = 1,
790
+ override_context: typing.Union[dict, bpy.types.Context] = None,
791
+ execution_context: typing.Union[str, int] = None,
792
+ undo: bool = None,
793
+ length: typing.Any = 1,
795
794
  ):
796
795
  """On image sequence strips, it returns a strip for each image
797
796
 
798
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
799
- :type execution_context: typing.Optional[typing.Union[int, str]]
800
- :type undo: typing.Optional[bool]
797
+ :type override_context: typing.Union[dict, bpy.types.Context]
798
+ :type execution_context: typing.Union[str, int]
799
+ :type undo: bool
801
800
  :param length: Length, Length of each frame
802
- :type length: typing.Optional[typing.Any]
801
+ :type length: typing.Any
803
802
  """
804
803
 
805
804
  ...
806
805
 
807
- def lock(override_context=None, execution_context=None, undo=None):
806
+ def lock(
807
+ override_context: typing.Union[dict, bpy.types.Context] = None,
808
+ execution_context: typing.Union[str, int] = None,
809
+ undo: bool = None,
810
+ ):
808
811
  """Lock strips so they can't be transformed
809
812
 
810
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
811
- :type execution_context: typing.Optional[typing.Union[int, str]]
812
- :type undo: typing.Optional[bool]
813
+ :type override_context: typing.Union[dict, bpy.types.Context]
814
+ :type execution_context: typing.Union[str, int]
815
+ :type undo: bool
813
816
  """
814
817
 
815
818
  ...
816
819
 
817
820
  def mask_strip_add(
818
- override_context=None,
819
- execution_context=None,
820
- undo=None,
821
- *,
822
- frame_start: typing.Optional[typing.Any] = 0,
823
- channel: typing.Optional[typing.Any] = 1,
824
- replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
825
- overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
826
- overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]] = False,
827
- mask: typing.Optional[typing.Union[int, str, typing.Any]] = "",
821
+ override_context: typing.Union[dict, bpy.types.Context] = None,
822
+ execution_context: typing.Union[str, int] = None,
823
+ undo: bool = None,
824
+ frame_start: typing.Any = 0,
825
+ channel: typing.Any = 1,
826
+ replace_sel: typing.Union[bool, typing.Any] = True,
827
+ overlap: typing.Union[bool, typing.Any] = False,
828
+ overlap_shuffle_override: typing.Union[bool, typing.Any] = False,
829
+ mask: typing.Union[str, int, typing.Any] = "",
828
830
  ):
829
831
  """Add a mask strip to the sequencer
830
832
 
831
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
832
- :type execution_context: typing.Optional[typing.Union[int, str]]
833
- :type undo: typing.Optional[bool]
833
+ :type override_context: typing.Union[dict, bpy.types.Context]
834
+ :type execution_context: typing.Union[str, int]
835
+ :type undo: bool
834
836
  :param frame_start: Start Frame, Start frame of the sequence strip
835
- :type frame_start: typing.Optional[typing.Any]
837
+ :type frame_start: typing.Any
836
838
  :param channel: Channel, Channel to place this strip into
837
- :type channel: typing.Optional[typing.Any]
839
+ :type channel: typing.Any
838
840
  :param replace_sel: Replace Selection, Replace the current selection
839
- :type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
841
+ :type replace_sel: typing.Union[bool, typing.Any]
840
842
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
841
- :type overlap: typing.Optional[typing.Union[bool, typing.Any]]
843
+ :type overlap: typing.Union[bool, typing.Any]
842
844
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
843
- :type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
845
+ :type overlap_shuffle_override: typing.Union[bool, typing.Any]
844
846
  :param mask: Mask
845
- :type mask: typing.Optional[typing.Union[int, str, typing.Any]]
847
+ :type mask: typing.Union[str, int, typing.Any]
846
848
  """
847
849
 
848
850
  ...
849
851
 
850
- def meta_make(override_context=None, execution_context=None, undo=None):
852
+ def meta_make(
853
+ override_context: typing.Union[dict, bpy.types.Context] = None,
854
+ execution_context: typing.Union[str, int] = None,
855
+ undo: bool = None,
856
+ ):
851
857
  """Group selected strips into a meta-strip
852
858
 
853
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
854
- :type execution_context: typing.Optional[typing.Union[int, str]]
855
- :type undo: typing.Optional[bool]
859
+ :type override_context: typing.Union[dict, bpy.types.Context]
860
+ :type execution_context: typing.Union[str, int]
861
+ :type undo: bool
856
862
  """
857
863
 
858
864
  ...
859
865
 
860
- def meta_separate(override_context=None, execution_context=None, undo=None):
866
+ def meta_separate(
867
+ override_context: typing.Union[dict, bpy.types.Context] = None,
868
+ execution_context: typing.Union[str, int] = None,
869
+ undo: bool = None,
870
+ ):
861
871
  """Put the contents of a meta-strip back in the sequencer
862
872
 
863
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
864
- :type execution_context: typing.Optional[typing.Union[int, str]]
865
- :type undo: typing.Optional[bool]
873
+ :type override_context: typing.Union[dict, bpy.types.Context]
874
+ :type execution_context: typing.Union[str, int]
875
+ :type undo: bool
866
876
  """
867
877
 
868
878
  ...
869
879
 
870
- def meta_toggle(override_context=None, execution_context=None, undo=None):
880
+ def meta_toggle(
881
+ override_context: typing.Union[dict, bpy.types.Context] = None,
882
+ execution_context: typing.Union[str, int] = None,
883
+ undo: bool = None,
884
+ ):
871
885
  """Toggle a meta-strip (to edit enclosed strips)
872
886
 
873
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
874
- :type execution_context: typing.Optional[typing.Union[int, str]]
875
- :type undo: typing.Optional[bool]
887
+ :type override_context: typing.Union[dict, bpy.types.Context]
888
+ :type execution_context: typing.Union[str, int]
889
+ :type undo: bool
876
890
  """
877
891
 
878
892
  ...
879
893
 
880
894
  def movie_strip_add(
881
- override_context=None,
882
- execution_context=None,
883
- undo=None,
884
- *,
895
+ override_context: typing.Union[dict, bpy.types.Context] = None,
896
+ execution_context: typing.Union[str, int] = None,
897
+ undo: bool = None,
885
898
  filepath: typing.Union[str, typing.Any] = "",
886
899
  directory: typing.Union[str, typing.Any] = "",
887
- files: typing.Optional[
888
- bpy.types.bpy_prop_collection["bpy.types.OperatorFileListElement"]
889
- ] = None,
890
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
891
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
892
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
893
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
894
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = True,
895
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
896
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
897
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
898
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
899
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
900
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
901
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
902
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
903
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
904
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
905
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
906
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
907
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
908
- filemode: typing.Optional[typing.Any] = 9,
909
- relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
910
- show_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
911
- use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
912
- display_type: typing.Optional[typing.Any] = "DEFAULT",
913
- sort_method: typing.Optional[typing.Any] = "",
914
- frame_start: typing.Optional[typing.Any] = 0,
915
- channel: typing.Optional[typing.Any] = 1,
916
- replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
917
- overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
918
- overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]] = False,
919
- fit_method: typing.Optional[typing.Any] = "FIT",
920
- set_view_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
921
- adjust_playback_rate: typing.Optional[typing.Union[bool, typing.Any]] = True,
922
- sound: typing.Optional[typing.Union[bool, typing.Any]] = True,
923
- use_framerate: typing.Optional[typing.Union[bool, typing.Any]] = True,
900
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
901
+ check_existing: typing.Union[bool, typing.Any] = False,
902
+ filter_blender: typing.Union[bool, typing.Any] = False,
903
+ filter_backup: typing.Union[bool, typing.Any] = False,
904
+ filter_image: typing.Union[bool, typing.Any] = False,
905
+ filter_movie: typing.Union[bool, typing.Any] = True,
906
+ filter_python: typing.Union[bool, typing.Any] = False,
907
+ filter_font: typing.Union[bool, typing.Any] = False,
908
+ filter_sound: typing.Union[bool, typing.Any] = False,
909
+ filter_text: typing.Union[bool, typing.Any] = False,
910
+ filter_archive: typing.Union[bool, typing.Any] = False,
911
+ filter_btx: typing.Union[bool, typing.Any] = False,
912
+ filter_collada: typing.Union[bool, typing.Any] = False,
913
+ filter_alembic: typing.Union[bool, typing.Any] = False,
914
+ filter_usd: typing.Union[bool, typing.Any] = False,
915
+ filter_obj: typing.Union[bool, typing.Any] = False,
916
+ filter_volume: typing.Union[bool, typing.Any] = False,
917
+ filter_folder: typing.Union[bool, typing.Any] = True,
918
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
919
+ filemode: typing.Any = 9,
920
+ relative_path: typing.Union[bool, typing.Any] = True,
921
+ show_multiview: typing.Union[bool, typing.Any] = False,
922
+ use_multiview: typing.Union[bool, typing.Any] = False,
923
+ display_type: typing.Any = "DEFAULT",
924
+ sort_method: typing.Any = "",
925
+ frame_start: typing.Any = 0,
926
+ channel: typing.Any = 1,
927
+ replace_sel: typing.Union[bool, typing.Any] = True,
928
+ overlap: typing.Union[bool, typing.Any] = False,
929
+ overlap_shuffle_override: typing.Union[bool, typing.Any] = False,
930
+ fit_method: typing.Any = "FIT",
931
+ set_view_transform: typing.Union[bool, typing.Any] = True,
932
+ adjust_playback_rate: typing.Union[bool, typing.Any] = True,
933
+ sound: typing.Union[bool, typing.Any] = True,
934
+ use_framerate: typing.Union[bool, typing.Any] = True,
924
935
  ):
925
936
  """Add a movie strip to the sequencer
926
937
 
927
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
928
- :type execution_context: typing.Optional[typing.Union[int, str]]
929
- :type undo: typing.Optional[bool]
938
+ :type override_context: typing.Union[dict, bpy.types.Context]
939
+ :type execution_context: typing.Union[str, int]
940
+ :type undo: bool
930
941
  :param filepath: File Path, Path to file
931
942
  :type filepath: typing.Union[str, typing.Any]
932
943
  :param directory: Directory, Directory of the file
933
944
  :type directory: typing.Union[str, typing.Any]
934
945
  :param files: Files
935
- :type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
946
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
936
947
  :param check_existing: Check Existing, Check and warn on overwriting existing files
937
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
948
+ :type check_existing: typing.Union[bool, typing.Any]
938
949
  :param filter_blender: Filter .blend files
939
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
950
+ :type filter_blender: typing.Union[bool, typing.Any]
940
951
  :param filter_backup: Filter .blend files
941
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
952
+ :type filter_backup: typing.Union[bool, typing.Any]
942
953
  :param filter_image: Filter image files
943
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
954
+ :type filter_image: typing.Union[bool, typing.Any]
944
955
  :param filter_movie: Filter movie files
945
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
956
+ :type filter_movie: typing.Union[bool, typing.Any]
946
957
  :param filter_python: Filter Python files
947
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
958
+ :type filter_python: typing.Union[bool, typing.Any]
948
959
  :param filter_font: Filter font files
949
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
960
+ :type filter_font: typing.Union[bool, typing.Any]
950
961
  :param filter_sound: Filter sound files
951
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
962
+ :type filter_sound: typing.Union[bool, typing.Any]
952
963
  :param filter_text: Filter text files
953
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
964
+ :type filter_text: typing.Union[bool, typing.Any]
954
965
  :param filter_archive: Filter archive files
955
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
966
+ :type filter_archive: typing.Union[bool, typing.Any]
956
967
  :param filter_btx: Filter btx files
957
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
968
+ :type filter_btx: typing.Union[bool, typing.Any]
958
969
  :param filter_collada: Filter COLLADA files
959
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
970
+ :type filter_collada: typing.Union[bool, typing.Any]
960
971
  :param filter_alembic: Filter Alembic files
961
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
972
+ :type filter_alembic: typing.Union[bool, typing.Any]
962
973
  :param filter_usd: Filter USD files
963
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
974
+ :type filter_usd: typing.Union[bool, typing.Any]
964
975
  :param filter_obj: Filter OBJ files
965
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
976
+ :type filter_obj: typing.Union[bool, typing.Any]
966
977
  :param filter_volume: Filter OpenVDB volume files
967
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
978
+ :type filter_volume: typing.Union[bool, typing.Any]
968
979
  :param filter_folder: Filter folders
969
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
980
+ :type filter_folder: typing.Union[bool, typing.Any]
970
981
  :param filter_blenlib: Filter Blender IDs
971
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
982
+ :type filter_blenlib: typing.Union[bool, typing.Any]
972
983
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
973
- :type filemode: typing.Optional[typing.Any]
984
+ :type filemode: typing.Any
974
985
  :param relative_path: Relative Path, Select the file relative to the blend file
975
- :type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
986
+ :type relative_path: typing.Union[bool, typing.Any]
976
987
  :param show_multiview: Enable Multi-View
977
- :type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
988
+ :type show_multiview: typing.Union[bool, typing.Any]
978
989
  :param use_multiview: Use Multi-View
979
- :type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
990
+ :type use_multiview: typing.Union[bool, typing.Any]
980
991
  :param display_type: Display Type
981
992
 
982
993
  DEFAULT
@@ -990,7 +1001,7 @@ def movie_strip_add(
990
1001
 
991
1002
  THUMBNAIL
992
1003
  Thumbnails -- Display files as thumbnails.
993
- :type display_type: typing.Optional[typing.Any]
1004
+ :type display_type: typing.Any
994
1005
  :param sort_method: File sorting mode
995
1006
 
996
1007
  DEFAULT
@@ -1007,17 +1018,17 @@ def movie_strip_add(
1007
1018
 
1008
1019
  FILE_SORT_SIZE
1009
1020
  Size -- Sort files by size.
1010
- :type sort_method: typing.Optional[typing.Any]
1021
+ :type sort_method: typing.Any
1011
1022
  :param frame_start: Start Frame, Start frame of the sequence strip
1012
- :type frame_start: typing.Optional[typing.Any]
1023
+ :type frame_start: typing.Any
1013
1024
  :param channel: Channel, Channel to place this strip into
1014
- :type channel: typing.Optional[typing.Any]
1025
+ :type channel: typing.Any
1015
1026
  :param replace_sel: Replace Selection, Replace the current selection
1016
- :type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
1027
+ :type replace_sel: typing.Union[bool, typing.Any]
1017
1028
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
1018
- :type overlap: typing.Optional[typing.Union[bool, typing.Any]]
1029
+ :type overlap: typing.Union[bool, typing.Any]
1019
1030
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1020
- :type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
1031
+ :type overlap_shuffle_override: typing.Union[bool, typing.Any]
1021
1032
  :param fit_method: Fit Method, Scale fit method
1022
1033
 
1023
1034
  FIT
@@ -1031,395 +1042,414 @@ def movie_strip_add(
1031
1042
 
1032
1043
  ORIGINAL
1033
1044
  Use Original Size -- Keep image at its original size.
1034
- :type fit_method: typing.Optional[typing.Any]
1045
+ :type fit_method: typing.Any
1035
1046
  :param set_view_transform: Set View Transform, Set appropriate view transform based on media color space
1036
- :type set_view_transform: typing.Optional[typing.Union[bool, typing.Any]]
1047
+ :type set_view_transform: typing.Union[bool, typing.Any]
1037
1048
  :param adjust_playback_rate: Adjust Playback Rate, Play at normal speed regardless of scene FPS
1038
- :type adjust_playback_rate: typing.Optional[typing.Union[bool, typing.Any]]
1049
+ :type adjust_playback_rate: typing.Union[bool, typing.Any]
1039
1050
  :param sound: Sound, Load sound with the movie
1040
- :type sound: typing.Optional[typing.Union[bool, typing.Any]]
1051
+ :type sound: typing.Union[bool, typing.Any]
1041
1052
  :param use_framerate: Use Movie Framerate, Use framerate from the movie to keep sound and video in sync
1042
- :type use_framerate: typing.Optional[typing.Union[bool, typing.Any]]
1053
+ :type use_framerate: typing.Union[bool, typing.Any]
1043
1054
  """
1044
1055
 
1045
1056
  ...
1046
1057
 
1047
1058
  def movieclip_strip_add(
1048
- override_context=None,
1049
- execution_context=None,
1050
- undo=None,
1051
- *,
1052
- frame_start: typing.Optional[typing.Any] = 0,
1053
- channel: typing.Optional[typing.Any] = 1,
1054
- replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
1055
- overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
1056
- overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]] = False,
1057
- clip: typing.Optional[typing.Union[int, str, typing.Any]] = "",
1059
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1060
+ execution_context: typing.Union[str, int] = None,
1061
+ undo: bool = None,
1062
+ frame_start: typing.Any = 0,
1063
+ channel: typing.Any = 1,
1064
+ replace_sel: typing.Union[bool, typing.Any] = True,
1065
+ overlap: typing.Union[bool, typing.Any] = False,
1066
+ overlap_shuffle_override: typing.Union[bool, typing.Any] = False,
1067
+ clip: typing.Union[str, int, typing.Any] = "",
1058
1068
  ):
1059
1069
  """Add a movieclip strip to the sequencer
1060
1070
 
1061
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1062
- :type execution_context: typing.Optional[typing.Union[int, str]]
1063
- :type undo: typing.Optional[bool]
1071
+ :type override_context: typing.Union[dict, bpy.types.Context]
1072
+ :type execution_context: typing.Union[str, int]
1073
+ :type undo: bool
1064
1074
  :param frame_start: Start Frame, Start frame of the sequence strip
1065
- :type frame_start: typing.Optional[typing.Any]
1075
+ :type frame_start: typing.Any
1066
1076
  :param channel: Channel, Channel to place this strip into
1067
- :type channel: typing.Optional[typing.Any]
1077
+ :type channel: typing.Any
1068
1078
  :param replace_sel: Replace Selection, Replace the current selection
1069
- :type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
1079
+ :type replace_sel: typing.Union[bool, typing.Any]
1070
1080
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
1071
- :type overlap: typing.Optional[typing.Union[bool, typing.Any]]
1081
+ :type overlap: typing.Union[bool, typing.Any]
1072
1082
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1073
- :type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
1083
+ :type overlap_shuffle_override: typing.Union[bool, typing.Any]
1074
1084
  :param clip: Clip
1075
- :type clip: typing.Optional[typing.Union[int, str, typing.Any]]
1085
+ :type clip: typing.Union[str, int, typing.Any]
1076
1086
  """
1077
1087
 
1078
1088
  ...
1079
1089
 
1080
1090
  def mute(
1081
- override_context=None,
1082
- execution_context=None,
1083
- undo=None,
1084
- *,
1085
- unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
1091
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1092
+ execution_context: typing.Union[str, int] = None,
1093
+ undo: bool = None,
1094
+ unselected: typing.Union[bool, typing.Any] = False,
1086
1095
  ):
1087
1096
  """Mute (un)selected strips
1088
1097
 
1089
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1090
- :type execution_context: typing.Optional[typing.Union[int, str]]
1091
- :type undo: typing.Optional[bool]
1098
+ :type override_context: typing.Union[dict, bpy.types.Context]
1099
+ :type execution_context: typing.Union[str, int]
1100
+ :type undo: bool
1092
1101
  :param unselected: Unselected, Mute unselected rather than selected strips
1093
- :type unselected: typing.Optional[typing.Union[bool, typing.Any]]
1102
+ :type unselected: typing.Union[bool, typing.Any]
1094
1103
  """
1095
1104
 
1096
1105
  ...
1097
1106
 
1098
- def offset_clear(override_context=None, execution_context=None, undo=None):
1107
+ def offset_clear(
1108
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1109
+ execution_context: typing.Union[str, int] = None,
1110
+ undo: bool = None,
1111
+ ):
1099
1112
  """Clear strip offsets from the start and end frames
1100
1113
 
1101
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1102
- :type execution_context: typing.Optional[typing.Union[int, str]]
1103
- :type undo: typing.Optional[bool]
1114
+ :type override_context: typing.Union[dict, bpy.types.Context]
1115
+ :type execution_context: typing.Union[str, int]
1116
+ :type undo: bool
1104
1117
  """
1105
1118
 
1106
1119
  ...
1107
1120
 
1108
1121
  def paste(
1109
- override_context=None,
1110
- execution_context=None,
1111
- undo=None,
1112
- *,
1113
- keep_offset: typing.Optional[typing.Union[bool, typing.Any]] = False,
1122
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1123
+ execution_context: typing.Union[str, int] = None,
1124
+ undo: bool = None,
1125
+ keep_offset: typing.Union[bool, typing.Any] = False,
1114
1126
  ):
1115
1127
  """Paste strips from the internal clipboard
1116
1128
 
1117
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1118
- :type execution_context: typing.Optional[typing.Union[int, str]]
1119
- :type undo: typing.Optional[bool]
1129
+ :type override_context: typing.Union[dict, bpy.types.Context]
1130
+ :type execution_context: typing.Union[str, int]
1131
+ :type undo: bool
1120
1132
  :param keep_offset: Keep Offset, Keep strip offset relative to the current frame when pasting
1121
- :type keep_offset: typing.Optional[typing.Union[bool, typing.Any]]
1133
+ :type keep_offset: typing.Union[bool, typing.Any]
1122
1134
  """
1123
1135
 
1124
1136
  ...
1125
1137
 
1126
- def reassign_inputs(override_context=None, execution_context=None, undo=None):
1138
+ def reassign_inputs(
1139
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1140
+ execution_context: typing.Union[str, int] = None,
1141
+ undo: bool = None,
1142
+ ):
1127
1143
  """Reassign the inputs for the effect strip
1128
1144
 
1129
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1130
- :type execution_context: typing.Optional[typing.Union[int, str]]
1131
- :type undo: typing.Optional[bool]
1145
+ :type override_context: typing.Union[dict, bpy.types.Context]
1146
+ :type execution_context: typing.Union[str, int]
1147
+ :type undo: bool
1132
1148
  """
1133
1149
 
1134
1150
  ...
1135
1151
 
1136
- def rebuild_proxy(override_context=None, execution_context=None, undo=None):
1152
+ def rebuild_proxy(
1153
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1154
+ execution_context: typing.Union[str, int] = None,
1155
+ undo: bool = None,
1156
+ ):
1137
1157
  """Rebuild all selected proxies and timecode indices using the job system
1138
1158
 
1139
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1140
- :type execution_context: typing.Optional[typing.Union[int, str]]
1141
- :type undo: typing.Optional[bool]
1159
+ :type override_context: typing.Union[dict, bpy.types.Context]
1160
+ :type execution_context: typing.Union[str, int]
1161
+ :type undo: bool
1142
1162
  """
1143
1163
 
1144
1164
  ...
1145
1165
 
1146
- def refresh_all(override_context=None, execution_context=None, undo=None):
1166
+ def refresh_all(
1167
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1168
+ execution_context: typing.Union[str, int] = None,
1169
+ undo: bool = None,
1170
+ ):
1147
1171
  """Refresh the sequencer editor
1148
1172
 
1149
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1150
- :type execution_context: typing.Optional[typing.Union[int, str]]
1151
- :type undo: typing.Optional[bool]
1173
+ :type override_context: typing.Union[dict, bpy.types.Context]
1174
+ :type execution_context: typing.Union[str, int]
1175
+ :type undo: bool
1152
1176
  """
1153
1177
 
1154
1178
  ...
1155
1179
 
1156
1180
  def reload(
1157
- override_context=None,
1158
- execution_context=None,
1159
- undo=None,
1160
- *,
1161
- adjust_length: typing.Optional[typing.Union[bool, typing.Any]] = False,
1181
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1182
+ execution_context: typing.Union[str, int] = None,
1183
+ undo: bool = None,
1184
+ adjust_length: typing.Union[bool, typing.Any] = False,
1162
1185
  ):
1163
1186
  """Reload strips in the sequencer
1164
1187
 
1165
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1166
- :type execution_context: typing.Optional[typing.Union[int, str]]
1167
- :type undo: typing.Optional[bool]
1188
+ :type override_context: typing.Union[dict, bpy.types.Context]
1189
+ :type execution_context: typing.Union[str, int]
1190
+ :type undo: bool
1168
1191
  :param adjust_length: Adjust Length, Adjust length of strips to their data length
1169
- :type adjust_length: typing.Optional[typing.Union[bool, typing.Any]]
1192
+ :type adjust_length: typing.Union[bool, typing.Any]
1170
1193
  """
1171
1194
 
1172
1195
  ...
1173
1196
 
1174
- def rename_channel(override_context=None, execution_context=None, undo=None):
1197
+ def rename_channel(
1198
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1199
+ execution_context: typing.Union[str, int] = None,
1200
+ undo: bool = None,
1201
+ ):
1175
1202
  """Undocumented, consider contributing.
1176
1203
 
1177
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1178
- :type execution_context: typing.Optional[typing.Union[int, str]]
1179
- :type undo: typing.Optional[bool]
1204
+ :type override_context: typing.Union[dict, bpy.types.Context]
1205
+ :type execution_context: typing.Union[str, int]
1206
+ :type undo: bool
1180
1207
  """
1181
1208
 
1182
1209
  ...
1183
1210
 
1184
- def rendersize(override_context=None, execution_context=None, undo=None):
1211
+ def rendersize(
1212
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1213
+ execution_context: typing.Union[str, int] = None,
1214
+ undo: bool = None,
1215
+ ):
1185
1216
  """Set render size and aspect from active sequence
1186
1217
 
1187
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1188
- :type execution_context: typing.Optional[typing.Union[int, str]]
1189
- :type undo: typing.Optional[bool]
1218
+ :type override_context: typing.Union[dict, bpy.types.Context]
1219
+ :type execution_context: typing.Union[str, int]
1220
+ :type undo: bool
1190
1221
  """
1191
1222
 
1192
1223
  ...
1193
1224
 
1194
1225
  def retiming_add_freeze_frame_slide(
1195
- override_context=None,
1196
- execution_context=None,
1197
- undo=None,
1198
- *,
1199
- SEQUENCER_OT_retiming_freeze_frame_add: typing.Optional[
1200
- "retiming_freeze_frame_add"
1201
- ] = None,
1202
- TRANSFORM_OT_seq_slide: typing.Optional["bpy.ops.transform.seq_slide"] = None,
1226
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1227
+ execution_context: typing.Union[str, int] = None,
1228
+ undo: bool = None,
1229
+ SEQUENCER_OT_retiming_freeze_frame_add: retiming_freeze_frame_add = None,
1230
+ TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide = None,
1203
1231
  ):
1204
1232
  """Add freeze frame and move it
1205
1233
 
1206
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1207
- :type execution_context: typing.Optional[typing.Union[int, str]]
1208
- :type undo: typing.Optional[bool]
1234
+ :type override_context: typing.Union[dict, bpy.types.Context]
1235
+ :type execution_context: typing.Union[str, int]
1236
+ :type undo: bool
1209
1237
  :param SEQUENCER_OT_retiming_freeze_frame_add: Add Freeze Frame, Add freeze frame
1210
- :type SEQUENCER_OT_retiming_freeze_frame_add: typing.Optional['retiming_freeze_frame_add']
1238
+ :type SEQUENCER_OT_retiming_freeze_frame_add: retiming_freeze_frame_add
1211
1239
  :param TRANSFORM_OT_seq_slide: Sequence Slide, Slide a sequence strip in time
1212
- :type TRANSFORM_OT_seq_slide: typing.Optional['bpy.ops.transform.seq_slide']
1240
+ :type TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide
1213
1241
  """
1214
1242
 
1215
1243
  ...
1216
1244
 
1217
1245
  def retiming_add_transition_slide(
1218
- override_context=None,
1219
- execution_context=None,
1220
- undo=None,
1221
- *,
1222
- SEQUENCER_OT_retiming_transition_add: typing.Optional[
1223
- "retiming_transition_add"
1224
- ] = None,
1225
- TRANSFORM_OT_seq_slide: typing.Optional["bpy.ops.transform.seq_slide"] = None,
1246
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1247
+ execution_context: typing.Union[str, int] = None,
1248
+ undo: bool = None,
1249
+ SEQUENCER_OT_retiming_transition_add: retiming_transition_add = None,
1250
+ TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide = None,
1226
1251
  ):
1227
1252
  """Add smooth transition between 2 retimed segments and change its duration
1228
1253
 
1229
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1230
- :type execution_context: typing.Optional[typing.Union[int, str]]
1231
- :type undo: typing.Optional[bool]
1254
+ :type override_context: typing.Union[dict, bpy.types.Context]
1255
+ :type execution_context: typing.Union[str, int]
1256
+ :type undo: bool
1232
1257
  :param SEQUENCER_OT_retiming_transition_add: Add Speed Transition, Add smooth transition between 2 retimed segments
1233
- :type SEQUENCER_OT_retiming_transition_add: typing.Optional['retiming_transition_add']
1258
+ :type SEQUENCER_OT_retiming_transition_add: retiming_transition_add
1234
1259
  :param TRANSFORM_OT_seq_slide: Sequence Slide, Slide a sequence strip in time
1235
- :type TRANSFORM_OT_seq_slide: typing.Optional['bpy.ops.transform.seq_slide']
1260
+ :type TRANSFORM_OT_seq_slide: bpy.ops.transform.seq_slide
1236
1261
  """
1237
1262
 
1238
1263
  ...
1239
1264
 
1240
1265
  def retiming_freeze_frame_add(
1241
- override_context=None,
1242
- execution_context=None,
1243
- undo=None,
1244
- *,
1245
- duration: typing.Optional[typing.Any] = 0,
1266
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1267
+ execution_context: typing.Union[str, int] = None,
1268
+ undo: bool = None,
1269
+ duration: typing.Any = 0,
1246
1270
  ):
1247
1271
  """Add freeze frame
1248
1272
 
1249
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1250
- :type execution_context: typing.Optional[typing.Union[int, str]]
1251
- :type undo: typing.Optional[bool]
1273
+ :type override_context: typing.Union[dict, bpy.types.Context]
1274
+ :type execution_context: typing.Union[str, int]
1275
+ :type undo: bool
1252
1276
  :param duration: Duration, Duration of freeze frame segment
1253
- :type duration: typing.Optional[typing.Any]
1277
+ :type duration: typing.Any
1254
1278
  """
1255
1279
 
1256
1280
  ...
1257
1281
 
1258
1282
  def retiming_key_add(
1259
- override_context=None,
1260
- execution_context=None,
1261
- undo=None,
1262
- *,
1263
- timeline_frame: typing.Optional[typing.Any] = 0,
1283
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1284
+ execution_context: typing.Union[str, int] = None,
1285
+ undo: bool = None,
1286
+ timeline_frame: typing.Any = 0,
1264
1287
  ):
1265
1288
  """Add retiming Key
1266
1289
 
1267
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1268
- :type execution_context: typing.Optional[typing.Union[int, str]]
1269
- :type undo: typing.Optional[bool]
1290
+ :type override_context: typing.Union[dict, bpy.types.Context]
1291
+ :type execution_context: typing.Union[str, int]
1292
+ :type undo: bool
1270
1293
  :param timeline_frame: Timeline Frame, Frame where key will be added
1271
- :type timeline_frame: typing.Optional[typing.Any]
1294
+ :type timeline_frame: typing.Any
1272
1295
  """
1273
1296
 
1274
1297
  ...
1275
1298
 
1276
- def retiming_reset(override_context=None, execution_context=None, undo=None):
1299
+ def retiming_reset(
1300
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1301
+ execution_context: typing.Union[str, int] = None,
1302
+ undo: bool = None,
1303
+ ):
1277
1304
  """Reset strip retiming
1278
1305
 
1279
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1280
- :type execution_context: typing.Optional[typing.Union[int, str]]
1281
- :type undo: typing.Optional[bool]
1306
+ :type override_context: typing.Union[dict, bpy.types.Context]
1307
+ :type execution_context: typing.Union[str, int]
1308
+ :type undo: bool
1282
1309
  """
1283
1310
 
1284
1311
  ...
1285
1312
 
1286
1313
  def retiming_segment_speed_set(
1287
- override_context=None,
1288
- execution_context=None,
1289
- undo=None,
1290
- *,
1291
- speed: typing.Optional[typing.Any] = 100.0,
1292
- keep_retiming: typing.Optional[typing.Union[bool, typing.Any]] = True,
1314
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1315
+ execution_context: typing.Union[str, int] = None,
1316
+ undo: bool = None,
1317
+ speed: typing.Any = 100.0,
1318
+ keep_retiming: typing.Union[bool, typing.Any] = True,
1293
1319
  ):
1294
1320
  """Set speed of retimed segment
1295
1321
 
1296
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1297
- :type execution_context: typing.Optional[typing.Union[int, str]]
1298
- :type undo: typing.Optional[bool]
1322
+ :type override_context: typing.Union[dict, bpy.types.Context]
1323
+ :type execution_context: typing.Union[str, int]
1324
+ :type undo: bool
1299
1325
  :param speed: Speed, New speed of retimed segment
1300
- :type speed: typing.Optional[typing.Any]
1326
+ :type speed: typing.Any
1301
1327
  :param keep_retiming: Preserve Current Retiming, Keep speed of other segments unchanged, change strip length instead
1302
- :type keep_retiming: typing.Optional[typing.Union[bool, typing.Any]]
1328
+ :type keep_retiming: typing.Union[bool, typing.Any]
1303
1329
  """
1304
1330
 
1305
1331
  ...
1306
1332
 
1307
- def retiming_show(override_context=None, execution_context=None, undo=None):
1333
+ def retiming_show(
1334
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1335
+ execution_context: typing.Union[str, int] = None,
1336
+ undo: bool = None,
1337
+ ):
1308
1338
  """Show retiming keys in selected strips
1309
1339
 
1310
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1311
- :type execution_context: typing.Optional[typing.Union[int, str]]
1312
- :type undo: typing.Optional[bool]
1340
+ :type override_context: typing.Union[dict, bpy.types.Context]
1341
+ :type execution_context: typing.Union[str, int]
1342
+ :type undo: bool
1313
1343
  """
1314
1344
 
1315
1345
  ...
1316
1346
 
1317
1347
  def retiming_transition_add(
1318
- override_context=None,
1319
- execution_context=None,
1320
- undo=None,
1321
- *,
1322
- duration: typing.Optional[typing.Any] = 0,
1348
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1349
+ execution_context: typing.Union[str, int] = None,
1350
+ undo: bool = None,
1351
+ duration: typing.Any = 0,
1323
1352
  ):
1324
1353
  """Add smooth transition between 2 retimed segments
1325
1354
 
1326
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1327
- :type execution_context: typing.Optional[typing.Union[int, str]]
1328
- :type undo: typing.Optional[bool]
1355
+ :type override_context: typing.Union[dict, bpy.types.Context]
1356
+ :type execution_context: typing.Union[str, int]
1357
+ :type undo: bool
1329
1358
  :param duration: Duration, Duration of freeze frame segment
1330
- :type duration: typing.Optional[typing.Any]
1359
+ :type duration: typing.Any
1331
1360
  """
1332
1361
 
1333
1362
  ...
1334
1363
 
1335
1364
  def sample(
1336
- override_context=None,
1337
- execution_context=None,
1338
- undo=None,
1339
- *,
1340
- size: typing.Optional[typing.Any] = 1,
1365
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1366
+ execution_context: typing.Union[str, int] = None,
1367
+ undo: bool = None,
1368
+ size: typing.Any = 1,
1341
1369
  ):
1342
1370
  """Use mouse to sample color in current frame
1343
1371
 
1344
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1345
- :type execution_context: typing.Optional[typing.Union[int, str]]
1346
- :type undo: typing.Optional[bool]
1372
+ :type override_context: typing.Union[dict, bpy.types.Context]
1373
+ :type execution_context: typing.Union[str, int]
1374
+ :type undo: bool
1347
1375
  :param size: Sample Size
1348
- :type size: typing.Optional[typing.Any]
1376
+ :type size: typing.Any
1349
1377
  """
1350
1378
 
1351
1379
  ...
1352
1380
 
1353
- def scene_frame_range_update(override_context=None, execution_context=None, undo=None):
1381
+ def scene_frame_range_update(
1382
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1383
+ execution_context: typing.Union[str, int] = None,
1384
+ undo: bool = None,
1385
+ ):
1354
1386
  """Update frame range of scene strip
1355
1387
 
1356
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1357
- :type execution_context: typing.Optional[typing.Union[int, str]]
1358
- :type undo: typing.Optional[bool]
1388
+ :type override_context: typing.Union[dict, bpy.types.Context]
1389
+ :type execution_context: typing.Union[str, int]
1390
+ :type undo: bool
1359
1391
  """
1360
1392
 
1361
1393
  ...
1362
1394
 
1363
1395
  def scene_strip_add(
1364
- override_context=None,
1365
- execution_context=None,
1366
- undo=None,
1367
- *,
1368
- frame_start: typing.Optional[typing.Any] = 0,
1369
- channel: typing.Optional[typing.Any] = 1,
1370
- replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
1371
- overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
1372
- overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]] = False,
1373
- scene: typing.Optional[typing.Union[int, str, typing.Any]] = "",
1396
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1397
+ execution_context: typing.Union[str, int] = None,
1398
+ undo: bool = None,
1399
+ frame_start: typing.Any = 0,
1400
+ channel: typing.Any = 1,
1401
+ replace_sel: typing.Union[bool, typing.Any] = True,
1402
+ overlap: typing.Union[bool, typing.Any] = False,
1403
+ overlap_shuffle_override: typing.Union[bool, typing.Any] = False,
1404
+ scene: typing.Union[str, int, typing.Any] = "",
1374
1405
  ):
1375
1406
  """Add a strip to the sequencer using a Blender scene as a source
1376
1407
 
1377
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1378
- :type execution_context: typing.Optional[typing.Union[int, str]]
1379
- :type undo: typing.Optional[bool]
1408
+ :type override_context: typing.Union[dict, bpy.types.Context]
1409
+ :type execution_context: typing.Union[str, int]
1410
+ :type undo: bool
1380
1411
  :param frame_start: Start Frame, Start frame of the sequence strip
1381
- :type frame_start: typing.Optional[typing.Any]
1412
+ :type frame_start: typing.Any
1382
1413
  :param channel: Channel, Channel to place this strip into
1383
- :type channel: typing.Optional[typing.Any]
1414
+ :type channel: typing.Any
1384
1415
  :param replace_sel: Replace Selection, Replace the current selection
1385
- :type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
1416
+ :type replace_sel: typing.Union[bool, typing.Any]
1386
1417
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
1387
- :type overlap: typing.Optional[typing.Union[bool, typing.Any]]
1418
+ :type overlap: typing.Union[bool, typing.Any]
1388
1419
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1389
- :type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
1420
+ :type overlap_shuffle_override: typing.Union[bool, typing.Any]
1390
1421
  :param scene: Scene
1391
- :type scene: typing.Optional[typing.Union[int, str, typing.Any]]
1422
+ :type scene: typing.Union[str, int, typing.Any]
1392
1423
  """
1393
1424
 
1394
1425
  ...
1395
1426
 
1396
1427
  def scene_strip_add_new(
1397
- override_context=None,
1398
- execution_context=None,
1399
- undo=None,
1400
- *,
1401
- frame_start: typing.Optional[typing.Any] = 0,
1402
- channel: typing.Optional[typing.Any] = 1,
1403
- replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
1404
- overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
1405
- overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]] = False,
1406
- type: typing.Optional[typing.Any] = "NEW",
1428
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1429
+ execution_context: typing.Union[str, int] = None,
1430
+ undo: bool = None,
1431
+ frame_start: typing.Any = 0,
1432
+ channel: typing.Any = 1,
1433
+ replace_sel: typing.Union[bool, typing.Any] = True,
1434
+ overlap: typing.Union[bool, typing.Any] = False,
1435
+ overlap_shuffle_override: typing.Union[bool, typing.Any] = False,
1436
+ type: typing.Any = "NEW",
1407
1437
  ):
1408
1438
  """Create a new Strip and assign a new Scene as source
1409
1439
 
1410
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1411
- :type execution_context: typing.Optional[typing.Union[int, str]]
1412
- :type undo: typing.Optional[bool]
1440
+ :type override_context: typing.Union[dict, bpy.types.Context]
1441
+ :type execution_context: typing.Union[str, int]
1442
+ :type undo: bool
1413
1443
  :param frame_start: Start Frame, Start frame of the sequence strip
1414
- :type frame_start: typing.Optional[typing.Any]
1444
+ :type frame_start: typing.Any
1415
1445
  :param channel: Channel, Channel to place this strip into
1416
- :type channel: typing.Optional[typing.Any]
1446
+ :type channel: typing.Any
1417
1447
  :param replace_sel: Replace Selection, Replace the current selection
1418
- :type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
1448
+ :type replace_sel: typing.Union[bool, typing.Any]
1419
1449
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
1420
- :type overlap: typing.Optional[typing.Union[bool, typing.Any]]
1450
+ :type overlap: typing.Union[bool, typing.Any]
1421
1451
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1422
- :type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
1452
+ :type overlap_shuffle_override: typing.Union[bool, typing.Any]
1423
1453
  :param type: Type
1424
1454
 
1425
1455
  NEW
@@ -1433,74 +1463,72 @@ def scene_strip_add_new(
1433
1463
 
1434
1464
  FULL_COPY
1435
1465
  Full Copy -- Add a Strip and make a full copy of the current scene.
1436
- :type type: typing.Optional[typing.Any]
1466
+ :type type: typing.Any
1437
1467
  """
1438
1468
 
1439
1469
  ...
1440
1470
 
1441
1471
  def select(
1442
- override_context=None,
1443
- execution_context=None,
1444
- undo=None,
1445
- *,
1446
- wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]] = False,
1447
- mouse_x: typing.Optional[typing.Any] = 0,
1448
- mouse_y: typing.Optional[typing.Any] = 0,
1449
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
1450
- deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
1451
- toggle: typing.Optional[typing.Union[bool, typing.Any]] = False,
1452
- deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
1453
- select_passthrough: typing.Optional[typing.Union[bool, typing.Any]] = False,
1454
- center: typing.Optional[typing.Union[bool, typing.Any]] = False,
1455
- linked_handle: typing.Optional[typing.Union[bool, typing.Any]] = False,
1456
- linked_time: typing.Optional[typing.Union[bool, typing.Any]] = False,
1457
- side_of_frame: typing.Optional[typing.Union[bool, typing.Any]] = False,
1472
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1473
+ execution_context: typing.Union[str, int] = None,
1474
+ undo: bool = None,
1475
+ wait_to_deselect_others: typing.Union[bool, typing.Any] = False,
1476
+ mouse_x: typing.Any = 0,
1477
+ mouse_y: typing.Any = 0,
1478
+ extend: typing.Union[bool, typing.Any] = False,
1479
+ deselect: typing.Union[bool, typing.Any] = False,
1480
+ toggle: typing.Union[bool, typing.Any] = False,
1481
+ deselect_all: typing.Union[bool, typing.Any] = False,
1482
+ select_passthrough: typing.Union[bool, typing.Any] = False,
1483
+ center: typing.Union[bool, typing.Any] = False,
1484
+ linked_handle: typing.Union[bool, typing.Any] = False,
1485
+ linked_time: typing.Union[bool, typing.Any] = False,
1486
+ side_of_frame: typing.Union[bool, typing.Any] = False,
1458
1487
  ):
1459
1488
  """Select a strip (last selected becomes the "active strip")
1460
1489
 
1461
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1462
- :type execution_context: typing.Optional[typing.Union[int, str]]
1463
- :type undo: typing.Optional[bool]
1490
+ :type override_context: typing.Union[dict, bpy.types.Context]
1491
+ :type execution_context: typing.Union[str, int]
1492
+ :type undo: bool
1464
1493
  :param wait_to_deselect_others: Wait to Deselect Others
1465
- :type wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]]
1494
+ :type wait_to_deselect_others: typing.Union[bool, typing.Any]
1466
1495
  :param mouse_x: Mouse X
1467
- :type mouse_x: typing.Optional[typing.Any]
1496
+ :type mouse_x: typing.Any
1468
1497
  :param mouse_y: Mouse Y
1469
- :type mouse_y: typing.Optional[typing.Any]
1498
+ :type mouse_y: typing.Any
1470
1499
  :param extend: Extend, Extend selection instead of deselecting everything first
1471
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
1500
+ :type extend: typing.Union[bool, typing.Any]
1472
1501
  :param deselect: Deselect, Remove from selection
1473
- :type deselect: typing.Optional[typing.Union[bool, typing.Any]]
1502
+ :type deselect: typing.Union[bool, typing.Any]
1474
1503
  :param toggle: Toggle Selection, Toggle the selection
1475
- :type toggle: typing.Optional[typing.Union[bool, typing.Any]]
1504
+ :type toggle: typing.Union[bool, typing.Any]
1476
1505
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
1477
- :type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
1506
+ :type deselect_all: typing.Union[bool, typing.Any]
1478
1507
  :param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
1479
- :type select_passthrough: typing.Optional[typing.Union[bool, typing.Any]]
1508
+ :type select_passthrough: typing.Union[bool, typing.Any]
1480
1509
  :param center: Center, Use the object center when selecting, in edit mode used to extend object selection
1481
- :type center: typing.Optional[typing.Union[bool, typing.Any]]
1510
+ :type center: typing.Union[bool, typing.Any]
1482
1511
  :param linked_handle: Linked Handle, Select handles next to the active strip
1483
- :type linked_handle: typing.Optional[typing.Union[bool, typing.Any]]
1512
+ :type linked_handle: typing.Union[bool, typing.Any]
1484
1513
  :param linked_time: Linked Time, Select other strips at the same time
1485
- :type linked_time: typing.Optional[typing.Union[bool, typing.Any]]
1514
+ :type linked_time: typing.Union[bool, typing.Any]
1486
1515
  :param side_of_frame: Side of Frame, Select all strips on same side of the current frame as the mouse cursor
1487
- :type side_of_frame: typing.Optional[typing.Union[bool, typing.Any]]
1516
+ :type side_of_frame: typing.Union[bool, typing.Any]
1488
1517
  """
1489
1518
 
1490
1519
  ...
1491
1520
 
1492
1521
  def select_all(
1493
- override_context=None,
1494
- execution_context=None,
1495
- undo=None,
1496
- *,
1497
- action: typing.Optional[typing.Any] = "TOGGLE",
1522
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1523
+ execution_context: typing.Union[str, int] = None,
1524
+ undo: bool = None,
1525
+ action: typing.Any = "TOGGLE",
1498
1526
  ):
1499
1527
  """Select or deselect all strips
1500
1528
 
1501
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1502
- :type execution_context: typing.Optional[typing.Union[int, str]]
1503
- :type undo: typing.Optional[bool]
1529
+ :type override_context: typing.Union[dict, bpy.types.Context]
1530
+ :type execution_context: typing.Union[str, int]
1531
+ :type undo: bool
1504
1532
  :param action: Action, Selection action to execute
1505
1533
 
1506
1534
  TOGGLE
@@ -1514,40 +1542,39 @@ def select_all(
1514
1542
 
1515
1543
  INVERT
1516
1544
  Invert -- Invert selection of all elements.
1517
- :type action: typing.Optional[typing.Any]
1545
+ :type action: typing.Any
1518
1546
  """
1519
1547
 
1520
1548
  ...
1521
1549
 
1522
1550
  def select_box(
1523
- override_context=None,
1524
- execution_context=None,
1525
- undo=None,
1526
- *,
1527
- xmin: typing.Optional[typing.Any] = 0,
1528
- xmax: typing.Optional[typing.Any] = 0,
1529
- ymin: typing.Optional[typing.Any] = 0,
1530
- ymax: typing.Optional[typing.Any] = 0,
1531
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
1532
- mode: typing.Optional[typing.Any] = "SET",
1533
- tweak: typing.Optional[typing.Union[bool, typing.Any]] = False,
1534
- include_handles: typing.Optional[typing.Union[bool, typing.Any]] = False,
1551
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1552
+ execution_context: typing.Union[str, int] = None,
1553
+ undo: bool = None,
1554
+ xmin: typing.Any = 0,
1555
+ xmax: typing.Any = 0,
1556
+ ymin: typing.Any = 0,
1557
+ ymax: typing.Any = 0,
1558
+ wait_for_input: typing.Union[bool, typing.Any] = True,
1559
+ mode: typing.Any = "SET",
1560
+ tweak: typing.Union[bool, typing.Any] = False,
1561
+ include_handles: typing.Union[bool, typing.Any] = False,
1535
1562
  ):
1536
1563
  """Select strips using box selection
1537
1564
 
1538
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1539
- :type execution_context: typing.Optional[typing.Union[int, str]]
1540
- :type undo: typing.Optional[bool]
1565
+ :type override_context: typing.Union[dict, bpy.types.Context]
1566
+ :type execution_context: typing.Union[str, int]
1567
+ :type undo: bool
1541
1568
  :param xmin: X Min
1542
- :type xmin: typing.Optional[typing.Any]
1569
+ :type xmin: typing.Any
1543
1570
  :param xmax: X Max
1544
- :type xmax: typing.Optional[typing.Any]
1571
+ :type xmax: typing.Any
1545
1572
  :param ymin: Y Min
1546
- :type ymin: typing.Optional[typing.Any]
1573
+ :type ymin: typing.Any
1547
1574
  :param ymax: Y Max
1548
- :type ymax: typing.Optional[typing.Any]
1575
+ :type ymax: typing.Any
1549
1576
  :param wait_for_input: Wait for Input
1550
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
1577
+ :type wait_for_input: typing.Union[bool, typing.Any]
1551
1578
  :param mode: Mode
1552
1579
 
1553
1580
  SET
@@ -1558,29 +1585,28 @@ def select_box(
1558
1585
 
1559
1586
  SUB
1560
1587
  Subtract -- Subtract existing selection.
1561
- :type mode: typing.Optional[typing.Any]
1588
+ :type mode: typing.Any
1562
1589
  :param tweak: Tweak, Operator has been activated using a click-drag event
1563
- :type tweak: typing.Optional[typing.Union[bool, typing.Any]]
1590
+ :type tweak: typing.Union[bool, typing.Any]
1564
1591
  :param include_handles: Select Handles, Select the strips and their handles
1565
- :type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
1592
+ :type include_handles: typing.Union[bool, typing.Any]
1566
1593
  """
1567
1594
 
1568
1595
  ...
1569
1596
 
1570
1597
  def select_grouped(
1571
- override_context=None,
1572
- execution_context=None,
1573
- undo=None,
1574
- *,
1575
- type: typing.Optional[typing.Any] = "TYPE",
1576
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
1577
- use_active_channel: typing.Optional[typing.Union[bool, typing.Any]] = False,
1598
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1599
+ execution_context: typing.Union[str, int] = None,
1600
+ undo: bool = None,
1601
+ type: typing.Any = "TYPE",
1602
+ extend: typing.Union[bool, typing.Any] = False,
1603
+ use_active_channel: typing.Union[bool, typing.Any] = False,
1578
1604
  ):
1579
1605
  """Select all strips grouped by various properties
1580
1606
 
1581
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1582
- :type execution_context: typing.Optional[typing.Union[int, str]]
1583
- :type undo: typing.Optional[bool]
1607
+ :type override_context: typing.Union[dict, bpy.types.Context]
1608
+ :type execution_context: typing.Union[str, int]
1609
+ :type undo: bool
1584
1610
  :param type: Type
1585
1611
 
1586
1612
  TYPE
@@ -1603,114 +1629,122 @@ def select_grouped(
1603
1629
 
1604
1630
  OVERLAP
1605
1631
  Overlap -- Overlapping time.
1606
- :type type: typing.Optional[typing.Any]
1632
+ :type type: typing.Any
1607
1633
  :param extend: Extend, Extend selection instead of deselecting everything first
1608
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
1634
+ :type extend: typing.Union[bool, typing.Any]
1609
1635
  :param use_active_channel: Same Channel, Only consider strips on the same channel as the active one
1610
- :type use_active_channel: typing.Optional[typing.Union[bool, typing.Any]]
1636
+ :type use_active_channel: typing.Union[bool, typing.Any]
1611
1637
  """
1612
1638
 
1613
1639
  ...
1614
1640
 
1615
1641
  def select_handles(
1616
- override_context=None,
1617
- execution_context=None,
1618
- undo=None,
1619
- *,
1620
- side: typing.Optional[typing.Any] = "BOTH",
1642
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1643
+ execution_context: typing.Union[str, int] = None,
1644
+ undo: bool = None,
1645
+ side: typing.Any = "BOTH",
1621
1646
  ):
1622
1647
  """Select gizmo handles on the sides of the selected strip
1623
1648
 
1624
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1625
- :type execution_context: typing.Optional[typing.Union[int, str]]
1626
- :type undo: typing.Optional[bool]
1649
+ :type override_context: typing.Union[dict, bpy.types.Context]
1650
+ :type execution_context: typing.Union[str, int]
1651
+ :type undo: bool
1627
1652
  :param side: Side, The side of the handle that is selected
1628
- :type side: typing.Optional[typing.Any]
1653
+ :type side: typing.Any
1629
1654
  """
1630
1655
 
1631
1656
  ...
1632
1657
 
1633
- def select_less(override_context=None, execution_context=None, undo=None):
1658
+ def select_less(
1659
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1660
+ execution_context: typing.Union[str, int] = None,
1661
+ undo: bool = None,
1662
+ ):
1634
1663
  """Shrink the current selection of adjacent selected strips
1635
1664
 
1636
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1637
- :type execution_context: typing.Optional[typing.Union[int, str]]
1638
- :type undo: typing.Optional[bool]
1665
+ :type override_context: typing.Union[dict, bpy.types.Context]
1666
+ :type execution_context: typing.Union[str, int]
1667
+ :type undo: bool
1639
1668
  """
1640
1669
 
1641
1670
  ...
1642
1671
 
1643
- def select_linked(override_context=None, execution_context=None, undo=None):
1672
+ def select_linked(
1673
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1674
+ execution_context: typing.Union[str, int] = None,
1675
+ undo: bool = None,
1676
+ ):
1644
1677
  """Select all strips adjacent to the current selection
1645
1678
 
1646
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1647
- :type execution_context: typing.Optional[typing.Union[int, str]]
1648
- :type undo: typing.Optional[bool]
1679
+ :type override_context: typing.Union[dict, bpy.types.Context]
1680
+ :type execution_context: typing.Union[str, int]
1681
+ :type undo: bool
1649
1682
  """
1650
1683
 
1651
1684
  ...
1652
1685
 
1653
1686
  def select_linked_pick(
1654
- override_context=None,
1655
- execution_context=None,
1656
- undo=None,
1657
- *,
1658
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
1687
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1688
+ execution_context: typing.Union[str, int] = None,
1689
+ undo: bool = None,
1690
+ extend: typing.Union[bool, typing.Any] = False,
1659
1691
  ):
1660
1692
  """Select a chain of linked strips nearest to the mouse pointer
1661
1693
 
1662
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1663
- :type execution_context: typing.Optional[typing.Union[int, str]]
1664
- :type undo: typing.Optional[bool]
1694
+ :type override_context: typing.Union[dict, bpy.types.Context]
1695
+ :type execution_context: typing.Union[str, int]
1696
+ :type undo: bool
1665
1697
  :param extend: Extend, Extend the selection
1666
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
1698
+ :type extend: typing.Union[bool, typing.Any]
1667
1699
  """
1668
1700
 
1669
1701
  ...
1670
1702
 
1671
- def select_more(override_context=None, execution_context=None, undo=None):
1703
+ def select_more(
1704
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1705
+ execution_context: typing.Union[str, int] = None,
1706
+ undo: bool = None,
1707
+ ):
1672
1708
  """Select more strips adjacent to the current selection
1673
1709
 
1674
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1675
- :type execution_context: typing.Optional[typing.Union[int, str]]
1676
- :type undo: typing.Optional[bool]
1710
+ :type override_context: typing.Union[dict, bpy.types.Context]
1711
+ :type execution_context: typing.Union[str, int]
1712
+ :type undo: bool
1677
1713
  """
1678
1714
 
1679
1715
  ...
1680
1716
 
1681
1717
  def select_side(
1682
- override_context=None,
1683
- execution_context=None,
1684
- undo=None,
1685
- *,
1686
- side: typing.Optional[typing.Any] = "BOTH",
1718
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1719
+ execution_context: typing.Union[str, int] = None,
1720
+ undo: bool = None,
1721
+ side: typing.Any = "BOTH",
1687
1722
  ):
1688
1723
  """Select strips on the nominated side of the selected strips
1689
1724
 
1690
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1691
- :type execution_context: typing.Optional[typing.Union[int, str]]
1692
- :type undo: typing.Optional[bool]
1725
+ :type override_context: typing.Union[dict, bpy.types.Context]
1726
+ :type execution_context: typing.Union[str, int]
1727
+ :type undo: bool
1693
1728
  :param side: Side, The side to which the selection is applied
1694
- :type side: typing.Optional[typing.Any]
1729
+ :type side: typing.Any
1695
1730
  """
1696
1731
 
1697
1732
  ...
1698
1733
 
1699
1734
  def select_side_of_frame(
1700
- override_context=None,
1701
- execution_context=None,
1702
- undo=None,
1703
- *,
1704
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
1705
- side: typing.Optional[typing.Any] = "LEFT",
1735
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1736
+ execution_context: typing.Union[str, int] = None,
1737
+ undo: bool = None,
1738
+ extend: typing.Union[bool, typing.Any] = False,
1739
+ side: typing.Any = "LEFT",
1706
1740
  ):
1707
1741
  """Select strips relative to the current frame
1708
1742
 
1709
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1710
- :type execution_context: typing.Optional[typing.Union[int, str]]
1711
- :type undo: typing.Optional[bool]
1743
+ :type override_context: typing.Union[dict, bpy.types.Context]
1744
+ :type execution_context: typing.Union[str, int]
1745
+ :type undo: bool
1712
1746
  :param extend: Extend, Extend the selection
1713
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
1747
+ :type extend: typing.Union[bool, typing.Any]
1714
1748
  :param side: Side
1715
1749
 
1716
1750
  LEFT
@@ -1721,156 +1755,150 @@ def select_side_of_frame(
1721
1755
 
1722
1756
  CURRENT
1723
1757
  Current Frame -- Select intersecting with the current frame.
1724
- :type side: typing.Optional[typing.Any]
1758
+ :type side: typing.Any
1725
1759
  """
1726
1760
 
1727
1761
  ...
1728
1762
 
1729
1763
  def set_range_to_strips(
1730
- override_context=None,
1731
- execution_context=None,
1732
- undo=None,
1733
- *,
1734
- preview: typing.Optional[typing.Union[bool, typing.Any]] = False,
1764
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1765
+ execution_context: typing.Union[str, int] = None,
1766
+ undo: bool = None,
1767
+ preview: typing.Union[bool, typing.Any] = False,
1735
1768
  ):
1736
1769
  """Set the frame range to the selected strips start and end
1737
1770
 
1738
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1739
- :type execution_context: typing.Optional[typing.Union[int, str]]
1740
- :type undo: typing.Optional[bool]
1771
+ :type override_context: typing.Union[dict, bpy.types.Context]
1772
+ :type execution_context: typing.Union[str, int]
1773
+ :type undo: bool
1741
1774
  :param preview: Preview, Set the preview range instead
1742
- :type preview: typing.Optional[typing.Union[bool, typing.Any]]
1775
+ :type preview: typing.Union[bool, typing.Any]
1743
1776
  """
1744
1777
 
1745
1778
  ...
1746
1779
 
1747
1780
  def slip(
1748
- override_context=None,
1749
- execution_context=None,
1750
- undo=None,
1751
- *,
1752
- offset: typing.Optional[typing.Any] = 0,
1781
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1782
+ execution_context: typing.Union[str, int] = None,
1783
+ undo: bool = None,
1784
+ offset: typing.Any = 0,
1753
1785
  ):
1754
1786
  """Slip the contents of selected strips
1755
1787
 
1756
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1757
- :type execution_context: typing.Optional[typing.Union[int, str]]
1758
- :type undo: typing.Optional[bool]
1788
+ :type override_context: typing.Union[dict, bpy.types.Context]
1789
+ :type execution_context: typing.Union[str, int]
1790
+ :type undo: bool
1759
1791
  :param offset: Offset, Offset to the data of the strip
1760
- :type offset: typing.Optional[typing.Any]
1792
+ :type offset: typing.Any
1761
1793
  """
1762
1794
 
1763
1795
  ...
1764
1796
 
1765
1797
  def snap(
1766
- override_context=None,
1767
- execution_context=None,
1768
- undo=None,
1769
- *,
1770
- frame: typing.Optional[typing.Any] = 0,
1798
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1799
+ execution_context: typing.Union[str, int] = None,
1800
+ undo: bool = None,
1801
+ frame: typing.Any = 0,
1771
1802
  ):
1772
1803
  """Frame where selected strips will be snapped
1773
1804
 
1774
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1775
- :type execution_context: typing.Optional[typing.Union[int, str]]
1776
- :type undo: typing.Optional[bool]
1805
+ :type override_context: typing.Union[dict, bpy.types.Context]
1806
+ :type execution_context: typing.Union[str, int]
1807
+ :type undo: bool
1777
1808
  :param frame: Frame, Frame where selected strips will be snapped
1778
- :type frame: typing.Optional[typing.Any]
1809
+ :type frame: typing.Any
1779
1810
  """
1780
1811
 
1781
1812
  ...
1782
1813
 
1783
1814
  def sound_strip_add(
1784
- override_context=None,
1785
- execution_context=None,
1786
- undo=None,
1787
- *,
1815
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1816
+ execution_context: typing.Union[str, int] = None,
1817
+ undo: bool = None,
1788
1818
  filepath: typing.Union[str, typing.Any] = "",
1789
1819
  directory: typing.Union[str, typing.Any] = "",
1790
- files: typing.Optional[
1791
- bpy.types.bpy_prop_collection["bpy.types.OperatorFileListElement"]
1792
- ] = None,
1793
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
1794
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
1795
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
1796
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
1797
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
1798
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
1799
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
1800
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = True,
1801
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
1802
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
1803
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
1804
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
1805
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
1806
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
1807
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
1808
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
1809
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
1810
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
1811
- filemode: typing.Optional[typing.Any] = 9,
1812
- relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
1813
- display_type: typing.Optional[typing.Any] = "DEFAULT",
1814
- sort_method: typing.Optional[typing.Any] = "",
1815
- frame_start: typing.Optional[typing.Any] = 0,
1816
- channel: typing.Optional[typing.Any] = 1,
1817
- replace_sel: typing.Optional[typing.Union[bool, typing.Any]] = True,
1818
- overlap: typing.Optional[typing.Union[bool, typing.Any]] = False,
1819
- overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]] = False,
1820
- cache: typing.Optional[typing.Union[bool, typing.Any]] = False,
1821
- mono: typing.Optional[typing.Union[bool, typing.Any]] = False,
1820
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
1821
+ check_existing: typing.Union[bool, typing.Any] = False,
1822
+ filter_blender: typing.Union[bool, typing.Any] = False,
1823
+ filter_backup: typing.Union[bool, typing.Any] = False,
1824
+ filter_image: typing.Union[bool, typing.Any] = False,
1825
+ filter_movie: typing.Union[bool, typing.Any] = False,
1826
+ filter_python: typing.Union[bool, typing.Any] = False,
1827
+ filter_font: typing.Union[bool, typing.Any] = False,
1828
+ filter_sound: typing.Union[bool, typing.Any] = True,
1829
+ filter_text: typing.Union[bool, typing.Any] = False,
1830
+ filter_archive: typing.Union[bool, typing.Any] = False,
1831
+ filter_btx: typing.Union[bool, typing.Any] = False,
1832
+ filter_collada: typing.Union[bool, typing.Any] = False,
1833
+ filter_alembic: typing.Union[bool, typing.Any] = False,
1834
+ filter_usd: typing.Union[bool, typing.Any] = False,
1835
+ filter_obj: typing.Union[bool, typing.Any] = False,
1836
+ filter_volume: typing.Union[bool, typing.Any] = False,
1837
+ filter_folder: typing.Union[bool, typing.Any] = True,
1838
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
1839
+ filemode: typing.Any = 9,
1840
+ relative_path: typing.Union[bool, typing.Any] = True,
1841
+ display_type: typing.Any = "DEFAULT",
1842
+ sort_method: typing.Any = "",
1843
+ frame_start: typing.Any = 0,
1844
+ channel: typing.Any = 1,
1845
+ replace_sel: typing.Union[bool, typing.Any] = True,
1846
+ overlap: typing.Union[bool, typing.Any] = False,
1847
+ overlap_shuffle_override: typing.Union[bool, typing.Any] = False,
1848
+ cache: typing.Union[bool, typing.Any] = False,
1849
+ mono: typing.Union[bool, typing.Any] = False,
1822
1850
  ):
1823
1851
  """Add a sound strip to the sequencer
1824
1852
 
1825
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1826
- :type execution_context: typing.Optional[typing.Union[int, str]]
1827
- :type undo: typing.Optional[bool]
1853
+ :type override_context: typing.Union[dict, bpy.types.Context]
1854
+ :type execution_context: typing.Union[str, int]
1855
+ :type undo: bool
1828
1856
  :param filepath: File Path, Path to file
1829
1857
  :type filepath: typing.Union[str, typing.Any]
1830
1858
  :param directory: Directory, Directory of the file
1831
1859
  :type directory: typing.Union[str, typing.Any]
1832
1860
  :param files: Files
1833
- :type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
1861
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
1834
1862
  :param check_existing: Check Existing, Check and warn on overwriting existing files
1835
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
1863
+ :type check_existing: typing.Union[bool, typing.Any]
1836
1864
  :param filter_blender: Filter .blend files
1837
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
1865
+ :type filter_blender: typing.Union[bool, typing.Any]
1838
1866
  :param filter_backup: Filter .blend files
1839
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
1867
+ :type filter_backup: typing.Union[bool, typing.Any]
1840
1868
  :param filter_image: Filter image files
1841
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
1869
+ :type filter_image: typing.Union[bool, typing.Any]
1842
1870
  :param filter_movie: Filter movie files
1843
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
1871
+ :type filter_movie: typing.Union[bool, typing.Any]
1844
1872
  :param filter_python: Filter Python files
1845
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
1873
+ :type filter_python: typing.Union[bool, typing.Any]
1846
1874
  :param filter_font: Filter font files
1847
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
1875
+ :type filter_font: typing.Union[bool, typing.Any]
1848
1876
  :param filter_sound: Filter sound files
1849
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
1877
+ :type filter_sound: typing.Union[bool, typing.Any]
1850
1878
  :param filter_text: Filter text files
1851
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
1879
+ :type filter_text: typing.Union[bool, typing.Any]
1852
1880
  :param filter_archive: Filter archive files
1853
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
1881
+ :type filter_archive: typing.Union[bool, typing.Any]
1854
1882
  :param filter_btx: Filter btx files
1855
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
1883
+ :type filter_btx: typing.Union[bool, typing.Any]
1856
1884
  :param filter_collada: Filter COLLADA files
1857
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
1885
+ :type filter_collada: typing.Union[bool, typing.Any]
1858
1886
  :param filter_alembic: Filter Alembic files
1859
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
1887
+ :type filter_alembic: typing.Union[bool, typing.Any]
1860
1888
  :param filter_usd: Filter USD files
1861
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
1889
+ :type filter_usd: typing.Union[bool, typing.Any]
1862
1890
  :param filter_obj: Filter OBJ files
1863
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
1891
+ :type filter_obj: typing.Union[bool, typing.Any]
1864
1892
  :param filter_volume: Filter OpenVDB volume files
1865
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
1893
+ :type filter_volume: typing.Union[bool, typing.Any]
1866
1894
  :param filter_folder: Filter folders
1867
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
1895
+ :type filter_folder: typing.Union[bool, typing.Any]
1868
1896
  :param filter_blenlib: Filter Blender IDs
1869
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
1897
+ :type filter_blenlib: typing.Union[bool, typing.Any]
1870
1898
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
1871
- :type filemode: typing.Optional[typing.Any]
1899
+ :type filemode: typing.Any
1872
1900
  :param relative_path: Relative Path, Select the file relative to the blend file
1873
- :type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
1901
+ :type relative_path: typing.Union[bool, typing.Any]
1874
1902
  :param display_type: Display Type
1875
1903
 
1876
1904
  DEFAULT
@@ -1884,7 +1912,7 @@ def sound_strip_add(
1884
1912
 
1885
1913
  THUMBNAIL
1886
1914
  Thumbnails -- Display files as thumbnails.
1887
- :type display_type: typing.Optional[typing.Any]
1915
+ :type display_type: typing.Any
1888
1916
  :param sort_method: File sorting mode
1889
1917
 
1890
1918
  DEFAULT
@@ -1901,145 +1929,139 @@ def sound_strip_add(
1901
1929
 
1902
1930
  FILE_SORT_SIZE
1903
1931
  Size -- Sort files by size.
1904
- :type sort_method: typing.Optional[typing.Any]
1932
+ :type sort_method: typing.Any
1905
1933
  :param frame_start: Start Frame, Start frame of the sequence strip
1906
- :type frame_start: typing.Optional[typing.Any]
1934
+ :type frame_start: typing.Any
1907
1935
  :param channel: Channel, Channel to place this strip into
1908
- :type channel: typing.Optional[typing.Any]
1936
+ :type channel: typing.Any
1909
1937
  :param replace_sel: Replace Selection, Replace the current selection
1910
- :type replace_sel: typing.Optional[typing.Union[bool, typing.Any]]
1938
+ :type replace_sel: typing.Union[bool, typing.Any]
1911
1939
  :param overlap: Allow Overlap, Don't correct overlap on new sequence strips
1912
- :type overlap: typing.Optional[typing.Union[bool, typing.Any]]
1940
+ :type overlap: typing.Union[bool, typing.Any]
1913
1941
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1914
- :type overlap_shuffle_override: typing.Optional[typing.Union[bool, typing.Any]]
1942
+ :type overlap_shuffle_override: typing.Union[bool, typing.Any]
1915
1943
  :param cache: Cache, Cache the sound in memory
1916
- :type cache: typing.Optional[typing.Union[bool, typing.Any]]
1944
+ :type cache: typing.Union[bool, typing.Any]
1917
1945
  :param mono: Mono, Merge all the sound's channels into one
1918
- :type mono: typing.Optional[typing.Union[bool, typing.Any]]
1946
+ :type mono: typing.Union[bool, typing.Any]
1919
1947
  """
1920
1948
 
1921
1949
  ...
1922
1950
 
1923
1951
  def split(
1924
- override_context=None,
1925
- execution_context=None,
1926
- undo=None,
1927
- *,
1928
- frame: typing.Optional[typing.Any] = 0,
1929
- channel: typing.Optional[typing.Any] = 0,
1930
- type: typing.Optional[typing.Any] = "SOFT",
1931
- use_cursor_position: typing.Optional[typing.Union[bool, typing.Any]] = False,
1932
- side: typing.Optional[typing.Any] = "MOUSE",
1933
- ignore_selection: typing.Optional[typing.Union[bool, typing.Any]] = False,
1952
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1953
+ execution_context: typing.Union[str, int] = None,
1954
+ undo: bool = None,
1955
+ frame: typing.Any = 0,
1956
+ channel: typing.Any = 0,
1957
+ type: typing.Any = "SOFT",
1958
+ use_cursor_position: typing.Union[bool, typing.Any] = False,
1959
+ side: typing.Any = "MOUSE",
1960
+ ignore_selection: typing.Union[bool, typing.Any] = False,
1934
1961
  ):
1935
1962
  """Split the selected strips in two
1936
1963
 
1937
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1938
- :type execution_context: typing.Optional[typing.Union[int, str]]
1939
- :type undo: typing.Optional[bool]
1964
+ :type override_context: typing.Union[dict, bpy.types.Context]
1965
+ :type execution_context: typing.Union[str, int]
1966
+ :type undo: bool
1940
1967
  :param frame: Frame, Frame where selected strips will be split
1941
- :type frame: typing.Optional[typing.Any]
1968
+ :type frame: typing.Any
1942
1969
  :param channel: Channel, Channel in which strip will be cut
1943
- :type channel: typing.Optional[typing.Any]
1970
+ :type channel: typing.Any
1944
1971
  :param type: Type, The type of split operation to perform on strips
1945
- :type type: typing.Optional[typing.Any]
1972
+ :type type: typing.Any
1946
1973
  :param use_cursor_position: Use Cursor Position, Split at position of the cursor instead of current frame
1947
- :type use_cursor_position: typing.Optional[typing.Union[bool, typing.Any]]
1974
+ :type use_cursor_position: typing.Union[bool, typing.Any]
1948
1975
  :param side: Side, The side that remains selected after splitting
1949
- :type side: typing.Optional[typing.Any]
1976
+ :type side: typing.Any
1950
1977
  :param ignore_selection: Ignore Selection, Make cut even if strip is not selected preserving selection state after cut
1951
- :type ignore_selection: typing.Optional[typing.Union[bool, typing.Any]]
1978
+ :type ignore_selection: typing.Union[bool, typing.Any]
1952
1979
  """
1953
1980
 
1954
1981
  ...
1955
1982
 
1956
1983
  def split_multicam(
1957
- override_context=None,
1958
- execution_context=None,
1959
- undo=None,
1960
- *,
1961
- camera: typing.Optional[typing.Any] = 1,
1984
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1985
+ execution_context: typing.Union[str, int] = None,
1986
+ undo: bool = None,
1987
+ camera: typing.Any = 1,
1962
1988
  ):
1963
1989
  """Split multicam strip and select camera
1964
1990
 
1965
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1966
- :type execution_context: typing.Optional[typing.Union[int, str]]
1967
- :type undo: typing.Optional[bool]
1991
+ :type override_context: typing.Union[dict, bpy.types.Context]
1992
+ :type execution_context: typing.Union[str, int]
1993
+ :type undo: bool
1968
1994
  :param camera: Camera
1969
- :type camera: typing.Optional[typing.Any]
1995
+ :type camera: typing.Any
1970
1996
  """
1971
1997
 
1972
1998
  ...
1973
1999
 
1974
2000
  def strip_color_tag_set(
1975
- override_context=None,
1976
- execution_context=None,
1977
- undo=None,
1978
- *,
1979
- color: typing.Optional[typing.Any] = "NONE",
2001
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2002
+ execution_context: typing.Union[str, int] = None,
2003
+ undo: bool = None,
2004
+ color: typing.Any = "NONE",
1980
2005
  ):
1981
2006
  """Set a color tag for the selected strips
1982
2007
 
1983
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1984
- :type execution_context: typing.Optional[typing.Union[int, str]]
1985
- :type undo: typing.Optional[bool]
2008
+ :type override_context: typing.Union[dict, bpy.types.Context]
2009
+ :type execution_context: typing.Union[str, int]
2010
+ :type undo: bool
1986
2011
  :param color: Color Tag
1987
- :type color: typing.Optional[typing.Any]
2012
+ :type color: typing.Any
1988
2013
  """
1989
2014
 
1990
2015
  ...
1991
2016
 
1992
2017
  def strip_jump(
1993
- override_context=None,
1994
- execution_context=None,
1995
- undo=None,
1996
- *,
1997
- next: typing.Optional[typing.Union[bool, typing.Any]] = True,
1998
- center: typing.Optional[typing.Union[bool, typing.Any]] = True,
2018
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2019
+ execution_context: typing.Union[str, int] = None,
2020
+ undo: bool = None,
2021
+ next: typing.Union[bool, typing.Any] = True,
2022
+ center: typing.Union[bool, typing.Any] = True,
1999
2023
  ):
2000
2024
  """Move frame to previous edit point
2001
2025
 
2002
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2003
- :type execution_context: typing.Optional[typing.Union[int, str]]
2004
- :type undo: typing.Optional[bool]
2026
+ :type override_context: typing.Union[dict, bpy.types.Context]
2027
+ :type execution_context: typing.Union[str, int]
2028
+ :type undo: bool
2005
2029
  :param next: Next Strip
2006
- :type next: typing.Optional[typing.Union[bool, typing.Any]]
2030
+ :type next: typing.Union[bool, typing.Any]
2007
2031
  :param center: Use Strip Center
2008
- :type center: typing.Optional[typing.Union[bool, typing.Any]]
2032
+ :type center: typing.Union[bool, typing.Any]
2009
2033
  """
2010
2034
 
2011
2035
  ...
2012
2036
 
2013
2037
  def strip_modifier_add(
2014
- override_context=None,
2015
- execution_context=None,
2016
- undo=None,
2017
- *,
2018
- type: typing.Optional[typing.Union[int, str, typing.Any]] = "",
2038
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2039
+ execution_context: typing.Union[str, int] = None,
2040
+ undo: bool = None,
2041
+ type: typing.Union[str, int, typing.Any] = "",
2019
2042
  ):
2020
2043
  """Add a modifier to the strip
2021
2044
 
2022
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2023
- :type execution_context: typing.Optional[typing.Union[int, str]]
2024
- :type undo: typing.Optional[bool]
2045
+ :type override_context: typing.Union[dict, bpy.types.Context]
2046
+ :type execution_context: typing.Union[str, int]
2047
+ :type undo: bool
2025
2048
  :param type: Type
2026
- :type type: typing.Optional[typing.Union[int, str, typing.Any]]
2049
+ :type type: typing.Union[str, int, typing.Any]
2027
2050
  """
2028
2051
 
2029
2052
  ...
2030
2053
 
2031
2054
  def strip_modifier_copy(
2032
- override_context=None,
2033
- execution_context=None,
2034
- undo=None,
2035
- *,
2036
- type: typing.Optional[typing.Any] = "REPLACE",
2055
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2056
+ execution_context: typing.Union[str, int] = None,
2057
+ undo: bool = None,
2058
+ type: typing.Any = "REPLACE",
2037
2059
  ):
2038
2060
  """Copy modifiers of the active strip to all selected strips
2039
2061
 
2040
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2041
- :type execution_context: typing.Optional[typing.Union[int, str]]
2042
- :type undo: typing.Optional[bool]
2062
+ :type override_context: typing.Union[dict, bpy.types.Context]
2063
+ :type execution_context: typing.Union[str, int]
2064
+ :type undo: bool
2043
2065
  :param type: Type
2044
2066
 
2045
2067
  REPLACE
@@ -2047,24 +2069,23 @@ def strip_modifier_copy(
2047
2069
 
2048
2070
  APPEND
2049
2071
  Append -- Append active modifiers to selected strips.
2050
- :type type: typing.Optional[typing.Any]
2072
+ :type type: typing.Any
2051
2073
  """
2052
2074
 
2053
2075
  ...
2054
2076
 
2055
2077
  def strip_modifier_equalizer_redefine(
2056
- override_context=None,
2057
- execution_context=None,
2058
- undo=None,
2059
- *,
2060
- graphs: typing.Optional[typing.Any] = "SIMPLE",
2078
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2079
+ execution_context: typing.Union[str, int] = None,
2080
+ undo: bool = None,
2081
+ graphs: typing.Any = "SIMPLE",
2061
2082
  name: typing.Union[str, typing.Any] = "Name",
2062
2083
  ):
2063
2084
  """Redefine equalizer graphs
2064
2085
 
2065
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2066
- :type execution_context: typing.Optional[typing.Union[int, str]]
2067
- :type undo: typing.Optional[bool]
2086
+ :type override_context: typing.Union[dict, bpy.types.Context]
2087
+ :type execution_context: typing.Union[str, int]
2088
+ :type undo: bool
2068
2089
  :param graphs: Graphs, Number of graphs
2069
2090
 
2070
2091
  SIMPLE
@@ -2075,7 +2096,7 @@ def strip_modifier_equalizer_redefine(
2075
2096
 
2076
2097
  TRIPLE
2077
2098
  Triplet -- Graphical definition in 3 sections.
2078
- :type graphs: typing.Optional[typing.Any]
2099
+ :type graphs: typing.Any
2079
2100
  :param name: Name, Name of modifier to redefine
2080
2101
  :type name: typing.Union[str, typing.Any]
2081
2102
  """
@@ -2083,18 +2104,17 @@ def strip_modifier_equalizer_redefine(
2083
2104
  ...
2084
2105
 
2085
2106
  def strip_modifier_move(
2086
- override_context=None,
2087
- execution_context=None,
2088
- undo=None,
2089
- *,
2107
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2108
+ execution_context: typing.Union[str, int] = None,
2109
+ undo: bool = None,
2090
2110
  name: typing.Union[str, typing.Any] = "Name",
2091
- direction: typing.Optional[typing.Any] = "UP",
2111
+ direction: typing.Any = "UP",
2092
2112
  ):
2093
2113
  """Move modifier up and down in the stack
2094
2114
 
2095
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2096
- :type execution_context: typing.Optional[typing.Union[int, str]]
2097
- :type undo: typing.Optional[bool]
2115
+ :type override_context: typing.Union[dict, bpy.types.Context]
2116
+ :type execution_context: typing.Union[str, int]
2117
+ :type undo: bool
2098
2118
  :param name: Name, Name of modifier to remove
2099
2119
  :type name: typing.Union[str, typing.Any]
2100
2120
  :param direction: Type
@@ -2104,23 +2124,22 @@ def strip_modifier_move(
2104
2124
 
2105
2125
  DOWN
2106
2126
  Down -- Move modifier down in the stack.
2107
- :type direction: typing.Optional[typing.Any]
2127
+ :type direction: typing.Any
2108
2128
  """
2109
2129
 
2110
2130
  ...
2111
2131
 
2112
2132
  def strip_modifier_remove(
2113
- override_context=None,
2114
- execution_context=None,
2115
- undo=None,
2116
- *,
2133
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2134
+ execution_context: typing.Union[str, int] = None,
2135
+ undo: bool = None,
2117
2136
  name: typing.Union[str, typing.Any] = "Name",
2118
2137
  ):
2119
2138
  """Remove a modifier from the strip
2120
2139
 
2121
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2122
- :type execution_context: typing.Optional[typing.Union[int, str]]
2123
- :type undo: typing.Optional[bool]
2140
+ :type override_context: typing.Union[dict, bpy.types.Context]
2141
+ :type execution_context: typing.Union[str, int]
2142
+ :type undo: bool
2124
2143
  :param name: Name, Name of modifier to remove
2125
2144
  :type name: typing.Union[str, typing.Any]
2126
2145
  """
@@ -2128,17 +2147,16 @@ def strip_modifier_remove(
2128
2147
  ...
2129
2148
 
2130
2149
  def strip_transform_clear(
2131
- override_context=None,
2132
- execution_context=None,
2133
- undo=None,
2134
- *,
2135
- property: typing.Optional[typing.Any] = "ALL",
2150
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2151
+ execution_context: typing.Union[str, int] = None,
2152
+ undo: bool = None,
2153
+ property: typing.Any = "ALL",
2136
2154
  ):
2137
2155
  """Reset image transformation to default value
2138
2156
 
2139
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2140
- :type execution_context: typing.Optional[typing.Union[int, str]]
2141
- :type undo: typing.Optional[bool]
2157
+ :type override_context: typing.Union[dict, bpy.types.Context]
2158
+ :type execution_context: typing.Union[str, int]
2159
+ :type undo: bool
2142
2160
  :param property: Property, Strip transform property to be reset
2143
2161
 
2144
2162
  POSITION
@@ -2152,23 +2170,22 @@ def strip_transform_clear(
2152
2170
 
2153
2171
  ALL
2154
2172
  All -- Reset strip transform location, scale and rotation.
2155
- :type property: typing.Optional[typing.Any]
2173
+ :type property: typing.Any
2156
2174
  """
2157
2175
 
2158
2176
  ...
2159
2177
 
2160
2178
  def strip_transform_fit(
2161
- override_context=None,
2162
- execution_context=None,
2163
- undo=None,
2164
- *,
2165
- fit_method: typing.Optional[typing.Any] = "FIT",
2179
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2180
+ execution_context: typing.Union[str, int] = None,
2181
+ undo: bool = None,
2182
+ fit_method: typing.Any = "FIT",
2166
2183
  ):
2167
2184
  """Undocumented, consider contributing.
2168
2185
 
2169
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2170
- :type execution_context: typing.Optional[typing.Union[int, str]]
2171
- :type undo: typing.Optional[bool]
2186
+ :type override_context: typing.Union[dict, bpy.types.Context]
2187
+ :type execution_context: typing.Union[str, int]
2188
+ :type undo: bool
2172
2189
  :param fit_method: Fit Method, Scale fit fit_method
2173
2190
 
2174
2191
  FIT
@@ -2179,161 +2196,185 @@ def strip_transform_fit(
2179
2196
 
2180
2197
  STRETCH
2181
2198
  Stretch to Fill -- Stretch image so it fills preview.
2182
- :type fit_method: typing.Optional[typing.Any]
2199
+ :type fit_method: typing.Any
2183
2200
  """
2184
2201
 
2185
2202
  ...
2186
2203
 
2187
2204
  def swap(
2188
- override_context=None,
2189
- execution_context=None,
2190
- undo=None,
2191
- *,
2192
- side: typing.Optional[typing.Any] = "RIGHT",
2205
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2206
+ execution_context: typing.Union[str, int] = None,
2207
+ undo: bool = None,
2208
+ side: typing.Any = "RIGHT",
2193
2209
  ):
2194
2210
  """Swap active strip with strip to the right or left
2195
2211
 
2196
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2197
- :type execution_context: typing.Optional[typing.Union[int, str]]
2198
- :type undo: typing.Optional[bool]
2212
+ :type override_context: typing.Union[dict, bpy.types.Context]
2213
+ :type execution_context: typing.Union[str, int]
2214
+ :type undo: bool
2199
2215
  :param side: Side, Side of the strip to swap
2200
- :type side: typing.Optional[typing.Any]
2216
+ :type side: typing.Any
2201
2217
  """
2202
2218
 
2203
2219
  ...
2204
2220
 
2205
- def swap_data(override_context=None, execution_context=None, undo=None):
2221
+ def swap_data(
2222
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2223
+ execution_context: typing.Union[str, int] = None,
2224
+ undo: bool = None,
2225
+ ):
2206
2226
  """Swap 2 sequencer strips
2207
2227
 
2208
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2209
- :type execution_context: typing.Optional[typing.Union[int, str]]
2210
- :type undo: typing.Optional[bool]
2228
+ :type override_context: typing.Union[dict, bpy.types.Context]
2229
+ :type execution_context: typing.Union[str, int]
2230
+ :type undo: bool
2211
2231
  """
2212
2232
 
2213
2233
  ...
2214
2234
 
2215
- def swap_inputs(override_context=None, execution_context=None, undo=None):
2235
+ def swap_inputs(
2236
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2237
+ execution_context: typing.Union[str, int] = None,
2238
+ undo: bool = None,
2239
+ ):
2216
2240
  """Swap the first two inputs for the effect strip
2217
2241
 
2218
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2219
- :type execution_context: typing.Optional[typing.Union[int, str]]
2220
- :type undo: typing.Optional[bool]
2242
+ :type override_context: typing.Union[dict, bpy.types.Context]
2243
+ :type execution_context: typing.Union[str, int]
2244
+ :type undo: bool
2221
2245
  """
2222
2246
 
2223
2247
  ...
2224
2248
 
2225
- def unlock(override_context=None, execution_context=None, undo=None):
2249
+ def unlock(
2250
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2251
+ execution_context: typing.Union[str, int] = None,
2252
+ undo: bool = None,
2253
+ ):
2226
2254
  """Unlock strips so they can be transformed
2227
2255
 
2228
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2229
- :type execution_context: typing.Optional[typing.Union[int, str]]
2230
- :type undo: typing.Optional[bool]
2256
+ :type override_context: typing.Union[dict, bpy.types.Context]
2257
+ :type execution_context: typing.Union[str, int]
2258
+ :type undo: bool
2231
2259
  """
2232
2260
 
2233
2261
  ...
2234
2262
 
2235
2263
  def unmute(
2236
- override_context=None,
2237
- execution_context=None,
2238
- undo=None,
2239
- *,
2240
- unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
2264
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2265
+ execution_context: typing.Union[str, int] = None,
2266
+ undo: bool = None,
2267
+ unselected: typing.Union[bool, typing.Any] = False,
2241
2268
  ):
2242
2269
  """Unmute (un)selected strips
2243
2270
 
2244
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2245
- :type execution_context: typing.Optional[typing.Union[int, str]]
2246
- :type undo: typing.Optional[bool]
2271
+ :type override_context: typing.Union[dict, bpy.types.Context]
2272
+ :type execution_context: typing.Union[str, int]
2273
+ :type undo: bool
2247
2274
  :param unselected: Unselected, Unmute unselected rather than selected strips
2248
- :type unselected: typing.Optional[typing.Union[bool, typing.Any]]
2275
+ :type unselected: typing.Union[bool, typing.Any]
2249
2276
  """
2250
2277
 
2251
2278
  ...
2252
2279
 
2253
- def view_all(override_context=None, execution_context=None, undo=None):
2280
+ def view_all(
2281
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2282
+ execution_context: typing.Union[str, int] = None,
2283
+ undo: bool = None,
2284
+ ):
2254
2285
  """View all the strips in the sequencer
2255
2286
 
2256
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2257
- :type execution_context: typing.Optional[typing.Union[int, str]]
2258
- :type undo: typing.Optional[bool]
2287
+ :type override_context: typing.Union[dict, bpy.types.Context]
2288
+ :type execution_context: typing.Union[str, int]
2289
+ :type undo: bool
2259
2290
  """
2260
2291
 
2261
2292
  ...
2262
2293
 
2263
- def view_all_preview(override_context=None, execution_context=None, undo=None):
2294
+ def view_all_preview(
2295
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2296
+ execution_context: typing.Union[str, int] = None,
2297
+ undo: bool = None,
2298
+ ):
2264
2299
  """Zoom preview to fit in the area
2265
2300
 
2266
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2267
- :type execution_context: typing.Optional[typing.Union[int, str]]
2268
- :type undo: typing.Optional[bool]
2301
+ :type override_context: typing.Union[dict, bpy.types.Context]
2302
+ :type execution_context: typing.Union[str, int]
2303
+ :type undo: bool
2269
2304
  """
2270
2305
 
2271
2306
  ...
2272
2307
 
2273
- def view_frame(override_context=None, execution_context=None, undo=None):
2308
+ def view_frame(
2309
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2310
+ execution_context: typing.Union[str, int] = None,
2311
+ undo: bool = None,
2312
+ ):
2274
2313
  """Move the view to the current frame
2275
2314
 
2276
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2277
- :type execution_context: typing.Optional[typing.Union[int, str]]
2278
- :type undo: typing.Optional[bool]
2315
+ :type override_context: typing.Union[dict, bpy.types.Context]
2316
+ :type execution_context: typing.Union[str, int]
2317
+ :type undo: bool
2279
2318
  """
2280
2319
 
2281
2320
  ...
2282
2321
 
2283
2322
  def view_ghost_border(
2284
- override_context=None,
2285
- execution_context=None,
2286
- undo=None,
2287
- *,
2288
- xmin: typing.Optional[typing.Any] = 0,
2289
- xmax: typing.Optional[typing.Any] = 0,
2290
- ymin: typing.Optional[typing.Any] = 0,
2291
- ymax: typing.Optional[typing.Any] = 0,
2292
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
2323
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2324
+ execution_context: typing.Union[str, int] = None,
2325
+ undo: bool = None,
2326
+ xmin: typing.Any = 0,
2327
+ xmax: typing.Any = 0,
2328
+ ymin: typing.Any = 0,
2329
+ ymax: typing.Any = 0,
2330
+ wait_for_input: typing.Union[bool, typing.Any] = True,
2293
2331
  ):
2294
2332
  """Set the boundaries of the border used for offset view
2295
2333
 
2296
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2297
- :type execution_context: typing.Optional[typing.Union[int, str]]
2298
- :type undo: typing.Optional[bool]
2334
+ :type override_context: typing.Union[dict, bpy.types.Context]
2335
+ :type execution_context: typing.Union[str, int]
2336
+ :type undo: bool
2299
2337
  :param xmin: X Min
2300
- :type xmin: typing.Optional[typing.Any]
2338
+ :type xmin: typing.Any
2301
2339
  :param xmax: X Max
2302
- :type xmax: typing.Optional[typing.Any]
2340
+ :type xmax: typing.Any
2303
2341
  :param ymin: Y Min
2304
- :type ymin: typing.Optional[typing.Any]
2342
+ :type ymin: typing.Any
2305
2343
  :param ymax: Y Max
2306
- :type ymax: typing.Optional[typing.Any]
2344
+ :type ymax: typing.Any
2307
2345
  :param wait_for_input: Wait for Input
2308
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
2346
+ :type wait_for_input: typing.Union[bool, typing.Any]
2309
2347
  """
2310
2348
 
2311
2349
  ...
2312
2350
 
2313
- def view_selected(override_context=None, execution_context=None, undo=None):
2351
+ def view_selected(
2352
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2353
+ execution_context: typing.Union[str, int] = None,
2354
+ undo: bool = None,
2355
+ ):
2314
2356
  """Zoom the sequencer on the selected strips
2315
2357
 
2316
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2317
- :type execution_context: typing.Optional[typing.Union[int, str]]
2318
- :type undo: typing.Optional[bool]
2358
+ :type override_context: typing.Union[dict, bpy.types.Context]
2359
+ :type execution_context: typing.Union[str, int]
2360
+ :type undo: bool
2319
2361
  """
2320
2362
 
2321
2363
  ...
2322
2364
 
2323
2365
  def view_zoom_ratio(
2324
- override_context=None,
2325
- execution_context=None,
2326
- undo=None,
2327
- *,
2328
- ratio: typing.Optional[typing.Any] = 1.0,
2366
+ override_context: typing.Union[dict, bpy.types.Context] = None,
2367
+ execution_context: typing.Union[str, int] = None,
2368
+ undo: bool = None,
2369
+ ratio: typing.Any = 1.0,
2329
2370
  ):
2330
2371
  """Change zoom ratio of sequencer preview
2331
2372
 
2332
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
2333
- :type execution_context: typing.Optional[typing.Union[int, str]]
2334
- :type undo: typing.Optional[bool]
2373
+ :type override_context: typing.Union[dict, bpy.types.Context]
2374
+ :type execution_context: typing.Union[str, int]
2375
+ :type undo: bool
2335
2376
  :param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
2336
- :type ratio: typing.Optional[typing.Any]
2377
+ :type ratio: typing.Any
2337
2378
  """
2338
2379
 
2339
2380
  ...