fake-bpy-module 20240224__py3-none-any.whl → 20240326__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
bpy/ops/clip/__init__.pyi CHANGED
@@ -5,184 +5,184 @@ import bpy.types
5
5
  GenericType = typing.TypeVar("GenericType")
6
6
 
7
7
  def add_marker(
8
- override_context=None,
9
- execution_context=None,
10
- undo=None,
11
- *,
12
- location: typing.Optional[typing.Any] = (0.0, 0.0),
8
+ override_context: typing.Union[dict, bpy.types.Context] = None,
9
+ execution_context: typing.Union[str, int] = None,
10
+ undo: bool = None,
11
+ location: typing.Any = (0.0, 0.0),
13
12
  ):
14
13
  """Place new marker at specified location
15
14
 
16
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
17
- :type execution_context: typing.Optional[typing.Union[int, str]]
18
- :type undo: typing.Optional[bool]
15
+ :type override_context: typing.Union[dict, bpy.types.Context]
16
+ :type execution_context: typing.Union[str, int]
17
+ :type undo: bool
19
18
  :param location: Location, Location of marker on frame
20
- :type location: typing.Optional[typing.Any]
19
+ :type location: typing.Any
21
20
  """
22
21
 
23
22
  ...
24
23
 
25
- def add_marker_at_click(override_context=None, execution_context=None, undo=None):
24
+ def add_marker_at_click(
25
+ override_context: typing.Union[dict, bpy.types.Context] = None,
26
+ execution_context: typing.Union[str, int] = None,
27
+ undo: bool = None,
28
+ ):
26
29
  """Place new marker at the desired (clicked) position
27
30
 
28
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
29
- :type execution_context: typing.Optional[typing.Union[int, str]]
30
- :type undo: typing.Optional[bool]
31
+ :type override_context: typing.Union[dict, bpy.types.Context]
32
+ :type execution_context: typing.Union[str, int]
33
+ :type undo: bool
31
34
  """
32
35
 
33
36
  ...
34
37
 
35
38
  def add_marker_move(
36
- override_context=None,
37
- execution_context=None,
38
- undo=None,
39
- *,
40
- CLIP_OT_add_marker: typing.Optional["add_marker"] = None,
41
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
39
+ override_context: typing.Union[dict, bpy.types.Context] = None,
40
+ execution_context: typing.Union[str, int] = None,
41
+ undo: bool = None,
42
+ CLIP_OT_add_marker: add_marker = None,
43
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
42
44
  ):
43
45
  """Add new marker and move it on movie
44
46
 
45
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
46
- :type execution_context: typing.Optional[typing.Union[int, str]]
47
- :type undo: typing.Optional[bool]
47
+ :type override_context: typing.Union[dict, bpy.types.Context]
48
+ :type execution_context: typing.Union[str, int]
49
+ :type undo: bool
48
50
  :param CLIP_OT_add_marker: Add Marker, Place new marker at specified location
49
- :type CLIP_OT_add_marker: typing.Optional['add_marker']
51
+ :type CLIP_OT_add_marker: add_marker
50
52
  :param TRANSFORM_OT_translate: Move, Move selected items
51
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
53
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
52
54
  """
53
55
 
54
56
  ...
55
57
 
56
58
  def add_marker_slide(
57
- override_context=None,
58
- execution_context=None,
59
- undo=None,
60
- *,
61
- CLIP_OT_add_marker: typing.Optional["add_marker"] = None,
62
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
59
+ override_context: typing.Union[dict, bpy.types.Context] = None,
60
+ execution_context: typing.Union[str, int] = None,
61
+ undo: bool = None,
62
+ CLIP_OT_add_marker: add_marker = None,
63
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
63
64
  ):
64
65
  """Add new marker and slide it with mouse until mouse button release
65
66
 
66
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
67
- :type execution_context: typing.Optional[typing.Union[int, str]]
68
- :type undo: typing.Optional[bool]
67
+ :type override_context: typing.Union[dict, bpy.types.Context]
68
+ :type execution_context: typing.Union[str, int]
69
+ :type undo: bool
69
70
  :param CLIP_OT_add_marker: Add Marker, Place new marker at specified location
70
- :type CLIP_OT_add_marker: typing.Optional['add_marker']
71
+ :type CLIP_OT_add_marker: add_marker
71
72
  :param TRANSFORM_OT_translate: Move, Move selected items
72
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
73
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
73
74
  """
74
75
 
75
76
  ...
76
77
 
77
78
  def apply_solution_scale(
78
- override_context=None,
79
- execution_context=None,
80
- undo=None,
81
- *,
82
- distance: typing.Optional[typing.Any] = 0.0,
79
+ override_context: typing.Union[dict, bpy.types.Context] = None,
80
+ execution_context: typing.Union[str, int] = None,
81
+ undo: bool = None,
82
+ distance: typing.Any = 0.0,
83
83
  ):
84
84
  """Apply scale on solution itself to make distance between selected tracks equals to desired
85
85
 
86
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
87
- :type execution_context: typing.Optional[typing.Union[int, str]]
88
- :type undo: typing.Optional[bool]
86
+ :type override_context: typing.Union[dict, bpy.types.Context]
87
+ :type execution_context: typing.Union[str, int]
88
+ :type undo: bool
89
89
  :param distance: Distance, Distance between selected tracks
90
- :type distance: typing.Optional[typing.Any]
90
+ :type distance: typing.Any
91
91
  """
92
92
 
93
93
  ...
94
94
 
95
95
  def average_tracks(
96
- override_context=None,
97
- execution_context=None,
98
- undo=None,
99
- *,
100
- keep_original: typing.Optional[typing.Union[bool, typing.Any]] = True,
96
+ override_context: typing.Union[dict, bpy.types.Context] = None,
97
+ execution_context: typing.Union[str, int] = None,
98
+ undo: bool = None,
99
+ keep_original: typing.Union[bool, typing.Any] = True,
101
100
  ):
102
101
  """Average selected tracks into active
103
102
 
104
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
105
- :type execution_context: typing.Optional[typing.Union[int, str]]
106
- :type undo: typing.Optional[bool]
103
+ :type override_context: typing.Union[dict, bpy.types.Context]
104
+ :type execution_context: typing.Union[str, int]
105
+ :type undo: bool
107
106
  :param keep_original: Keep Original, Keep original tracks
108
- :type keep_original: typing.Optional[typing.Union[bool, typing.Any]]
107
+ :type keep_original: typing.Union[bool, typing.Any]
109
108
  """
110
109
 
111
110
  ...
112
111
 
113
- def bundles_to_mesh(override_context=None, execution_context=None, undo=None):
112
+ def bundles_to_mesh(
113
+ override_context: typing.Union[dict, bpy.types.Context] = None,
114
+ execution_context: typing.Union[str, int] = None,
115
+ undo: bool = None,
116
+ ):
114
117
  """Create vertex cloud using coordinates of reconstructed tracks
115
118
 
116
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
117
- :type execution_context: typing.Optional[typing.Union[int, str]]
118
- :type undo: typing.Optional[bool]
119
+ :type override_context: typing.Union[dict, bpy.types.Context]
120
+ :type execution_context: typing.Union[str, int]
121
+ :type undo: bool
119
122
  """
120
123
 
121
124
  ...
122
125
 
123
126
  def camera_preset_add(
124
- override_context=None,
125
- execution_context=None,
126
- undo=None,
127
- *,
127
+ override_context: typing.Union[dict, bpy.types.Context] = None,
128
+ execution_context: typing.Union[str, int] = None,
129
+ undo: bool = None,
128
130
  name: typing.Union[str, typing.Any] = "",
129
- remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
130
- remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
131
- use_focal_length: typing.Optional[typing.Union[bool, typing.Any]] = True,
131
+ remove_name: typing.Union[bool, typing.Any] = False,
132
+ remove_active: typing.Union[bool, typing.Any] = False,
133
+ use_focal_length: typing.Union[bool, typing.Any] = True,
132
134
  ):
133
135
  """Add or remove a Tracking Camera Intrinsics Preset
134
136
 
135
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
136
- :type execution_context: typing.Optional[typing.Union[int, str]]
137
- :type undo: typing.Optional[bool]
137
+ :type override_context: typing.Union[dict, bpy.types.Context]
138
+ :type execution_context: typing.Union[str, int]
139
+ :type undo: bool
138
140
  :param name: Name, Name of the preset, used to make the path name
139
141
  :type name: typing.Union[str, typing.Any]
140
142
  :param remove_name: remove_name
141
- :type remove_name: typing.Optional[typing.Union[bool, typing.Any]]
143
+ :type remove_name: typing.Union[bool, typing.Any]
142
144
  :param remove_active: remove_active
143
- :type remove_active: typing.Optional[typing.Union[bool, typing.Any]]
145
+ :type remove_active: typing.Union[bool, typing.Any]
144
146
  :param use_focal_length: Include Focal Length, Include focal length into the preset
145
- :type use_focal_length: typing.Optional[typing.Union[bool, typing.Any]]
147
+ :type use_focal_length: typing.Union[bool, typing.Any]
146
148
  """
147
149
 
148
150
  ...
149
151
 
150
152
  def change_frame(
151
- override_context=None,
152
- execution_context=None,
153
- undo=None,
154
- *,
155
- frame: typing.Optional[typing.Any] = 0,
153
+ override_context: typing.Union[dict, bpy.types.Context] = None,
154
+ execution_context: typing.Union[str, int] = None,
155
+ undo: bool = None,
156
+ frame: typing.Any = 0,
156
157
  ):
157
158
  """Interactively change the current frame number
158
159
 
159
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
160
- :type execution_context: typing.Optional[typing.Union[int, str]]
161
- :type undo: typing.Optional[bool]
160
+ :type override_context: typing.Union[dict, bpy.types.Context]
161
+ :type execution_context: typing.Union[str, int]
162
+ :type undo: bool
162
163
  :param frame: Frame
163
- :type frame: typing.Optional[typing.Any]
164
+ :type frame: typing.Any
164
165
  """
165
166
 
166
167
  ...
167
168
 
168
169
  def clean_tracks(
169
- override_context=None,
170
- execution_context=None,
171
- undo=None,
172
- *,
173
- frames: typing.Optional[typing.Any] = 0,
174
- error: typing.Optional[typing.Any] = 0.0,
175
- action: typing.Optional[typing.Any] = "SELECT",
170
+ override_context: typing.Union[dict, bpy.types.Context] = None,
171
+ execution_context: typing.Union[str, int] = None,
172
+ undo: bool = None,
173
+ frames: typing.Any = 0,
174
+ error: typing.Any = 0.0,
175
+ action: typing.Any = "SELECT",
176
176
  ):
177
177
  """Clean tracks with high error values or few frames
178
178
 
179
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
180
- :type execution_context: typing.Optional[typing.Union[int, str]]
181
- :type undo: typing.Optional[bool]
179
+ :type override_context: typing.Union[dict, bpy.types.Context]
180
+ :type execution_context: typing.Union[str, int]
181
+ :type undo: bool
182
182
  :param frames: Tracked Frames, Affect tracks which are tracked less than the specified number of frames
183
- :type frames: typing.Optional[typing.Any]
183
+ :type frames: typing.Any
184
184
  :param error: Reprojection Error, Affect tracks which have a larger reprojection error
185
- :type error: typing.Optional[typing.Any]
185
+ :type error: typing.Any
186
186
  :param action: Action, Cleanup action to execute
187
187
 
188
188
  SELECT
@@ -193,34 +193,37 @@ def clean_tracks(
193
193
 
194
194
  DELETE_SEGMENTS
195
195
  Delete Segments -- Delete unclean segments of tracks.
196
- :type action: typing.Optional[typing.Any]
196
+ :type action: typing.Any
197
197
  """
198
198
 
199
199
  ...
200
200
 
201
- def clear_solution(override_context=None, execution_context=None, undo=None):
201
+ def clear_solution(
202
+ override_context: typing.Union[dict, bpy.types.Context] = None,
203
+ execution_context: typing.Union[str, int] = None,
204
+ undo: bool = None,
205
+ ):
202
206
  """Clear all calculated data
203
207
 
204
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
205
- :type execution_context: typing.Optional[typing.Union[int, str]]
206
- :type undo: typing.Optional[bool]
208
+ :type override_context: typing.Union[dict, bpy.types.Context]
209
+ :type execution_context: typing.Union[str, int]
210
+ :type undo: bool
207
211
  """
