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