208
212
 
209
213
  ...
210
214
 
211
215
  def clear_track_path(
212
- override_context=None,
213
- execution_context=None,
214
- undo=None,
215
- *,
216
- action: typing.Optional[typing.Any] = "REMAINED",
217
- clear_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
216
+ override_context: typing.Union[dict, bpy.types.Context] = None,
217
+ execution_context: typing.Union[str, int] = None,
218
+ undo: bool = None,
219
+ action: typing.Any = "REMAINED",
220
+ clear_active: typing.Union[bool, typing.Any] = False,
218
221
  ):
219
222
  """Clear tracks after/before current position or clear the whole track
220
223
 
221
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
222
- :type execution_context: typing.Optional[typing.Union[int, str]]
223
- :type undo: typing.Optional[bool]
224
+ :type override_context: typing.Union[dict, bpy.types.Context]
225
+ :type execution_context: typing.Union[str, int]
226
+ :type undo: bool
224
227
  :param action: Action, Clear action to execute
225
228
 
226
229
  UPTO
@@ -231,122 +234,134 @@ def clear_track_path(
231
234
 
232
235
  ALL
233
236
  Clear All -- Clear the whole path.
234
- :type action: typing.Optional[typing.Any]
237
+ :type action: typing.Any
235
238
  :param clear_active: Clear Active, Clear active track only instead of all selected tracks
236
- :type clear_active: typing.Optional[typing.Union[bool, typing.Any]]
239
+ :type clear_active: typing.Union[bool, typing.Any]
237
240
  """
238
241
 
239
242
  ...
240
243
 
241
- def constraint_to_fcurve(override_context=None, execution_context=None, undo=None):
244
+ def constraint_to_fcurve(
245
+ override_context: typing.Union[dict, bpy.types.Context] = None,
246
+ execution_context: typing.Union[str, int] = None,
247
+ undo: bool = None,
248
+ ):
242
249
  """Create F-Curves for object which will copy object's movement caused by this constraint
243
250
 
244
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
245
- :type execution_context: typing.Optional[typing.Union[int, str]]
246
- :type undo: typing.Optional[bool]
251
+ :type override_context: typing.Union[dict, bpy.types.Context]
252
+ :type execution_context: typing.Union[str, int]
253
+ :type undo: bool
247
254
  """
248
255
 
249
256
  ...
250
257
 
251
- def copy_tracks(override_context=None, execution_context=None, undo=None):
258
+ def copy_tracks(
259
+ override_context: typing.Union[dict, bpy.types.Context] = None,
260
+ execution_context: typing.Union[str, int] = None,
261
+ undo: bool = None,
262
+ ):
252
263
  """Copy the selected tracks to the internal clipboard
253
264
 
254
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
255
- :type execution_context: typing.Optional[typing.Union[int, str]]
256
- :type undo: typing.Optional[bool]
265
+ :type override_context: typing.Union[dict, bpy.types.Context]
266
+ :type execution_context: typing.Union[str, int]
267
+ :type undo: bool
257
268
  """
258
269
 
259
270
  ...
260
271
 
261
- def create_plane_track(override_context=None, execution_context=None, undo=None):
272
+ def create_plane_track(
273
+ override_context: typing.Union[dict, bpy.types.Context] = None,
274
+ execution_context: typing.Union[str, int] = None,
275
+ undo: bool = None,
276
+ ):
262
277
  """Create new plane track out of selected point tracks
263
278
 
264
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
265
- :type execution_context: typing.Optional[typing.Union[int, str]]
266
- :type undo: typing.Optional[bool]
279
+ :type override_context: typing.Union[dict, bpy.types.Context]
280
+ :type execution_context: typing.Union[str, int]
281
+ :type undo: bool
267
282
  """
268
283
 
269
284
  ...
270
285
 
271
286
  def cursor_set(
272
- override_context=None,
273
- execution_context=None,
274
- undo=None,
275
- *,
276
- location: typing.Optional[typing.Any] = (0.0, 0.0),
287
+ override_context: typing.Union[dict, bpy.types.Context] = None,
288
+ execution_context: typing.Union[str, int] = None,
289
+ undo: bool = None,
290
+ location: typing.Any = (0.0, 0.0),
277
291
  ):
278
292
  """Set 2D cursor location
279
293
 
280
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
281
- :type execution_context: typing.Optional[typing.Union[int, str]]
282
- :type undo: typing.Optional[bool]
294
+ :type override_context: typing.Union[dict, bpy.types.Context]
295
+ :type execution_context: typing.Union[str, int]
296
+ :type undo: bool
283
297
  :param location: Location, Cursor location in normalized clip coordinates
284
- :type location: typing.Optional[typing.Any]
298
+ :type location: typing.Any
285
299
  """
286
300
 
287
301
  ...
288
302
 
289
303
  def delete_marker(
290
- override_context=None,
291
- execution_context=None,
292
- undo=None,
293
- *,
294
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
304
+ override_context: typing.Union[dict, bpy.types.Context] = None,
305
+ execution_context: typing.Union[str, int] = None,
306
+ undo: bool = None,
307
+ confirm: typing.Union[bool, typing.Any] = True,
295
308
  ):
296
309
  """Delete marker for current frame from selected tracks
297
310
 
298
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
299
- :type execution_context: typing.Optional[typing.Union[int, str]]
300
- :type undo: typing.Optional[bool]
311
+ :type override_context: typing.Union[dict, bpy.types.Context]
312
+ :type execution_context: typing.Union[str, int]
313
+ :type undo: bool
301
314
  :param confirm: Confirm, Prompt for confirmation
302
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
315
+ :type confirm: typing.Union[bool, typing.Any]
303
316
  """
304
317
 
305
318
  ...
306
319
 
307
- def delete_proxy(override_context=None, execution_context=None, undo=None):
320
+ def delete_proxy(
321
+ override_context: typing.Union[dict, bpy.types.Context] = None,
322
+ execution_context: typing.Union[str, int] = None,
323
+ undo: bool = None,
324
+ ):
308
325
  """Delete movie clip proxy files from the hard drive
309
326
 
310
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
311
- :type execution_context: typing.Optional[typing.Union[int, str]]
312
- :type undo: typing.Optional[bool]
327
+ :type override_context: typing.Union[dict, bpy.types.Context]
328
+ :type execution_context: typing.Union[str, int]
329
+ :type undo: bool
313
330
  """
314
331
 
315
332
  ...
316
333
 
317
334
  def delete_track(
318
- override_context=None,
319
- execution_context=None,
320
- undo=None,
321
- *,
322
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
335
+ override_context: typing.Union[dict, bpy.types.Context] = None,
336
+ execution_context: typing.Union[str, int] = None,
337
+ undo: bool = None,
338
+ confirm: typing.Union[bool, typing.Any] = True,
323
339
  ):
324
340
  """Delete selected tracks
325
341
 
326
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
327
- :type execution_context: typing.Optional[typing.Union[int, str]]
328
- :type undo: typing.Optional[bool]
342
+ :type override_context: typing.Union[dict, bpy.types.Context]
343
+ :type execution_context: typing.Union[str, int]
344
+ :type undo: bool
329
345
  :param confirm: Confirm, Prompt for confirmation
330
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
346
+ :type confirm: typing.Union[bool, typing.Any]
331
347
  """
332
348
 
333
349
  ...
334
350
 
335
351
  def detect_features(
336
- override_context=None,
337
- execution_context=None,
338
- undo=None,
339
- *,
340
- placement: typing.Optional[typing.Any] = "FRAME",
341
- margin: typing.Optional[typing.Any] = 16,
342
- threshold: typing.Optional[typing.Any] = 0.5,
343
- min_distance: typing.Optional[typing.Any] = 120,
352
+ override_context: typing.Union[dict, bpy.types.Context] = None,
353
+ execution_context: typing.Union[str, int] = None,
354
+ undo: bool = None,
355
+ placement: typing.Any = "FRAME",
356
+ margin: typing.Any = 16,
357
+ threshold: typing.Any = 0.5,
358
+ min_distance: typing.Any = 120,
344
359
  ):
345
360
  """Automatically detect features and place markers to track
346
361
 
347
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
348
- :type execution_context: typing.Optional[typing.Union[int, str]]
349
- :type undo: typing.Optional[bool]
362
+ :type override_context: typing.Union[dict, bpy.types.Context]
363
+ :type execution_context: typing.Union[str, int]
364
+ :type undo: bool
350
365
  :param placement: Placement, Placement for detected features
351
366
 
352
367
  FRAME
@@ -357,29 +372,28 @@ def detect_features(
357
372
 
358
373
  OUTSIDE_GPENCIL
359
374
  Outside Annotated Area -- Place markers only outside areas outlined with the Annotation tool.
360
- :type placement: typing.Optional[typing.Any]
375
+ :type placement: typing.Any
361
376
  :param margin: Margin, Only features further than margin pixels from the image edges are considered
362
- :type margin: typing.Optional[typing.Any]
377
+ :type margin: typing.Any
363
378
  :param threshold: Threshold, Threshold level to consider feature good enough for tracking
364
- :type threshold: typing.Optional[typing.Any]
379
+ :type threshold: typing.Any
365
380
  :param min_distance: Distance, Minimal distance accepted between two features
366
- :type min_distance: typing.Optional[typing.Any]
381
+ :type min_distance: typing.Any
367
382
  """
368
383
 
369
384
  ...
370
385
 
371
386
  def disable_markers(
372
- override_context=None,
373
- execution_context=None,
374
- undo=None,
375
- *,
376
- action: typing.Optional[typing.Any] = "DISABLE",
387
+ override_context: typing.Union[dict, bpy.types.Context] = None,
388
+ execution_context: typing.Union[str, int] = None,
389
+ undo: bool = None,
390
+ action: typing.Any = "DISABLE",
377
391
  ):
378
392
  """Disable/enable selected markers
379
393
 
380
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
381
- :type execution_context: typing.Optional[typing.Union[int, str]]
382
- :type undo: typing.Optional[bool]
394
+ :type override_context: typing.Union[dict, bpy.types.Context]
395
+ :type execution_context: typing.Union[str, int]
396
+ :type undo: bool
383
397
  :param action: Action, Disable action to execute
384
398
 
385
399
  DISABLE
@@ -390,72 +404,73 @@ def disable_markers(
390
404
 
391
405
  TOGGLE
392
406
  Toggle -- Toggle disabled flag for selected markers.
393
- :type action: typing.Optional[typing.Any]
407
+ :type action: typing.Any
394
408
  """
395
409
 
396
410
  ...
397
411
 
398
412
  def dopesheet_select_channel(
399
- override_context=None,
400
- execution_context=None,
401
- undo=None,
402
- *,
403
- location: typing.Optional[typing.Any] = (0.0, 0.0),
404
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
413
+ override_context: typing.Union[dict, bpy.types.Context] = None,
414
+ execution_context: typing.Union[str, int] = None,
415
+ undo: bool = None,
416
+ location: typing.Any = (0.0, 0.0),
417
+ extend: typing.Union[bool, typing.Any] = False,
405
418
  ):
406
419
  """Select movie tracking channel
407
420
 
408
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
409
- :type execution_context: typing.Optional[typing.Union[int, str]]
410
- :type undo: typing.Optional[bool]
421
+ :type override_context: typing.Union[dict, bpy.types.Context]
422
+ :type execution_context: typing.Union[str, int]
423
+ :type undo: bool
411
424
  :param location: Location, Mouse location to select channel
412
- :type location: typing.Optional[typing.Any]
425
+ :type location: typing.Any
413
426
  :param extend: Extend, Extend selection rather than clearing the existing selection
414
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
427
+ :type extend: typing.Union[bool, typing.Any]
415
428
  """
416
429
 
417
430
  ...
418
431
 
419
- def dopesheet_view_all(override_context=None, execution_context=None, undo=None):
432
+ def dopesheet_view_all(
433
+ override_context: typing.Union[dict, bpy.types.Context] = None,
434
+ execution_context: typing.Union[str, int] = None,
435
+ undo: bool = None,
436
+ ):
420
437
  """Reset viewable area to show full keyframe range
421
438
 
422
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
423
- :type execution_context: typing.Optional[typing.Union[int, str]]
424
- :type undo: typing.Optional[bool]
439
+ :type override_context: typing.Union[dict, bpy.types.Context]
440
+ :type execution_context: typing.Union[str, int]
441
+ :type undo: bool
425
442
  """
426
443
 
427
444
  ...
428
445
 
429
446
  def filter_tracks(
430
- override_context=None,
431
- execution_context=None,
432
- undo=None,
433
- *,
434
- track_threshold: typing.Optional[typing.Any] = 5.0,
447
+ override_context: typing.Union[dict, bpy.types.Context] = None,
448
+ execution_context: typing.Union[str, int] = None,
449
+ undo: bool = None,
450
+ track_threshold: typing.Any = 5.0,
435
451
  ):
436
452
  """Filter tracks which has weirdly looking spikes in motion curves
437
453
 
438
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
439
- :type execution_context: typing.Optional[typing.Union[int, str]]
440
- :type undo: typing.Optional[bool]
454
+ :type override_context: typing.Union[dict, bpy.types.Context]
455
+ :type execution_context: typing.Union[str, int]
456
+ :type undo: bool
441
457
  :param track_threshold: Track Threshold, Filter Threshold to select problematic tracks
442
- :type track_threshold: typing.Optional[typing.Any]
458
+ :type track_threshold: typing.Any
443
459
  """
444
460
 
445
461
  ...
446
462
 
447
463
  def frame_jump(
448
- override_context=None,
449
- execution_context=None,
450
- undo=None,
451
- *,
452
- position: typing.Optional[typing.Any] = "PATHSTART",
464
+ override_context: typing.Union[dict, bpy.types.Context] = None,
465
+ execution_context: typing.Union[str, int] = None,
466
+ undo: bool = None,
467
+ position: typing.Any = "PATHSTART",
453
468
  ):
454
469
  """Jump to special frame
455
470
 
456
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
457
- :type execution_context: typing.Optional[typing.Union[int, str]]
458
- :type undo: typing.Optional[bool]
471
+ :type override_context: typing.Union[dict, bpy.types.Context]
472
+ :type execution_context: typing.Union[str, int]
473
+ :type undo: bool
459
474
  :param position: Position, Position to jump to
460
475
 
461
476
  PATHSTART
@@ -469,63 +484,67 @@ def frame_jump(
469
484
 
470
485
  FAILNEXT
471
486
  Next Failed -- Jump to next failed frame.
472
- :type position: typing.Optional[typing.Any]
487
+ :type position: typing.Any
473
488
  """
474
489
 
475
490
  ...
476
491
 
477
492
  def graph_center_current_frame(
478
- override_context=None, execution_context=None, undo=None
493
+ override_context: typing.Union[dict, bpy.types.Context] = None,
494
+ execution_context: typing.Union[str, int] = None,
495
+ undo: bool = None,
479
496
  ):
480
497
  """Scroll view so current frame would be centered
481
498
 
482
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
483
- :type execution_context: typing.Optional[typing.Union[int, str]]
484
- :type undo: typing.Optional[bool]
499
+ :type override_context: typing.Union[dict, bpy.types.Context]
500
+ :type execution_context: typing.Union[str, int]
501
+ :type undo: bool
485
502
  """
486
503
 
487
504
  ...
488
505
 
489
506
  def graph_delete_curve(
490
- override_context=None,
491
- execution_context=None,
492
- undo=None,
493
- *,
494
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
507
+ override_context: typing.Union[dict, bpy.types.Context] = None,
508
+ execution_context: typing.Union[str, int] = None,
509
+ undo: bool = None,
510
+ confirm: typing.Union[bool, typing.Any] = True,
495
511
  ):
496
512
  """Delete track corresponding to the selected curve
497
513
 
498
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
499
- :type execution_context: typing.Optional[typing.Union[int, str]]
500
- :type undo: typing.Optional[bool]
514
+ :type override_context: typing.Union[dict, bpy.types.Context]
515
+ :type execution_context: typing.Union[str, int]
516
+ :type undo: bool
501
517
  :param confirm: Confirm, Prompt for confirmation
502
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
518
+ :type confirm: typing.Union[bool, typing.Any]
503
519
  """
504
520
 
505
521
  ...
506
522
 
507
- def graph_delete_knot(override_context=None, execution_context=None, undo=None):
523
+ def graph_delete_knot(
524
+ override_context: typing.Union[dict, bpy.types.Context] = None,
525
+ execution_context: typing.Union[str, int] = None,
526
+ undo: bool = None,
527
+ ):
508
528
  """Delete curve knots
509
529
 
510
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
511
- :type execution_context: typing.Optional[typing.Union[int, str]]
512
- :type undo: typing.Optional[bool]
530
+ :type override_context: typing.Union[dict, bpy.types.Context]
531
+ :type execution_context: typing.Union[str, int]
532
+ :type undo: bool
513
533
  """
514
534
 
515
535
  ...
516
536
 
517
537
  def graph_disable_markers(
518
- override_context=None,
519
- execution_context=None,
520
- undo=None,
521
- *,
522
- action: typing.Optional[typing.Any] = "DISABLE",
538
+ override_context: typing.Union[dict, bpy.types.Context] = None,
539
+ execution_context: typing.Union[str, int] = None,
540
+ undo: bool = None,
541
+ action: typing.Any = "DISABLE",
523
542
  ):
524
543
  """Disable/enable selected markers
525
544
 
526
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
527
- :type execution_context: typing.Optional[typing.Union[int, str]]
528
- :type undo: typing.Optional[bool]
545
+ :type override_context: typing.Union[dict, bpy.types.Context]
546
+ :type execution_context: typing.Union[str, int]
547
+ :type undo: bool
529
548
  :param action: Action, Disable action to execute
530
549
 
531
550
  DISABLE
@@ -536,44 +555,42 @@ def graph_disable_markers(
536
555
 
537
556
  TOGGLE
538
557
  Toggle -- Toggle disabled flag for selected markers.
539
- :type action: typing.Optional[typing.Any]
558
+ :type action: typing.Any
540
559
  """
541
560
 
542
561
  ...
543
562
 
544
563
  def graph_select(
545
- override_context=None,
546
- execution_context=None,
547
- undo=None,
548
- *,
549
- location: typing.Optional[typing.Any] = (0.0, 0.0),
550
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
564
+ override_context: typing.Union[dict, bpy.types.Context] = None,
565
+ execution_context: typing.Union[str, int] = None,
566
+ undo: bool = None,
567
+ location: typing.Any = (0.0, 0.0),
568
+ extend: typing.Union[bool, typing.Any] = False,
551
569
  ):
552
570
  """Select graph curves
553
571
 
554
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
555
- :type execution_context: typing.Optional[typing.Union[int, str]]
556
- :type undo: typing.Optional[bool]
572
+ :type override_context: typing.Union[dict, bpy.types.Context]
573
+ :type execution_context: typing.Union[str, int]
574
+ :type undo: bool
557
575
  :param location: Location, Mouse location to select nearest entity
558
- :type location: typing.Optional[typing.Any]
576
+ :type location: typing.Any
559
577
  :param extend: Extend, Extend selection rather than clearing the existing selection
560
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
578
+ :type extend: typing.Union[bool, typing.Any]
561
579
  """
562
580
 
563
581
  ...
564
582
 
565
583
  def graph_select_all_markers(
566
- override_context=None,
567
- execution_context=None,
568
- undo=None,
569
- *,
570
- action: typing.Optional[typing.Any] = "TOGGLE",
584
+ override_context: typing.Union[dict, bpy.types.Context] = None,
585
+ execution_context: typing.Union[str, int] = None,
586
+ undo: bool = None,
587
+ action: typing.Any = "TOGGLE",
571
588
  ):
572
589
  """Change selection of all markers of active track
573
590
 
574
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
575
- :type execution_context: typing.Optional[typing.Union[int, str]]
576
- :type undo: typing.Optional[bool]
591
+ :type override_context: typing.Union[dict, bpy.types.Context]
592
+ :type execution_context: typing.Union[str, int]
593
+ :type undo: bool
577
594
  :param action: Action, Selection action to execute
578
595
 
579
596
  TOGGLE
@@ -587,137 +604,158 @@ def graph_select_all_markers(
587
604
 
588
605
  INVERT
589
606
  Invert -- Invert selection of all elements.
590
- :type action: typing.Optional[typing.Any]
607
+ :type action: typing.Any
591
608
  """
592
609
 
593
610
  ...
594
611
 
595
612
  def graph_select_box(
596
- override_context=None,
597
- execution_context=None,
598
- undo=None,
599
- *,
600
- xmin: typing.Optional[typing.Any] = 0,
601
- xmax: typing.Optional[typing.Any] = 0,
602
- ymin: typing.Optional[typing.Any] = 0,
603
- ymax: typing.Optional[typing.Any] = 0,
604
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
605
- deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
606
- extend: typing.Optional[typing.Union[bool, typing.Any]] = True,
613
+ override_context: typing.Union[dict, bpy.types.Context] = None,
614
+ execution_context: typing.Union[str, int] = None,
615
+ undo: bool = None,
616
+ xmin: typing.Any = 0,
617
+ xmax: typing.Any = 0,
618
+ ymin: typing.Any = 0,
619
+ ymax: typing.Any = 0,
620
+ wait_for_input: typing.Union[bool, typing.Any] = True,
621
+ deselect: typing.Union[bool, typing.Any] = False,
622
+ extend: typing.Union[bool, typing.Any] = True,
607
623
  ):
608
624
  """Select curve points using box selection
609
625
 
610
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
611
- :type execution_context: typing.Optional[typing.Union[int, str]]
612
- :type undo: typing.Optional[bool]
626
+ :type override_context: typing.Union[dict, bpy.types.Context]
627
+ :type execution_context: typing.Union[str, int]
628
+ :type undo: bool
613
629
  :param xmin: X Min
614
- :type xmin: typing.Optional[typing.Any]
630
+ :type xmin: typing.Any
615
631
  :param xmax: X Max
616
- :type xmax: typing.Optional[typing.Any]
632
+ :type xmax: typing.Any
617
633
  :param ymin: Y Min
618
- :type ymin: typing.Optional[typing.Any]
634
+ :type ymin: typing.Any
619
635
  :param ymax: Y Max
620
- :type ymax: typing.Optional[typing.Any]
636
+ :type ymax: typing.Any
621
637
  :param wait_for_input: Wait for Input
622
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
638
+ :type wait_for_input: typing.Union[bool, typing.Any]
623
639
  :param deselect: Deselect, Deselect rather than select items
624
- :type deselect: typing.Optional[typing.Union[bool, typing.Any]]
640
+ :type deselect: typing.Union[bool, typing.Any]
625
641
  :param extend: Extend, Extend selection instead of deselecting everything first
626
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
642
+ :type extend: typing.Union[bool, typing.Any]
627
643
  """
628
644
 
629
645
  ...
630
646
 
631
- def graph_view_all(override_context=None, execution_context=None, undo=None):
647
+ def graph_view_all(
648
+ override_context: typing.Union[dict, bpy.types.Context] = None,
649
+ execution_context: typing.Union[str, int] = None,
650
+ undo: bool = None,
651
+ ):
632
652
  """View all curves in editor
633
653
 
634
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
635
- :type execution_context: typing.Optional[typing.Union[int, str]]
636
- :type undo: typing.Optional[bool]
654
+ :type override_context: typing.Union[dict, bpy.types.Context]
655
+ :type execution_context: typing.Union[str, int]
656
+ :type undo: bool
637
657
  """
638
658
 
639
659
  ...
640
660
 
641
661
  def hide_tracks(
642
- override_context=None,
643
- execution_context=None,
644
- undo=None,
645
- *,
646
- unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
662
+ override_context: typing.Union[dict, bpy.types.Context] = None,
663
+ execution_context: typing.Union[str, int] = None,
664
+ undo: bool = None,
665
+ unselected: typing.Union[bool, typing.Any] = False,
647
666
  ):
648
667
  """Hide selected tracks
649
668
 
650
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
651
- :type execution_context: typing.Optional[typing.Union[int, str]]
652
- :type undo: typing.Optional[bool]
669
+ :type override_context: typing.Union[dict, bpy.types.Context]
670
+ :type execution_context: typing.Union[str, int]
671
+ :type undo: bool
653
672
  :param unselected: Unselected, Hide unselected tracks
654
- :type unselected: typing.Optional[typing.Union[bool, typing.Any]]
673
+ :type unselected: typing.Union[bool, typing.Any]
655
674
  """
656
675
 
657
676
  ...
658
677
 
659
- def hide_tracks_clear(override_context=None, execution_context=None, undo=None):
678
+ def hide_tracks_clear(
679
+ override_context: typing.Union[dict, bpy.types.Context] = None,
680
+ execution_context: typing.Union[str, int] = None,
681
+ undo: bool = None,
682
+ ):
660
683
  """Clear hide selected tracks
661
684
 
662
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
663
- :type execution_context: typing.Optional[typing.Union[int, str]]
664
- :type undo: typing.Optional[bool]
685
+ :type override_context: typing.Union[dict, bpy.types.Context]
686
+ :type execution_context: typing.Union[str, int]
687
+ :type undo: bool
665
688
  """
666
689
 
667
690
  ...
668
691
 
669
- def join_tracks(override_context=None, execution_context=None, undo=None):
692
+ def join_tracks(
693
+ override_context: typing.Union[dict, bpy.types.Context] = None,
694
+ execution_context: typing.Union[str, int] = None,
695
+ undo: bool = None,
696
+ ):
670
697
  """Join selected tracks
671
698
 
672
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
673
- :type execution_context: typing.Optional[typing.Union[int, str]]
674
- :type undo: typing.Optional[bool]
699
+ :type override_context: typing.Union[dict, bpy.types.Context]
700
+ :type execution_context: typing.Union[str, int]
701
+ :type undo: bool
675
702
  """
676
703
 
677
704
  ...
678
705
 
679
- def keyframe_delete(override_context=None, execution_context=None, undo=None):
706
+ def keyframe_delete(
707
+ override_context: typing.Union[dict, bpy.types.Context] = None,
708
+ execution_context: typing.Union[str, int] = None,
709
+ undo: bool = None,
710
+ ):
680
711
  """Delete a keyframe from selected tracks at current frame
681
712
 
682
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
683
- :type execution_context: typing.Optional[typing.Union[int, str]]
684
- :type undo: typing.Optional[bool]
713
+ :type override_context: typing.Union[dict, bpy.types.Context]
714
+ :type execution_context: typing.Union[str, int]
715
+ :type undo: bool
685
716
  """
686
717
 
687
718
  ...
688
719
 
689
- def keyframe_insert(override_context=None, execution_context=None, undo=None):
720
+ def keyframe_insert(
721
+ override_context: typing.Union[dict, bpy.types.Context] = None,
722
+ execution_context: typing.Union[str, int] = None,
723
+ undo: bool = None,
724
+ ):
690
725
  """Insert a keyframe to selected tracks at current frame
691
726
 
692
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
693
- :type execution_context: typing.Optional[typing.Union[int, str]]
694
- :type undo: typing.Optional[bool]
727
+ :type override_context: typing.Union[dict, bpy.types.Context]
728
+ :type execution_context: typing.Union[str, int]
729
+ :type undo: bool
695
730
  """
696
731
 
697
732
  ...
698
733
 
699
- def lock_selection_toggle(override_context=None, execution_context=None, undo=None):
734
+ def lock_selection_toggle(
735
+ override_context: typing.Union[dict, bpy.types.Context] = None,
736
+ execution_context: typing.Union[str, int] = None,
737
+ undo: bool = None,
738
+ ):
700
739
  """Toggle Lock Selection option of the current clip editor
701
740
 
702
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
703
- :type execution_context: typing.Optional[typing.Union[int, str]]
704
- :type undo: typing.Optional[bool]
741
+ :type override_context: typing.Union[dict, bpy.types.Context]
742
+ :type execution_context: typing.Union[str, int]
743
+ :type undo: bool
705
744
  """
706
745
 
707
746
  ...
708
747
 
709
748
  def lock_tracks(
710
- override_context=None,
711
- execution_context=None,
712
- undo=None,
713
- *,
714
- action: typing.Optional[typing.Any] = "LOCK",
749
+ override_context: typing.Union[dict, bpy.types.Context] = None,
750
+ execution_context: typing.Union[str, int] = None,
751
+ undo: bool = None,
752
+ action: typing.Any = "LOCK",
715
753
  ):
716
754
  """Lock/unlock selected tracks
717
755
 
718
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
719
- :type execution_context: typing.Optional[typing.Union[int, str]]
720
- :type undo: typing.Optional[bool]
756
+ :type override_context: typing.Union[dict, bpy.types.Context]
757
+ :type execution_context: typing.Union[str, int]
758
+ :type undo: bool
721
759
  :param action: Action, Lock action to execute
722
760
 
723
761
  LOCK
@@ -728,131 +766,129 @@ def lock_tracks(
728
766
 
729
767
  TOGGLE
730
768
  Toggle -- Toggle locked flag for selected tracks.
731
- :type action: typing.Optional[typing.Any]
769
+ :type action: typing.Any
732
770
  """
733
771
 
734
772
  ...
735
773
 
736
774
  def mode_set(
737
- override_context=None,
738
- execution_context=None,
739
- undo=None,
740
- *,
741
- mode: typing.Optional[typing.Any] = "TRACKING",
775
+ override_context: typing.Union[dict, bpy.types.Context] = None,
776
+ execution_context: typing.Union[str, int] = None,
777
+ undo: bool = None,
778
+ mode: typing.Any = "TRACKING",
742
779
  ):
743
780
  """Set the clip interaction mode
744
781
 
745
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
746
- :type execution_context: typing.Optional[typing.Union[int, str]]
747
- :type undo: typing.Optional[bool]
782
+ :type override_context: typing.Union[dict, bpy.types.Context]
783
+ :type execution_context: typing.Union[str, int]
784
+ :type undo: bool
748
785
  :param mode: Mode
749
- :type mode: typing.Optional[typing.Any]
786
+ :type mode: typing.Any
750
787
  """
751
788
 
752
789
  ...
753
790
 
754
791
  def new_image_from_plane_marker(
755
- override_context=None, execution_context=None, undo=None
792
+ override_context: typing.Union[dict, bpy.types.Context] = None,
793
+ execution_context: typing.Union[str, int] = None,
794
+ undo: bool = None,
756
795
  ):
757
796
  """Create new image from the content of the plane marker
758
797
 
759
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
760
- :type execution_context: typing.Optional[typing.Union[int, str]]
761
- :type undo: typing.Optional[bool]
798
+ :type override_context: typing.Union[dict, bpy.types.Context]
799
+ :type execution_context: typing.Union[str, int]
800
+ :type undo: bool
762
801
  """
763
802
 
764
803
  ...
765
804
 
766
805
  def open(
767
- override_context=None,
768
- execution_context=None,
769
- undo=None,
770
- *,
806
+ override_context: typing.Union[dict, bpy.types.Context] = None,
807
+ execution_context: typing.Union[str, int] = None,
808
+ undo: bool = None,
771
809
  directory: typing.Union[str, typing.Any] = "",
772
- files: typing.Optional[
773
- bpy.types.bpy_prop_collection["bpy.types.OperatorFileListElement"]
774
- ] = None,
775
- hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
776
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
777
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
778
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
779
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = True,
780
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = True,
781
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
782
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
783
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
784
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
785
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
786
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
787
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
788
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
789
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
790
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
791
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
792
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
793
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
794
- filemode: typing.Optional[typing.Any] = 9,
795
- relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
796
- show_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
797
- use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
798
- display_type: typing.Optional[typing.Any] = "DEFAULT",
799
- sort_method: typing.Optional[typing.Any] = "",
810
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
811
+ hide_props_region: typing.Union[bool, typing.Any] = True,
812
+ check_existing: typing.Union[bool, typing.Any] = False,
813
+ filter_blender: typing.Union[bool, typing.Any] = False,
814
+ filter_backup: typing.Union[bool, typing.Any] = False,
815
+ filter_image: typing.Union[bool, typing.Any] = True,
816
+ filter_movie: typing.Union[bool, typing.Any] = True,
817
+ filter_python: typing.Union[bool, typing.Any] = False,
818
+ filter_font: typing.Union[bool, typing.Any] = False,
819
+ filter_sound: typing.Union[bool, typing.Any] = False,
820
+ filter_text: typing.Union[bool, typing.Any] = False,
821
+ filter_archive: typing.Union[bool, typing.Any] = False,
822
+ filter_btx: typing.Union[bool, typing.Any] = False,
823
+ filter_collada: typing.Union[bool, typing.Any] = False,
824
+ filter_alembic: typing.Union[bool, typing.Any] = False,
825
+ filter_usd: typing.Union[bool, typing.Any] = False,
826
+ filter_obj: typing.Union[bool, typing.Any] = False,
827
+ filter_volume: typing.Union[bool, typing.Any] = False,
828
+ filter_folder: typing.Union[bool, typing.Any] = True,
829
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
830
+ filemode: typing.Any = 9,
831
+ relative_path: typing.Union[bool, typing.Any] = True,
832
+ show_multiview: typing.Union[bool, typing.Any] = False,
833
+ use_multiview: typing.Union[bool, typing.Any] = False,
834
+ display_type: typing.Any = "DEFAULT",
835
+ sort_method: typing.Any = "",
800
836
  ):
801
837
  """Load a sequence of frames or a movie file
802
838
 
803
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
804
- :type execution_context: typing.Optional[typing.Union[int, str]]
805
- :type undo: typing.Optional[bool]
839
+ :type override_context: typing.Union[dict, bpy.types.Context]
840
+ :type execution_context: typing.Union[str, int]
841
+ :type undo: bool
806
842
  :param directory: Directory, Directory of the file
807
843
  :type directory: typing.Union[str, typing.Any]
808
844
  :param files: Files
809
- :type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
845
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
810
846
  :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
811
- :type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
847
+ :type hide_props_region: typing.Union[bool, typing.Any]
812
848
  :param check_existing: Check Existing, Check and warn on overwriting existing files
813
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
849
+ :type check_existing: typing.Union[bool, typing.Any]
814
850
  :param filter_blender: Filter .blend files
815
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
851
+ :type filter_blender: typing.Union[bool, typing.Any]
816
852
  :param filter_backup: Filter .blend files
817
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
853
+ :type filter_backup: typing.Union[bool, typing.Any]
818
854
  :param filter_image: Filter image files
819
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
855
+ :type filter_image: typing.Union[bool, typing.Any]
820
856
  :param filter_movie: Filter movie files
821
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
857
+ :type filter_movie: typing.Union[bool, typing.Any]
822
858
  :param filter_python: Filter Python files
823
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
859
+ :type filter_python: typing.Union[bool, typing.Any]
824
860
  :param filter_font: Filter font files
825
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
861
+ :type filter_font: typing.Union[bool, typing.Any]
826
862
  :param filter_sound: Filter sound files
827
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
863
+ :type filter_sound: typing.Union[bool, typing.Any]
828
864
  :param filter_text: Filter text files
829
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
865
+ :type filter_text: typing.Union[bool, typing.Any]
830
866
  :param filter_archive: Filter archive files
831
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
867
+ :type filter_archive: typing.Union[bool, typing.Any]
832
868
  :param filter_btx: Filter btx files
833
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
869
+ :type filter_btx: typing.Union[bool, typing.Any]
834
870
  :param filter_collada: Filter COLLADA files
835
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
871
+ :type filter_collada: typing.Union[bool, typing.Any]
836
872
  :param filter_alembic: Filter Alembic files
837
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
873
+ :type filter_alembic: typing.Union[bool, typing.Any]
838
874
  :param filter_usd: Filter USD files
839
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
875
+ :type filter_usd: typing.Union[bool, typing.Any]
840
876
  :param filter_obj: Filter OBJ files
841
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
877
+ :type filter_obj: typing.Union[bool, typing.Any]
842
878
  :param filter_volume: Filter OpenVDB volume files
843
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
879
+ :type filter_volume: typing.Union[bool, typing.Any]
844
880
  :param filter_folder: Filter folders
845
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
881
+ :type filter_folder: typing.Union[bool, typing.Any]
846
882
  :param filter_blenlib: Filter Blender IDs
847
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
883
+ :type filter_blenlib: typing.Union[bool, typing.Any]
848
884
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
849
- :type filemode: typing.Optional[typing.Any]
885
+ :type filemode: typing.Any
850
886
  :param relative_path: Relative Path, Select the file relative to the blend file
851
- :type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
887
+ :type relative_path: typing.Union[bool, typing.Any]
852
888
  :param show_multiview: Enable Multi-View
853
- :type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
889
+ :type show_multiview: typing.Union[bool, typing.Any]
854
890
  :param use_multiview: Use Multi-View
855
- :type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
891
+ :type use_multiview: typing.Union[bool, typing.Any]
856
892
  :param display_type: Display Type
857
893
 
858
894
  DEFAULT
@@ -866,7 +902,7 @@ def open(
866
902
 
867
903
  THUMBNAIL
868
904
  Thumbnails -- Display files as thumbnails.
869
- :type display_type: typing.Optional[typing.Any]
905
+ :type display_type: typing.Any
870
906
  :param sort_method: File sorting mode
871
907
 
872
908
  DEFAULT
@@ -883,105 +919,118 @@ def open(
883
919
 
884
920
  FILE_SORT_SIZE
885
921
  Size -- Sort files by size.
886
- :type sort_method: typing.Optional[typing.Any]
922
+ :type sort_method: typing.Any
887
923
  """
888
924
 
889
925
  ...
890
926
 
891
- def paste_tracks(override_context=None, execution_context=None, undo=None):
927
+ def paste_tracks(
928
+ override_context: typing.Union[dict, bpy.types.Context] = None,
929
+ execution_context: typing.Union[str, int] = None,
930
+ undo: bool = None,
931
+ ):
892
932
  """Paste tracks from the internal clipboard
893
933
 
894
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
895
- :type execution_context: typing.Optional[typing.Union[int, str]]
896
- :type undo: typing.Optional[bool]
934
+ :type override_context: typing.Union[dict, bpy.types.Context]
935
+ :type execution_context: typing.Union[str, int]
936
+ :type undo: bool
897
937
  """
898
938
 
899
939
  ...
900
940
 
901
- def prefetch(override_context=None, execution_context=None, undo=None):
941
+ def prefetch(
942
+ override_context: typing.Union[dict, bpy.types.Context] = None,
943
+ execution_context: typing.Union[str, int] = None,
944
+ undo: bool = None,
945
+ ):
902
946
  """Prefetch frames from disk for faster playback/tracking
903
947
 
904
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
905
- :type execution_context: typing.Optional[typing.Union[int, str]]
906
- :type undo: typing.Optional[bool]
948
+ :type override_context: typing.Union[dict, bpy.types.Context]
949
+ :type execution_context: typing.Union[str, int]
950
+ :type undo: bool
907
951
  """
908
952
 
909
953
  ...
910
954
 
911
- def rebuild_proxy(override_context=None, execution_context=None, undo=None):
955
+ def rebuild_proxy(
956
+ override_context: typing.Union[dict, bpy.types.Context] = None,
957
+ execution_context: typing.Union[str, int] = None,
958
+ undo: bool = None,
959
+ ):
912
960
  """Rebuild all selected proxies and timecode indices in the background
913
961
 
914
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
915
- :type execution_context: typing.Optional[typing.Union[int, str]]
916
- :type undo: typing.Optional[bool]
962
+ :type override_context: typing.Union[dict, bpy.types.Context]
963
+ :type execution_context: typing.Union[str, int]
964
+ :type undo: bool
917
965
  """
918
966
 
919
967
  ...
920
968
 
921
969
  def refine_markers(
922
- override_context=None,
923
- execution_context=None,
924
- undo=None,
925
- *,
926
- backwards: typing.Optional[typing.Union[bool, typing.Any]] = False,
970
+ override_context: typing.Union[dict, bpy.types.Context] = None,
971
+ execution_context: typing.Union[str, int] = None,
972
+ undo: bool = None,
973
+ backwards: typing.Union[bool, typing.Any] = False,
927
974
  ):
928
975
  """Refine selected markers positions by running the tracker from track's reference to current frame
929
976
 
930
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
931
- :type execution_context: typing.Optional[typing.Union[int, str]]
932
- :type undo: typing.Optional[bool]
977
+ :type override_context: typing.Union[dict, bpy.types.Context]
978
+ :type execution_context: typing.Union[str, int]
979
+ :type undo: bool
933
980
  :param backwards: Backwards, Do backwards tracking
934
- :type backwards: typing.Optional[typing.Union[bool, typing.Any]]
981
+ :type backwards: typing.Union[bool, typing.Any]
935
982
  """
936
983
 
937
984
  ...
938
985
 
939
- def reload(override_context=None, execution_context=None, undo=None):
986
+ def reload(
987
+ override_context: typing.Union[dict, bpy.types.Context] = None,
988
+ execution_context: typing.Union[str, int] = None,
989
+ undo: bool = None,
990
+ ):
940
991
  """Reload clip
941
992
 
942
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
943
- :type execution_context: typing.Optional[typing.Union[int, str]]
944
- :type undo: typing.Optional[bool]
993
+ :type override_context: typing.Union[dict, bpy.types.Context]
994
+ :type execution_context: typing.Union[str, int]
995
+ :type undo: bool
945
996
  """
946
997
 
947
998
  ...
948
999
 
949
1000
  def select(
950
- override_context=None,
951
- execution_context=None,
952
- undo=None,
953
- *,
954
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
955
- deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
956
- location: typing.Optional[typing.Any] = (0.0, 0.0),
1001
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1002
+ execution_context: typing.Union[str, int] = None,
1003
+ undo: bool = None,
1004
+ extend: typing.Union[bool, typing.Any] = False,
1005
+ deselect_all: typing.Union[bool, typing.Any] = False,
1006
+ location: typing.Any = (0.0, 0.0),
957
1007
  ):
958
1008
  """Select tracking markers
959
1009
 
960
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
961
- :type execution_context: typing.Optional[typing.Union[int, str]]
962
- :type undo: typing.Optional[bool]
1010
+ :type override_context: typing.Union[dict, bpy.types.Context]
1011
+ :type execution_context: typing.Union[str, int]
1012
+ :type undo: bool
963
1013
  :param extend: Extend, Extend selection rather than clearing the existing selection
964
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
1014
+ :type extend: typing.Union[bool, typing.Any]
965
1015
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
966
- :type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
1016
+ :type deselect_all: typing.Union[bool, typing.Any]
967
1017
  :param location: Location, Mouse location in normalized coordinates, 0.0 to 1.0 is within the image bounds
968
- :type location: typing.Optional[typing.Any]
1018
+ :type location: typing.Any
969
1019
  """
970
1020
 
971
1021
  ...
972
1022
 
973
1023
  def select_all(
974
- override_context=None,
975
- execution_context=None,
976
- undo=None,
977
- *,
978
- action: typing.Optional[typing.Any] = "TOGGLE",
1024
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1025
+ execution_context: typing.Union[str, int] = None,
1026
+ undo: bool = None,
1027
+ action: typing.Any = "TOGGLE",
979
1028
  ):
980
1029
  """Change selection of all tracking markers
981
1030
 
982
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
983
- :type execution_context: typing.Optional[typing.Union[int, str]]
984
- :type undo: typing.Optional[bool]
1031
+ :type override_context: typing.Union[dict, bpy.types.Context]
1032
+ :type execution_context: typing.Union[str, int]
1033
+ :type undo: bool
985
1034
  :param action: Action, Selection action to execute
986
1035
 
987
1036
  TOGGLE
@@ -995,38 +1044,37 @@ def select_all(
995
1044
 
996
1045
  INVERT
997
1046
  Invert -- Invert selection of all elements.
998
- :type action: typing.Optional[typing.Any]
1047
+ :type action: typing.Any
999
1048
  """
1000
1049
 
1001
1050
  ...
1002
1051
 
1003
1052
  def select_box(
1004
- override_context=None,
1005
- execution_context=None,
1006
- undo=None,
1007
- *,
1008
- xmin: typing.Optional[typing.Any] = 0,
1009
- xmax: typing.Optional[typing.Any] = 0,
1010
- ymin: typing.Optional[typing.Any] = 0,
1011
- ymax: typing.Optional[typing.Any] = 0,
1012
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
1013
- mode: typing.Optional[typing.Any] = "SET",
1053
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1054
+ execution_context: typing.Union[str, int] = None,
1055
+ undo: bool = None,
1056
+ xmin: typing.Any = 0,
1057
+ xmax: typing.Any = 0,
1058
+ ymin: typing.Any = 0,
1059
+ ymax: typing.Any = 0,
1060
+ wait_for_input: typing.Union[bool, typing.Any] = True,
1061
+ mode: typing.Any = "SET",
1014
1062
  ):
1015
1063
  """Select markers using box selection
1016
1064
 
1017
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1018
- :type execution_context: typing.Optional[typing.Union[int, str]]
1019
- :type undo: typing.Optional[bool]
1065
+ :type override_context: typing.Union[dict, bpy.types.Context]
1066
+ :type execution_context: typing.Union[str, int]
1067
+ :type undo: bool
1020
1068
  :param xmin: X Min
1021
- :type xmin: typing.Optional[typing.Any]
1069
+ :type xmin: typing.Any
1022
1070
  :param xmax: X Max
1023
- :type xmax: typing.Optional[typing.Any]
1071
+ :type xmax: typing.Any
1024
1072
  :param ymin: Y Min
1025
- :type ymin: typing.Optional[typing.Any]
1073
+ :type ymin: typing.Any
1026
1074
  :param ymax: Y Max
1027
- :type ymax: typing.Optional[typing.Any]
1075
+ :type ymax: typing.Any
1028
1076
  :param wait_for_input: Wait for Input
1029
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
1077
+ :type wait_for_input: typing.Union[bool, typing.Any]
1030
1078
  :param mode: Mode
1031
1079
 
1032
1080
  SET
@@ -1037,35 +1085,34 @@ def select_box(
1037
1085
 
1038
1086
  SUB
1039
1087
  Subtract -- Subtract existing selection.
1040
- :type mode: typing.Optional[typing.Any]
1088
+ :type mode: typing.Any
1041
1089
  """
1042
1090
 
1043
1091
  ...
1044
1092
 
1045
1093
  def select_circle(
1046
- override_context=None,
1047
- execution_context=None,
1048
- undo=None,
1049
- *,
1050
- x: typing.Optional[typing.Any] = 0,
1051
- y: typing.Optional[typing.Any] = 0,
1052
- radius: typing.Optional[typing.Any] = 25,
1053
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
1054
- mode: typing.Optional[typing.Any] = "SET",
1094
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1095
+ execution_context: typing.Union[str, int] = None,
1096
+ undo: bool = None,
1097
+ x: typing.Any = 0,
1098
+ y: typing.Any = 0,
1099
+ radius: typing.Any = 25,
1100
+ wait_for_input: typing.Union[bool, typing.Any] = True,
1101
+ mode: typing.Any = "SET",
1055
1102
  ):
1056
1103
  """Select markers using circle selection
1057
1104
 
1058
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1059
- :type execution_context: typing.Optional[typing.Union[int, str]]
1060
- :type undo: typing.Optional[bool]
1105
+ :type override_context: typing.Union[dict, bpy.types.Context]
1106
+ :type execution_context: typing.Union[str, int]
1107
+ :type undo: bool
1061
1108
  :param x: X
1062
- :type x: typing.Optional[typing.Any]
1109
+ :type x: typing.Any
1063
1110
  :param y: Y
1064
- :type y: typing.Optional[typing.Any]
1111
+ :type y: typing.Any
1065
1112
  :param radius: Radius
1066
- :type radius: typing.Optional[typing.Any]
1113
+ :type radius: typing.Any
1067
1114
  :param wait_for_input: Wait for Input
1068
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
1115
+ :type wait_for_input: typing.Union[bool, typing.Any]
1069
1116
  :param mode: Mode
1070
1117
 
1071
1118
  SET
@@ -1076,23 +1123,22 @@ def select_circle(
1076
1123
 
1077
1124
  SUB
1078
1125
  Subtract -- Subtract existing selection.
1079
- :type mode: typing.Optional[typing.Any]
1126
+ :type mode: typing.Any
1080
1127
  """
1081
1128
 
1082
1129
  ...
1083
1130
 
1084
1131
  def select_grouped(
1085
- override_context=None,
1086
- execution_context=None,
1087
- undo=None,
1088
- *,
1089
- group: typing.Optional[typing.Any] = "ESTIMATED",
1132
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1133
+ execution_context: typing.Union[str, int] = None,
1134
+ undo: bool = None,
1135
+ group: typing.Any = "ESTIMATED",
1090
1136
  ):
1091
1137
  """Select all tracks from specified group
1092
1138
 
1093
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1094
- :type execution_context: typing.Optional[typing.Union[int, str]]
1095
- :type undo: typing.Optional[bool]
1139
+ :type override_context: typing.Union[dict, bpy.types.Context]
1140
+ :type execution_context: typing.Union[str, int]
1141
+ :type undo: bool
1096
1142
  :param group: Action, Clear action to execute
1097
1143
 
1098
1144
  KEYFRAMED
@@ -1115,28 +1161,25 @@ def select_grouped(
1115
1161
 
1116
1162
  FAILED
1117
1163
  Failed Tracks -- Select all tracks which failed to be reconstructed.
1118
- :type group: typing.Optional[typing.Any]
1164
+ :type group: typing.Any
1119
1165
  """
1120
1166
 
1121
1167
  ...
1122
1168
 
1123
1169
  def select_lasso(
1124
- override_context=None,
1125
- execution_context=None,
1126
- undo=None,
1127
- *,
1128
- path: typing.Optional[
1129
- bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
1130
- ] = None,
1131
- mode: typing.Optional[typing.Any] = "SET",
1170
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1171
+ execution_context: typing.Union[str, int] = None,
1172
+ undo: bool = None,
1173
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
1174
+ mode: typing.Any = "SET",
1132
1175
  ):
1133
1176
  """Select markers using lasso selection
1134
1177
 
1135
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1136
- :type execution_context: typing.Optional[typing.Union[int, str]]
1137
- :type undo: typing.Optional[bool]
1178
+ :type override_context: typing.Union[dict, bpy.types.Context]
1179
+ :type execution_context: typing.Union[str, int]
1180
+ :type undo: bool
1138
1181
  :param path: Path
1139
- :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
1182
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
1140
1183
  :param mode: Mode
1141
1184
 
1142
1185
  SET
@@ -1147,33 +1190,36 @@ def select_lasso(
1147
1190
 
1148
1191
  SUB
1149
1192
  Subtract -- Subtract existing selection.
1150
- :type mode: typing.Optional[typing.Any]
1193
+ :type mode: typing.Any
1151
1194
  """
1152
1195
 
1153
1196
  ...
1154
1197
 
1155
- def set_active_clip(override_context=None, execution_context=None, undo=None):
1198
+ def set_active_clip(
1199
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1200
+ execution_context: typing.Union[str, int] = None,
1201
+ undo: bool = None,
1202
+ ):
1156
1203
  """Undocumented, consider contributing.
1157
1204
 
1158
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1159
- :type execution_context: typing.Optional[typing.Union[int, str]]
1160
- :type undo: typing.Optional[bool]
1205
+ :type override_context: typing.Union[dict, bpy.types.Context]
1206
+ :type execution_context: typing.Union[str, int]
1207
+ :type undo: bool
1161
1208
  """
1162
1209
 
1163
1210
  ...
1164
1211
 
1165
1212
  def set_axis(
1166
- override_context=None,
1167
- execution_context=None,
1168
- undo=None,
1169
- *,
1170
- axis: typing.Optional[typing.Any] = "X",
1213
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1214
+ execution_context: typing.Union[str, int] = None,
1215
+ undo: bool = None,
1216
+ axis: typing.Any = "X",
1171
1217
  ):
1172
1218
  """Set the direction of a scene axis by rotating the camera (or its parent if present). This assumes that the selected track lies on a real axis connecting it to the origin
1173
1219
 
1174
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1175
- :type execution_context: typing.Optional[typing.Union[int, str]]
1176
- :type undo: typing.Optional[bool]
1220
+ :type override_context: typing.Union[dict, bpy.types.Context]
1221
+ :type execution_context: typing.Union[str, int]
1222
+ :type undo: bool
1177
1223
  :param axis: Axis, Axis to use to align bundle along
1178
1224
 
1179
1225
  X
@@ -1181,41 +1227,39 @@ def set_axis(
1181
1227
 
1182
1228
  Y
1183
1229
  Y -- Align bundle align Y axis.
1184
- :type axis: typing.Optional[typing.Any]
1230
+ :type axis: typing.Any
1185
1231
  """
1186
1232
 
1187
1233
  ...
1188
1234
 
1189
1235
  def set_origin(
1190
- override_context=None,
1191
- execution_context=None,
1192
- undo=None,
1193
- *,
1194
- use_median: typing.Optional[typing.Union[bool, typing.Any]] = False,
1236
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1237
+ execution_context: typing.Union[str, int] = None,
1238
+ undo: bool = None,
1239
+ use_median: typing.Union[bool, typing.Any] = False,
1195
1240
  ):
1196
1241
  """Set active marker as origin by moving camera (or its parent if present) in 3D space
1197
1242
 
1198
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1199
- :type execution_context: typing.Optional[typing.Union[int, str]]
1200
- :type undo: typing.Optional[bool]
1243
+ :type override_context: typing.Union[dict, bpy.types.Context]
1244
+ :type execution_context: typing.Union[str, int]
1245
+ :type undo: bool
1201
1246
  :param use_median: Use Median, Set origin to median point of selected bundles
1202
- :type use_median: typing.Optional[typing.Union[bool, typing.Any]]
1247
+ :type use_median: typing.Union[bool, typing.Any]
1203
1248
  """
1204
1249
 
1205
1250
  ...
1206
1251
 
1207
1252
  def set_plane(
1208
- override_context=None,
1209
- execution_context=None,
1210
- undo=None,
1211
- *,
1212
- plane: typing.Optional[typing.Any] = "FLOOR",
1253
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1254
+ execution_context: typing.Union[str, int] = None,
1255
+ undo: bool = None,
1256
+ plane: typing.Any = "FLOOR",
1213
1257
  ):
1214
1258
  """Set plane based on 3 selected bundles by moving camera (or its parent if present) in 3D space
1215
1259
 
1216
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1217
- :type execution_context: typing.Optional[typing.Union[int, str]]
1218
- :type undo: typing.Optional[bool]
1260
+ :type override_context: typing.Union[dict, bpy.types.Context]
1261
+ :type execution_context: typing.Union[str, int]
1262
+ :type undo: bool
1219
1263
  :param plane: Plane, Plane to be used for orientation
1220
1264
 
1221
1265
  FLOOR
@@ -1223,475 +1267,540 @@ def set_plane(
1223
1267
 
1224
1268
  WALL
1225
1269
  Wall -- Set wall plane.
1226
- :type plane: typing.Optional[typing.Any]
1270
+ :type plane: typing.Any
1227
1271
  """
1228
1272
 
1229
1273
  ...
1230
1274
 
1231
1275
  def set_scale(
1232
- override_context=None,
1233
- execution_context=None,
1234
- undo=None,
1235
- *,
1236
- distance: typing.Optional[typing.Any] = 0.0,
1276
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1277
+ execution_context: typing.Union[str, int] = None,
1278
+ undo: bool = None,
1279
+ distance: typing.Any = 0.0,
1237
1280
  ):
1238
1281
  """Set scale of scene by scaling camera (or its parent if present)
1239
1282
 
1240
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1241
- :type execution_context: typing.Optional[typing.Union[int, str]]
1242
- :type undo: typing.Optional[bool]
1283
+ :type override_context: typing.Union[dict, bpy.types.Context]
1284
+ :type execution_context: typing.Union[str, int]
1285
+ :type undo: bool
1243
1286
  :param distance: Distance, Distance between selected tracks
1244
- :type distance: typing.Optional[typing.Any]
1287
+ :type distance: typing.Any
1245
1288
  """
1246
1289
 
1247
1290
  ...
1248
1291
 
1249
- def set_scene_frames(override_context=None, execution_context=None, undo=None):
1292
+ def set_scene_frames(
1293
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1294
+ execution_context: typing.Union[str, int] = None,
1295
+ undo: bool = None,
1296
+ ):
1250
1297
  """Set scene's start and end frame to match clip's start frame and length
1251
1298
 
1252
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1253
- :type execution_context: typing.Optional[typing.Union[int, str]]
1254
- :type undo: typing.Optional[bool]
1299
+ :type override_context: typing.Union[dict, bpy.types.Context]
1300
+ :type execution_context: typing.Union[str, int]
1301
+ :type undo: bool
1255
1302
  """
1256
1303
 
1257
1304
  ...
1258
1305
 
1259
1306
  def set_solution_scale(
1260
- override_context=None,
1261
- execution_context=None,
1262
- undo=None,
1263
- *,
1264
- distance: typing.Optional[typing.Any] = 0.0,
1307
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1308
+ execution_context: typing.Union[str, int] = None,
1309
+ undo: bool = None,
1310
+ distance: typing.Any = 0.0,
1265
1311
  ):
1266
1312
  """Set object solution scale using distance between two selected tracks
1267
1313
 
1268
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1269
- :type execution_context: typing.Optional[typing.Union[int, str]]
1270
- :type undo: typing.Optional[bool]
1314
+ :type override_context: typing.Union[dict, bpy.types.Context]
1315
+ :type execution_context: typing.Union[str, int]
1316
+ :type undo: bool
1271
1317
  :param distance: Distance, Distance between selected tracks
1272
- :type distance: typing.Optional[typing.Any]
1318
+ :type distance: typing.Any
1273
1319
  """
1274
1320
 
1275
1321
  ...
1276
1322
 
1277
1323
  def set_solver_keyframe(
1278
- override_context=None,
1279
- execution_context=None,
1280
- undo=None,
1281
- *,
1282
- keyframe: typing.Optional[typing.Any] = "KEYFRAME_A",
1324
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1325
+ execution_context: typing.Union[str, int] = None,
1326
+ undo: bool = None,
1327
+ keyframe: typing.Any = "KEYFRAME_A",
1283
1328
  ):
1284
1329
  """Set keyframe used by solver
1285
1330
 
1286
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1287
- :type execution_context: typing.Optional[typing.Union[int, str]]
1288
- :type undo: typing.Optional[bool]
1331
+ :type override_context: typing.Union[dict, bpy.types.Context]
1332
+ :type execution_context: typing.Union[str, int]
1333
+ :type undo: bool
1289
1334
  :param keyframe: Keyframe, Keyframe to set
1290
- :type keyframe: typing.Optional[typing.Any]
1335
+ :type keyframe: typing.Any
1291
1336
  """
1292
1337
 
1293
1338
  ...
1294
1339
 
1295
- def set_viewport_background(override_context=None, execution_context=None, undo=None):
1340
+ def set_viewport_background(
1341
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1342
+ execution_context: typing.Union[str, int] = None,
1343
+ undo: bool = None,
1344
+ ):
1296
1345
  """Set current movie clip as a camera background in 3D Viewport (works only when a 3D Viewport is visible)
1297
1346
 
1298
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1299
- :type execution_context: typing.Optional[typing.Union[int, str]]
1300
- :type undo: typing.Optional[bool]
1347
+ :type override_context: typing.Union[dict, bpy.types.Context]
1348
+ :type execution_context: typing.Union[str, int]
1349
+ :type undo: bool
1301
1350
  """
1302
1351
 
1303
1352
  ...
1304
1353
 
1305
- def setup_tracking_scene(override_context=None, execution_context=None, undo=None):
1354
+ def setup_tracking_scene(
1355
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1356
+ execution_context: typing.Union[str, int] = None,
1357
+ undo: bool = None,
1358
+ ):
1306
1359
  """Prepare scene for compositing 3D objects into this footage
1307
1360
 
1308
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1309
- :type execution_context: typing.Optional[typing.Union[int, str]]
1310
- :type undo: typing.Optional[bool]
1361
+ :type override_context: typing.Union[dict, bpy.types.Context]
1362
+ :type execution_context: typing.Union[str, int]
1363
+ :type undo: bool
1311
1364
  """
1312
1365
 
1313
1366
  ...
1314
1367
 
1315
1368
  def slide_marker(
1316
- override_context=None,
1317
- execution_context=None,
1318
- undo=None,
1319
- *,
1320
- offset: typing.Optional[typing.Any] = (0.0, 0.0),
1369
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1370
+ execution_context: typing.Union[str, int] = None,
1371
+ undo: bool = None,
1372
+ offset: typing.Any = (0.0, 0.0),
1321
1373
  ):
1322
1374
  """Slide marker areas
1323
1375
 
1324
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1325
- :type execution_context: typing.Optional[typing.Union[int, str]]
1326
- :type undo: typing.Optional[bool]
1376
+ :type override_context: typing.Union[dict, bpy.types.Context]
1377
+ :type execution_context: typing.Union[str, int]
1378
+ :type undo: bool
1327
1379
  :param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
1328
- :type offset: typing.Optional[typing.Any]
1380
+ :type offset: typing.Any
1329
1381
  """
1330
1382
 
1331
1383
  ...
1332
1384
 
1333
- def slide_plane_marker(override_context=None, execution_context=None, undo=None):
1385
+ def slide_plane_marker(
1386
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1387
+ execution_context: typing.Union[str, int] = None,
1388
+ undo: bool = None,
1389
+ ):
1334
1390
  """Slide plane marker areas
1335
1391
 
1336
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1337
- :type execution_context: typing.Optional[typing.Union[int, str]]
1338
- :type undo: typing.Optional[bool]
1392
+ :type override_context: typing.Union[dict, bpy.types.Context]
1393
+ :type execution_context: typing.Union[str, int]
1394
+ :type undo: bool
1339
1395
  """
1340
1396
 
1341
1397
  ...
1342
1398
 
1343
- def solve_camera(override_context=None, execution_context=None, undo=None):
1399
+ def solve_camera(
1400
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1401
+ execution_context: typing.Union[str, int] = None,
1402
+ undo: bool = None,
1403
+ ):
1344
1404
  """Solve camera motion from tracks
1345
1405
 
1346
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1347
- :type execution_context: typing.Optional[typing.Union[int, str]]
1348
- :type undo: typing.Optional[bool]
1406
+ :type override_context: typing.Union[dict, bpy.types.Context]
1407
+ :type execution_context: typing.Union[str, int]
1408
+ :type undo: bool
1349
1409
  """
1350
1410
 
1351
1411
  ...
1352
1412
 
1353
- def stabilize_2d_add(override_context=None, execution_context=None, undo=None):
1413
+ def stabilize_2d_add(
1414
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1415
+ execution_context: typing.Union[str, int] = None,
1416
+ undo: bool = None,
1417
+ ):
1354
1418
  """Add selected tracks to 2D translation stabilization
1355
1419
 
1356
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1357
- :type execution_context: typing.Optional[typing.Union[int, str]]
1358
- :type undo: typing.Optional[bool]
1420
+ :type override_context: typing.Union[dict, bpy.types.Context]
1421
+ :type execution_context: typing.Union[str, int]
1422
+ :type undo: bool
1359
1423
  """
1360
1424
 
1361
1425
  ...
1362
1426
 
1363
- def stabilize_2d_remove(override_context=None, execution_context=None, undo=None):
1427
+ def stabilize_2d_remove(
1428
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1429
+ execution_context: typing.Union[str, int] = None,
1430
+ undo: bool = None,
1431
+ ):
1364
1432
  """Remove selected track from translation stabilization
1365
1433
 
1366
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1367
- :type execution_context: typing.Optional[typing.Union[int, str]]
1368
- :type undo: typing.Optional[bool]
1434
+ :type override_context: typing.Union[dict, bpy.types.Context]
1435
+ :type execution_context: typing.Union[str, int]
1436
+ :type undo: bool
1369
1437
  """
1370
1438
 
1371
1439
  ...
1372
1440
 
1373
- def stabilize_2d_rotation_add(override_context=None, execution_context=None, undo=None):
1441
+ def stabilize_2d_rotation_add(
1442
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1443
+ execution_context: typing.Union[str, int] = None,
1444
+ undo: bool = None,
1445
+ ):
1374
1446
  """Add selected tracks to 2D rotation stabilization
1375
1447
 
1376
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1377
- :type execution_context: typing.Optional[typing.Union[int, str]]
1378
- :type undo: typing.Optional[bool]
1448
+ :type override_context: typing.Union[dict, bpy.types.Context]
1449
+ :type execution_context: typing.Union[str, int]
1450
+ :type undo: bool
1379
1451
  """
1380
1452
 
1381
1453
  ...
1382
1454
 
1383
1455
  def stabilize_2d_rotation_remove(
1384
- override_context=None, execution_context=None, undo=None
1456
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1457
+ execution_context: typing.Union[str, int] = None,
1458
+ undo: bool = None,
1385
1459
  ):
1386
1460
  """Remove selected track from rotation stabilization
1387
1461
 
1388
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1389
- :type execution_context: typing.Optional[typing.Union[int, str]]
1390
- :type undo: typing.Optional[bool]
1462
+ :type override_context: typing.Union[dict, bpy.types.Context]
1463
+ :type execution_context: typing.Union[str, int]
1464
+ :type undo: bool
1391
1465
  """
1392
1466
 
1393
1467
  ...
1394
1468
 
1395
1469
  def stabilize_2d_rotation_select(
1396
- override_context=None, execution_context=None, undo=None
1470
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1471
+ execution_context: typing.Union[str, int] = None,
1472
+ undo: bool = None,
1397
1473
  ):
1398
1474
  """Select tracks which are used for rotation stabilization
1399
1475
 
1400
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1401
- :type execution_context: typing.Optional[typing.Union[int, str]]
1402
- :type undo: typing.Optional[bool]
1476
+ :type override_context: typing.Union[dict, bpy.types.Context]
1477
+ :type execution_context: typing.Union[str, int]
1478
+ :type undo: bool
1403
1479
  """
1404
1480
 
1405
1481
  ...
1406
1482
 
1407
- def stabilize_2d_select(override_context=None, execution_context=None, undo=None):
1483
+ def stabilize_2d_select(
1484
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1485
+ execution_context: typing.Union[str, int] = None,
1486
+ undo: bool = None,
1487
+ ):
1408
1488
  """Select tracks which are used for translation stabilization
1409
1489
 
1410
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1411
- :type execution_context: typing.Optional[typing.Union[int, str]]
1412
- :type undo: typing.Optional[bool]
1490
+ :type override_context: typing.Union[dict, bpy.types.Context]
1491
+ :type execution_context: typing.Union[str, int]
1492
+ :type undo: bool
1413
1493
  """
1414
1494
 
1415
1495
  ...
1416
1496
 
1417
1497
  def track_color_preset_add(
1418
- override_context=None,
1419
- execution_context=None,
1420
- undo=None,
1421
- *,
1498
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1499
+ execution_context: typing.Union[str, int] = None,
1500
+ undo: bool = None,
1422
1501
  name: typing.Union[str, typing.Any] = "",
1423
- remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
1424
- remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
1502
+ remove_name: typing.Union[bool, typing.Any] = False,
1503
+ remove_active: typing.Union[bool, typing.Any] = False,
1425
1504
  ):
1426
1505
  """Add or remove a Clip Track Color Preset
1427
1506
 
1428
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1429
- :type execution_context: typing.Optional[typing.Union[int, str]]
1430
- :type undo: typing.Optional[bool]
1507
+ :type override_context: typing.Union[dict, bpy.types.Context]
1508
+ :type execution_context: typing.Union[str, int]
1509
+ :type undo: bool
1431
1510
  :param name: Name, Name of the preset, used to make the path name
1432
1511
  :type name: typing.Union[str, typing.Any]
1433
1512
  :param remove_name: remove_name
1434
- :type remove_name: typing.Optional[typing.Union[bool, typing.Any]]
1513
+ :type remove_name: typing.Union[bool, typing.Any]
1435
1514
  :param remove_active: remove_active
1436
- :type remove_active: typing.Optional[typing.Union[bool, typing.Any]]
1515
+ :type remove_active: typing.Union[bool, typing.Any]
1437
1516
  """
1438
1517
 
1439
1518
  ...
1440
1519
 
1441
- def track_copy_color(override_context=None, execution_context=None, undo=None):
1520
+ def track_copy_color(
1521
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1522
+ execution_context: typing.Union[str, int] = None,
1523
+ undo: bool = None,
1524
+ ):
1442
1525
  """Copy color to all selected tracks
1443
1526
 
1444
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1445
- :type execution_context: typing.Optional[typing.Union[int, str]]
1446
- :type undo: typing.Optional[bool]
1527
+ :type override_context: typing.Union[dict, bpy.types.Context]
1528
+ :type execution_context: typing.Union[str, int]
1529
+ :type undo: bool
1447
1530
  """
1448
1531
 
1449
1532
  ...
1450
1533
 
1451
1534
  def track_markers(
1452
- override_context=None,
1453
- execution_context=None,
1454
- undo=None,
1455
- *,
1456
- backwards: typing.Optional[typing.Union[bool, typing.Any]] = False,
1457
- sequence: typing.Optional[typing.Union[bool, typing.Any]] = False,
1535
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1536
+ execution_context: typing.Union[str, int] = None,
1537
+ undo: bool = None,
1538
+ backwards: typing.Union[bool, typing.Any] = False,
1539
+ sequence: typing.Union[bool, typing.Any] = False,
1458
1540
  ):
1459
1541
  """Track selected markers
1460
1542
 
1461
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1462
- :type execution_context: typing.Optional[typing.Union[int, str]]
1463
- :type undo: typing.Optional[bool]
1543
+ :type override_context: typing.Union[dict, bpy.types.Context]
1544
+ :type execution_context: typing.Union[str, int]
1545
+ :type undo: bool
1464
1546
  :param backwards: Backwards, Do backwards tracking
1465
- :type backwards: typing.Optional[typing.Union[bool, typing.Any]]
1547
+ :type backwards: typing.Union[bool, typing.Any]
1466
1548
  :param sequence: Track Sequence, Track marker during image sequence rather than single image
1467
- :type sequence: typing.Optional[typing.Union[bool, typing.Any]]
1549
+ :type sequence: typing.Union[bool, typing.Any]
1468
1550
  """
1469
1551
 
1470
1552
  ...
1471
1553
 
1472
- def track_settings_as_default(override_context=None, execution_context=None, undo=None):
1554
+ def track_settings_as_default(
1555
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1556
+ execution_context: typing.Union[str, int] = None,
1557
+ undo: bool = None,
1558
+ ):
1473
1559
  """Copy tracking settings from active track to default settings
1474
1560
 
1475
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1476
- :type execution_context: typing.Optional[typing.Union[int, str]]
1477
- :type undo: typing.Optional[bool]
1561
+ :type override_context: typing.Union[dict, bpy.types.Context]
1562
+ :type execution_context: typing.Union[str, int]
1563
+ :type undo: bool
1478
1564
  """
1479
1565
 
1480
1566
  ...
1481
1567
 
1482
- def track_settings_to_track(override_context=None, execution_context=None, undo=None):
1568
+ def track_settings_to_track(
1569
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1570
+ execution_context: typing.Union[str, int] = None,
1571
+ undo: bool = None,
1572
+ ):
1483
1573
  """Copy tracking settings from active track to selected tracks
1484
1574
 
1485
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1486
- :type execution_context: typing.Optional[typing.Union[int, str]]
1487
- :type undo: typing.Optional[bool]
1575
+ :type override_context: typing.Union[dict, bpy.types.Context]
1576
+ :type execution_context: typing.Union[str, int]
1577
+ :type undo: bool
1488
1578
  """
1489
1579
 
1490
1580
  ...
1491
1581
 
1492
- def track_to_empty(override_context=None, execution_context=None, undo=None):
1582
+ def track_to_empty(
1583
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1584
+ execution_context: typing.Union[str, int] = None,
1585
+ undo: bool = None,
1586
+ ):
1493
1587
  """Create an Empty object which will be copying movement of active track
1494
1588
 
1495
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1496
- :type execution_context: typing.Optional[typing.Union[int, str]]
1497
- :type undo: typing.Optional[bool]
1589
+ :type override_context: typing.Union[dict, bpy.types.Context]
1590
+ :type execution_context: typing.Union[str, int]
1591
+ :type undo: bool
1498
1592
  """
1499
1593
 
1500
1594
  ...
1501
1595
 
1502
- def tracking_object_new(override_context=None, execution_context=None, undo=None):
1596
+ def tracking_object_new(
1597
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1598
+ execution_context: typing.Union[str, int] = None,
1599
+ undo: bool = None,
1600
+ ):
1503
1601
  """Add new object for tracking
1504
1602
 
1505
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1506
- :type execution_context: typing.Optional[typing.Union[int, str]]
1507
- :type undo: typing.Optional[bool]
1603
+ :type override_context: typing.Union[dict, bpy.types.Context]
1604
+ :type execution_context: typing.Union[str, int]
1605
+ :type undo: bool
1508
1606
  """
1509
1607
 
1510
1608
  ...
1511
1609
 
1512
- def tracking_object_remove(override_context=None, execution_context=None, undo=None):
1610
+ def tracking_object_remove(
1611
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1612
+ execution_context: typing.Union[str, int] = None,
1613
+ undo: bool = None,
1614
+ ):
1513
1615
  """Remove object for tracking
1514
1616
 
1515
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1516
- :type execution_context: typing.Optional[typing.Union[int, str]]
1517
- :type undo: typing.Optional[bool]
1617
+ :type override_context: typing.Union[dict, bpy.types.Context]
1618
+ :type execution_context: typing.Union[str, int]
1619
+ :type undo: bool
1518
1620
  """
1519
1621
 
1520
1622
  ...
1521
1623
 
1522
1624
  def tracking_settings_preset_add(
1523
- override_context=None,
1524
- execution_context=None,
1525
- undo=None,
1526
- *,
1625
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1626
+ execution_context: typing.Union[str, int] = None,
1627
+ undo: bool = None,
1527
1628
  name: typing.Union[str, typing.Any] = "",
1528
- remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
1529
- remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
1629
+ remove_name: typing.Union[bool, typing.Any] = False,
1630
+ remove_active: typing.Union[bool, typing.Any] = False,
1530
1631
  ):
1531
1632
  """Add or remove a motion tracking settings preset
1532
1633
 
1533
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1534
- :type execution_context: typing.Optional[typing.Union[int, str]]
1535
- :type undo: typing.Optional[bool]
1634
+ :type override_context: typing.Union[dict, bpy.types.Context]
1635
+ :type execution_context: typing.Union[str, int]
1636
+ :type undo: bool
1536
1637
  :param name: Name, Name of the preset, used to make the path name
1537
1638
  :type name: typing.Union[str, typing.Any]
1538
1639
  :param remove_name: remove_name
1539
- :type remove_name: typing.Optional[typing.Union[bool, typing.Any]]
1640
+ :type remove_name: typing.Union[bool, typing.Any]
1540
1641
  :param remove_active: remove_active
1541
- :type remove_active: typing.Optional[typing.Union[bool, typing.Any]]
1642
+ :type remove_active: typing.Union[bool, typing.Any]
1542
1643
  """
1543
1644
 
1544
1645
  ...
1545
1646
 
1546
1647
  def update_image_from_plane_marker(
1547
- override_context=None, execution_context=None, undo=None
1648
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1649
+ execution_context: typing.Union[str, int] = None,
1650
+ undo: bool = None,
1548
1651
  ):
1549
1652
  """Update current image used by plane marker from the content of the plane marker
1550
1653
 
1551
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1552
- :type execution_context: typing.Optional[typing.Union[int, str]]
1553
- :type undo: typing.Optional[bool]
1654
+ :type override_context: typing.Union[dict, bpy.types.Context]
1655
+ :type execution_context: typing.Union[str, int]
1656
+ :type undo: bool
1554
1657
  """
1555
1658
 
1556
1659
  ...
1557
1660
 
1558
1661
  def view_all(
1559
- override_context=None,
1560
- execution_context=None,
1561
- undo=None,
1562
- *,
1563
- fit_view: typing.Optional[typing.Union[bool, typing.Any]] = False,
1662
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1663
+ execution_context: typing.Union[str, int] = None,
1664
+ undo: bool = None,
1665
+ fit_view: typing.Union[bool, typing.Any] = False,
1564
1666
  ):
1565
1667
  """View whole image with markers
1566
1668
 
1567
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1568
- :type execution_context: typing.Optional[typing.Union[int, str]]
1569
- :type undo: typing.Optional[bool]
1669
+ :type override_context: typing.Union[dict, bpy.types.Context]
1670
+ :type execution_context: typing.Union[str, int]
1671
+ :type undo: bool
1570
1672
  :param fit_view: Fit View, Fit frame to the viewport
1571
- :type fit_view: typing.Optional[typing.Union[bool, typing.Any]]
1673
+ :type fit_view: typing.Union[bool, typing.Any]
1572
1674
  """
1573
1675
 
1574
1676
  ...
1575
1677
 
1576
- def view_center_cursor(override_context=None, execution_context=None, undo=None):
1678
+ def view_center_cursor(
1679
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1680
+ execution_context: typing.Union[str, int] = None,
1681
+ undo: bool = None,
1682
+ ):
1577
1683
  """Center the view so that the cursor is in the middle of the view
1578
1684
 
1579
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1580
- :type execution_context: typing.Optional[typing.Union[int, str]]
1581
- :type undo: typing.Optional[bool]
1685
+ :type override_context: typing.Union[dict, bpy.types.Context]
1686
+ :type execution_context: typing.Union[str, int]
1687
+ :type undo: bool
1582
1688
  """
1583
1689
 
1584
1690
  ...
1585
1691
 
1586
- def view_ndof(override_context=None, execution_context=None, undo=None):
1692
+ def view_ndof(
1693
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1694
+ execution_context: typing.Union[str, int] = None,
1695
+ undo: bool = None,
1696
+ ):
1587
1697
  """Use a 3D mouse device to pan/zoom the view
1588
1698
 
1589
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1590
- :type execution_context: typing.Optional[typing.Union[int, str]]
1591
- :type undo: typing.Optional[bool]
1699
+ :type override_context: typing.Union[dict, bpy.types.Context]
1700
+ :type execution_context: typing.Union[str, int]
1701
+ :type undo: bool
1592
1702
  """
1593
1703
 
1594
1704
  ...
1595
1705
 
1596
1706
  def view_pan(
1597
- override_context=None,
1598
- execution_context=None,
1599
- undo=None,
1600
- *,
1601
- offset: typing.Optional[typing.Any] = (0.0, 0.0),
1707
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1708
+ execution_context: typing.Union[str, int] = None,
1709
+ undo: bool = None,
1710
+ offset: typing.Any = (0.0, 0.0),
1602
1711
  ):
1603
1712
  """Pan the view
1604
1713
 
1605
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1606
- :type execution_context: typing.Optional[typing.Union[int, str]]
1607
- :type undo: typing.Optional[bool]
1714
+ :type override_context: typing.Union[dict, bpy.types.Context]
1715
+ :type execution_context: typing.Union[str, int]
1716
+ :type undo: bool
1608
1717
  :param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
1609
- :type offset: typing.Optional[typing.Any]
1718
+ :type offset: typing.Any
1610
1719
  """
1611
1720
 
1612
1721
  ...
1613
1722
 
1614
- def view_selected(override_context=None, execution_context=None, undo=None):
1723
+ def view_selected(
1724
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1725
+ execution_context: typing.Union[str, int] = None,
1726
+ undo: bool = None,
1727
+ ):
1615
1728
  """View all selected elements
1616
1729
 
1617
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1618
- :type execution_context: typing.Optional[typing.Union[int, str]]
1619
- :type undo: typing.Optional[bool]
1730
+ :type override_context: typing.Union[dict, bpy.types.Context]
1731
+ :type execution_context: typing.Union[str, int]
1732
+ :type undo: bool
1620
1733
  """
1621
1734
 
1622
1735
  ...
1623
1736
 
1624
1737
  def view_zoom(
1625
- override_context=None,
1626
- execution_context=None,
1627
- undo=None,
1628
- *,
1629
- factor: typing.Optional[typing.Any] = 0.0,
1630
- use_cursor_init: typing.Optional[typing.Union[bool, typing.Any]] = True,
1738
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1739
+ execution_context: typing.Union[str, int] = None,
1740
+ undo: bool = None,
1741
+ factor: typing.Any = 0.0,
1742
+ use_cursor_init: typing.Union[bool, typing.Any] = True,
1631
1743
  ):
1632
1744
  """Zoom in/out the view
1633
1745
 
1634
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1635
- :type execution_context: typing.Optional[typing.Union[int, str]]
1636
- :type undo: typing.Optional[bool]
1746
+ :type override_context: typing.Union[dict, bpy.types.Context]
1747
+ :type execution_context: typing.Union[str, int]
1748
+ :type undo: bool
1637
1749
  :param factor: Factor, Zoom factor, values higher than 1.0 zoom in, lower values zoom out
1638
- :type factor: typing.Optional[typing.Any]
1750
+ :type factor: typing.Any
1639
1751
  :param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
1640
- :type use_cursor_init: typing.Optional[typing.Union[bool, typing.Any]]
1752
+ :type use_cursor_init: typing.Union[bool, typing.Any]
1641
1753
  """
1642
1754
 
1643
1755
  ...
1644
1756
 
1645
1757
  def view_zoom_in(
1646
- override_context=None,
1647
- execution_context=None,
1648
- undo=None,
1649
- *,
1650
- location: typing.Optional[typing.Any] = (0.0, 0.0),
1758
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1759
+ execution_context: typing.Union[str, int] = None,
1760
+ undo: bool = None,
1761
+ location: typing.Any = (0.0, 0.0),
1651
1762
  ):
1652
1763
  """Zoom in the view
1653
1764
 
1654
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1655
- :type execution_context: typing.Optional[typing.Union[int, str]]
1656
- :type undo: typing.Optional[bool]
1765
+ :type override_context: typing.Union[dict, bpy.types.Context]
1766
+ :type execution_context: typing.Union[str, int]
1767
+ :type undo: bool
1657
1768
  :param location: Location, Cursor location in screen coordinates
1658
- :type location: typing.Optional[typing.Any]
1769
+ :type location: typing.Any
1659
1770
  """
1660
1771
 
1661
1772
  ...
1662
1773
 
1663
1774
  def view_zoom_out(
1664
- override_context=None,
1665
- execution_context=None,
1666
- undo=None,
1667
- *,
1668
- location: typing.Optional[typing.Any] = (0.0, 0.0),
1775
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1776
+ execution_context: typing.Union[str, int] = None,
1777
+ undo: bool = None,
1778
+ location: typing.Any = (0.0, 0.0),
1669
1779
  ):
1670
1780
  """Zoom out the view
1671
1781
 
1672
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1673
- :type execution_context: typing.Optional[typing.Union[int, str]]
1674
- :type undo: typing.Optional[bool]
1782
+ :type override_context: typing.Union[dict, bpy.types.Context]
1783
+ :type execution_context: typing.Union[str, int]
1784
+ :type undo: bool
1675
1785
  :param location: Location, Cursor location in normalized (0.0 to 1.0) coordinates
1676
- :type location: typing.Optional[typing.Any]
1786
+ :type location: typing.Any
1677
1787
  """
1678
1788
 
1679
1789
  ...
1680
1790
 
1681
1791
  def view_zoom_ratio(
1682
- override_context=None,
1683
- execution_context=None,
1684
- undo=None,
1685
- *,
1686
- ratio: typing.Optional[typing.Any] = 0.0,
1792
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1793
+ execution_context: typing.Union[str, int] = None,
1794
+ undo: bool = None,
1795
+ ratio: typing.Any = 0.0,
1687
1796
  ):
1688
1797
  """Set the zoom ratio (based on clip size)
1689
1798
 
1690
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1691
- :type execution_context: typing.Optional[typing.Union[int, str]]
1692
- :type undo: typing.Optional[bool]
1799
+ :type override_context: typing.Union[dict, bpy.types.Context]
1800
+ :type execution_context: typing.Union[str, int]
1801
+ :type undo: bool
1693
1802
  :param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
1694
- :type ratio: typing.Optional[typing.Any]
1803
+ :type ratio: typing.Any
1695
1804
  """
1696
1805
 
1697
1806
  ...