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
@@ -4,262 +4,259 @@ import bpy.types
4
4
 
5
5
  GenericType = typing.TypeVar("GenericType")
6
6
 
7
- def bake_keys(override_context=None, execution_context=None, undo=None):
7
+ def bake_keys(
8
+ override_context: typing.Union[dict, bpy.types.Context] = None,
9
+ execution_context: typing.Union[str, int] = None,
10
+ undo: bool = None,
11
+ ):
8
12
  """Add keyframes on every frame between the selected keyframes
9
13
 
10
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
11
- :type execution_context: typing.Optional[typing.Union[int, str]]
12
- :type undo: typing.Optional[bool]
14
+ :type override_context: typing.Union[dict, bpy.types.Context]
15
+ :type execution_context: typing.Union[str, int]
16
+ :type undo: bool
13
17
  """
14
18
 
15
19
  ...
16
20
 
17
21
  def blend_offset(
18
- override_context=None,
19
- execution_context=None,
20
- undo=None,
21
- *,
22
- factor: typing.Optional[typing.Any] = 0.0,
22
+ override_context: typing.Union[dict, bpy.types.Context] = None,
23
+ execution_context: typing.Union[str, int] = None,
24
+ undo: bool = None,
25
+ factor: typing.Any = 0.0,
23
26
  ):
24
27
  """Shift selected keys to the value of the neighboring keys as a block
25
28
 
26
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
27
- :type execution_context: typing.Optional[typing.Union[int, str]]
28
- :type undo: typing.Optional[bool]
29
+ :type override_context: typing.Union[dict, bpy.types.Context]
30
+ :type execution_context: typing.Union[str, int]
31
+ :type undo: bool
29
32
  :param factor: Offset Factor, Control which key to offset towards and how far
30
- :type factor: typing.Optional[typing.Any]
33
+ :type factor: typing.Any
31
34
  """
32
35
 
33
36
  ...
34
37
 
35
38
  def blend_to_default(
36
- override_context=None,
37
- execution_context=None,
38
- undo=None,
39
- *,
40
- factor: typing.Optional[typing.Any] = 0.0,
39
+ override_context: typing.Union[dict, bpy.types.Context] = None,
40
+ execution_context: typing.Union[str, int] = None,
41
+ undo: bool = None,
42
+ factor: typing.Any = 0.0,
41
43
  ):
42
44
  """Blend selected keys to their default value from their current position
43
45
 
44
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
45
- :type execution_context: typing.Optional[typing.Union[int, str]]
46
- :type undo: typing.Optional[bool]
46
+ :type override_context: typing.Union[dict, bpy.types.Context]
47
+ :type execution_context: typing.Union[str, int]
48
+ :type undo: bool
47
49
  :param factor: Factor, How much to blend to the default value
48
- :type factor: typing.Optional[typing.Any]
50
+ :type factor: typing.Any
49
51
  """
50
52
 
51
53
  ...
52
54
 
53
55
  def blend_to_ease(
54
- override_context=None,
55
- execution_context=None,
56
- undo=None,
57
- *,
58
- factor: typing.Optional[typing.Any] = 0.0,
56
+ override_context: typing.Union[dict, bpy.types.Context] = None,
57
+ execution_context: typing.Union[str, int] = None,
58
+ undo: bool = None,
59
+ factor: typing.Any = 0.0,
59
60
  ):
60
61
  """Blends keyframes from current state to an ease-in or ease-out curve
61
62
 
62
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
63
- :type execution_context: typing.Optional[typing.Union[int, str]]
64
- :type undo: typing.Optional[bool]
63
+ :type override_context: typing.Union[dict, bpy.types.Context]
64
+ :type execution_context: typing.Union[str, int]
65
+ :type undo: bool
65
66
  :param factor: Blend, Favor either original data or ease curve
66
- :type factor: typing.Optional[typing.Any]
67
+ :type factor: typing.Any
67
68
  """
68
69
 
69
70
  ...
70
71
 
71
72
  def blend_to_neighbor(
72
- override_context=None,
73
- execution_context=None,
74
- undo=None,
75
- *,
76
- factor: typing.Optional[typing.Any] = 0.0,
73
+ override_context: typing.Union[dict, bpy.types.Context] = None,
74
+ execution_context: typing.Union[str, int] = None,
75
+ undo: bool = None,
76
+ factor: typing.Any = 0.0,
77
77
  ):
78
78
  """Blend selected keyframes to their left or right neighbor
79
79
 
80
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
81
- :type execution_context: typing.Optional[typing.Union[int, str]]
82
- :type undo: typing.Optional[bool]
80
+ :type override_context: typing.Union[dict, bpy.types.Context]
81
+ :type execution_context: typing.Union[str, int]
82
+ :type undo: bool
83
83
  :param factor: Blend, The blend factor with 0 being the current frame
84
- :type factor: typing.Optional[typing.Any]
84
+ :type factor: typing.Any
85
85
  """
86
86
 
87
87
  ...
88
88
 
89
89
  def breakdown(
90
- override_context=None,
91
- execution_context=None,
92
- undo=None,
93
- *,
94
- factor: typing.Optional[typing.Any] = 0.0,
90
+ override_context: typing.Union[dict, bpy.types.Context] = None,
91
+ execution_context: typing.Union[str, int] = None,
92
+ undo: bool = None,
93
+ factor: typing.Any = 0.0,
95
94
  ):
96
95
  """Move selected keyframes to an inbetween position relative to adjacent keys
97
96
 
98
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
99
- :type execution_context: typing.Optional[typing.Union[int, str]]
100
- :type undo: typing.Optional[bool]
97
+ :type override_context: typing.Union[dict, bpy.types.Context]
98
+ :type execution_context: typing.Union[str, int]
99
+ :type undo: bool
101
100
  :param factor: Factor, Favor either the left or the right key
102
- :type factor: typing.Optional[typing.Any]
101
+ :type factor: typing.Any
103
102
  """
104
103
 
105
104
  ...
106
105
 
107
106
  def butterworth_smooth(
108
- override_context=None,
109
- execution_context=None,
110
- undo=None,
111
- *,
112
- cutoff_frequency: typing.Optional[typing.Any] = 3.0,
113
- filter_order: typing.Optional[typing.Any] = 4,
114
- samples_per_frame: typing.Optional[typing.Any] = 1,
115
- blend: typing.Optional[typing.Any] = 1.0,
116
- blend_in_out: typing.Optional[typing.Any] = 1,
107
+ override_context: typing.Union[dict, bpy.types.Context] = None,
108
+ execution_context: typing.Union[str, int] = None,
109
+ undo: bool = None,
110
+ cutoff_frequency: typing.Any = 3.0,
111
+ filter_order: typing.Any = 4,
112
+ samples_per_frame: typing.Any = 1,
113
+ blend: typing.Any = 1.0,
114
+ blend_in_out: typing.Any = 1,
117
115
  ):
118
116
  """Smooth an F-Curve while maintaining the general shape of the curve
119
117
 
120
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
121
- :type execution_context: typing.Optional[typing.Union[int, str]]
122
- :type undo: typing.Optional[bool]
118
+ :type override_context: typing.Union[dict, bpy.types.Context]
119
+ :type execution_context: typing.Union[str, int]
120
+ :type undo: bool
123
121
  :param cutoff_frequency: Frequency Cutoff (Hz), Lower values give a smoother curve
124
- :type cutoff_frequency: typing.Optional[typing.Any]
122
+ :type cutoff_frequency: typing.Any
125
123
  :param filter_order: Filter Order, Higher values produce a harder frequency cutoff
126
- :type filter_order: typing.Optional[typing.Any]
124
+ :type filter_order: typing.Any
127
125
  :param samples_per_frame: Samples per Frame, How many samples to calculate per frame, helps with subframe data
128
- :type samples_per_frame: typing.Optional[typing.Any]
126
+ :type samples_per_frame: typing.Any
129
127
  :param blend: Blend, How much to blend to the smoothed curve
130
- :type blend: typing.Optional[typing.Any]
128
+ :type blend: typing.Any
131
129
  :param blend_in_out: Blend In/Out, Linearly blend the smooth data to the border frames of the selection
132
- :type blend_in_out: typing.Optional[typing.Any]
130
+ :type blend_in_out: typing.Any
133
131
  """
134
132
 
135
133
  ...
136
134
 
137
135
  def clean(
138
- override_context=None,
139
- execution_context=None,
140
- undo=None,
141
- *,
142
- threshold: typing.Optional[typing.Any] = 0.001,
143
- channels: typing.Optional[typing.Union[bool, typing.Any]] = False,
136
+ override_context: typing.Union[dict, bpy.types.Context] = None,
137
+ execution_context: typing.Union[str, int] = None,
138
+ undo: bool = None,
139
+ threshold: typing.Any = 0.001,
140
+ channels: typing.Union[bool, typing.Any] = False,
144
141
  ):
145
142
  """Simplify F-Curves by removing closely spaced keyframes
146
143
 
147
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
148
- :type execution_context: typing.Optional[typing.Union[int, str]]
149
- :type undo: typing.Optional[bool]
144
+ :type override_context: typing.Union[dict, bpy.types.Context]
145
+ :type execution_context: typing.Union[str, int]
146
+ :type undo: bool
150
147
  :param threshold: Threshold
151
- :type threshold: typing.Optional[typing.Any]
148
+ :type threshold: typing.Any
152
149
  :param channels: Channels
153
- :type channels: typing.Optional[typing.Union[bool, typing.Any]]
150
+ :type channels: typing.Union[bool, typing.Any]
154
151
  """
155
152
 
156
153
  ...
157
154
 
158
155
  def click_insert(
159
- override_context=None,
160
- execution_context=None,
161
- undo=None,
162
- *,
163
- frame: typing.Optional[typing.Any] = 1.0,
164
- value: typing.Optional[typing.Any] = 1.0,
165
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
156
+ override_context: typing.Union[dict, bpy.types.Context] = None,
157
+ execution_context: typing.Union[str, int] = None,
158
+ undo: bool = None,
159
+ frame: typing.Any = 1.0,
160
+ value: typing.Any = 1.0,
161
+ extend: typing.Union[bool, typing.Any] = False,
166
162
  ):
167
163
  """Insert new keyframe at the cursor position for the active F-Curve
168
164
 
169
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
170
- :type execution_context: typing.Optional[typing.Union[int, str]]
171
- :type undo: typing.Optional[bool]
165
+ :type override_context: typing.Union[dict, bpy.types.Context]
166
+ :type execution_context: typing.Union[str, int]
167
+ :type undo: bool
172
168
  :param frame: Frame Number, Frame to insert keyframe on
173
- :type frame: typing.Optional[typing.Any]
169
+ :type frame: typing.Any
174
170
  :param value: Value, Value for keyframe on
175
- :type value: typing.Optional[typing.Any]
171
+ :type value: typing.Any
176
172
  :param extend: Extend, Extend selection instead of deselecting everything first
177
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
173
+ :type extend: typing.Union[bool, typing.Any]
178
174
  """
179
175
 
180
176
  ...
181
177
 
182
178
  def clickselect(
183
- override_context=None,
184
- execution_context=None,
185
- undo=None,
186
- *,
187
- wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]] = False,
188
- mouse_x: typing.Optional[typing.Any] = 0,
189
- mouse_y: typing.Optional[typing.Any] = 0,
190
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
191
- deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
192
- column: typing.Optional[typing.Union[bool, typing.Any]] = False,
193
- curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
179
+ override_context: typing.Union[dict, bpy.types.Context] = None,
180
+ execution_context: typing.Union[str, int] = None,
181
+ undo: bool = None,
182
+ wait_to_deselect_others: typing.Union[bool, typing.Any] = False,
183
+ mouse_x: typing.Any = 0,
184
+ mouse_y: typing.Any = 0,
185
+ extend: typing.Union[bool, typing.Any] = False,
186
+ deselect_all: typing.Union[bool, typing.Any] = False,
187
+ column: typing.Union[bool, typing.Any] = False,
188
+ curves: typing.Union[bool, typing.Any] = False,
194
189
  ):
195
190
  """Select keyframes by clicking on them
196
191
 
197
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
198
- :type execution_context: typing.Optional[typing.Union[int, str]]
199
- :type undo: typing.Optional[bool]
192
+ :type override_context: typing.Union[dict, bpy.types.Context]
193
+ :type execution_context: typing.Union[str, int]
194
+ :type undo: bool
200
195
  :param wait_to_deselect_others: Wait to Deselect Others
201
- :type wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]]
196
+ :type wait_to_deselect_others: typing.Union[bool, typing.Any]
202
197
  :param mouse_x: Mouse X
203
- :type mouse_x: typing.Optional[typing.Any]
198
+ :type mouse_x: typing.Any
204
199
  :param mouse_y: Mouse Y
205
- :type mouse_y: typing.Optional[typing.Any]
200
+ :type mouse_y: typing.Any
206
201
  :param extend: Extend Select, Toggle keyframe selection instead of leaving newly selected keyframes only
207
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
202
+ :type extend: typing.Union[bool, typing.Any]
208
203
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
209
- :type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
204
+ :type deselect_all: typing.Union[bool, typing.Any]
210
205
  :param column: Column Select, Select all keyframes that occur on the same frame as the one under the mouse
211
- :type column: typing.Optional[typing.Union[bool, typing.Any]]
206
+ :type column: typing.Union[bool, typing.Any]
212
207
  :param curves: Only Curves, Select all the keyframes in the curve
213
- :type curves: typing.Optional[typing.Union[bool, typing.Any]]
208
+ :type curves: typing.Union[bool, typing.Any]
214
209
  """
215
210
 
216
211
  ...
217
212
 
218
- def copy(override_context=None, execution_context=None, undo=None):
213
+ def copy(
214
+ override_context: typing.Union[dict, bpy.types.Context] = None,
215
+ execution_context: typing.Union[str, int] = None,
216
+ undo: bool = None,
217
+ ):
219
218
  """Copy selected keyframes to the internal clipboard
220
219
 
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]
220
+ :type override_context: typing.Union[dict, bpy.types.Context]
221
+ :type execution_context: typing.Union[str, int]
222
+ :type undo: bool
224
223
  """
225
224
 
226
225
  ...
227
226
 
228
227
  def cursor_set(
229
- override_context=None,
230
- execution_context=None,
231
- undo=None,
232
- *,
233
- frame: typing.Optional[typing.Any] = 0.0,
234
- value: typing.Optional[typing.Any] = 0.0,
228
+ override_context: typing.Union[dict, bpy.types.Context] = None,
229
+ execution_context: typing.Union[str, int] = None,
230
+ undo: bool = None,
231
+ frame: typing.Any = 0.0,
232
+ value: typing.Any = 0.0,
235
233
  ):
236
234
  """Interactively set the current frame and value cursor
237
235
 
238
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
239
- :type execution_context: typing.Optional[typing.Union[int, str]]
240
- :type undo: typing.Optional[bool]
236
+ :type override_context: typing.Union[dict, bpy.types.Context]
237
+ :type execution_context: typing.Union[str, int]
238
+ :type undo: bool
241
239
  :param frame: Frame
242
- :type frame: typing.Optional[typing.Any]
240
+ :type frame: typing.Any
243
241
  :param value: Value
244
- :type value: typing.Optional[typing.Any]
242
+ :type value: typing.Any
245
243
  """
246
244
 
247
245
  ...
248
246
 
249
247
  def decimate(
250
- override_context=None,
251
- execution_context=None,
252
- undo=None,
253
- *,
254
- mode: typing.Optional[typing.Any] = "RATIO",
255
- factor: typing.Optional[typing.Any] = 0.333333,
256
- remove_error_margin: typing.Optional[typing.Any] = 0.0,
248
+ override_context: typing.Union[dict, bpy.types.Context] = None,
249
+ execution_context: typing.Union[str, int] = None,
250
+ undo: bool = None,
251
+ mode: typing.Any = "RATIO",
252
+ factor: typing.Any = 0.333333,
253
+ remove_error_margin: typing.Any = 0.0,
257
254
  ):
258
255
  """Decimate F-Curves by removing keyframes that influence the curve shape the least
259
256
 
260
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
261
- :type execution_context: typing.Optional[typing.Union[int, str]]
262
- :type undo: typing.Optional[bool]
257
+ :type override_context: typing.Union[dict, bpy.types.Context]
258
+ :type execution_context: typing.Union[str, int]
259
+ :type undo: bool
263
260
  :param mode: Mode, Which mode to use for decimation
264
261
 
265
262
  RATIO
@@ -267,160 +264,164 @@ def decimate(
267
264
 
268
265
  ERROR
269
266
  Error Margin -- Use an error margin to specify how much the curve is allowed to deviate from the original path.
270
- :type mode: typing.Optional[typing.Any]
267
+ :type mode: typing.Any
271
268
  :param factor: Remove, The ratio of remaining keyframes after the operation
272
- :type factor: typing.Optional[typing.Any]
269
+ :type factor: typing.Any
273
270
  :param remove_error_margin: Max Error Margin, How much the new decimated curve is allowed to deviate from the original
274
- :type remove_error_margin: typing.Optional[typing.Any]
271
+ :type remove_error_margin: typing.Any
275
272
  """
276
273
 
277
274
  ...
278
275
 
279
276
  def delete(
280
- override_context=None,
281
- execution_context=None,
282
- undo=None,
283
- *,
284
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
277
+ override_context: typing.Union[dict, bpy.types.Context] = None,
278
+ execution_context: typing.Union[str, int] = None,
279
+ undo: bool = None,
280
+ confirm: typing.Union[bool, typing.Any] = True,
285
281
  ):
286
282
  """Remove all selected keyframes
287
283
 
288
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
289
- :type execution_context: typing.Optional[typing.Union[int, str]]
290
- :type undo: typing.Optional[bool]
284
+ :type override_context: typing.Union[dict, bpy.types.Context]
285
+ :type execution_context: typing.Union[str, int]
286
+ :type undo: bool
291
287
  :param confirm: Confirm, Prompt for confirmation
292
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
288
+ :type confirm: typing.Union[bool, typing.Any]
293
289
  """
294
290
 
295
291
  ...
296
292
 
297
- def driver_delete_invalid(override_context=None, execution_context=None, undo=None):
293
+ def driver_delete_invalid(
294
+ override_context: typing.Union[dict, bpy.types.Context] = None,
295
+ execution_context: typing.Union[str, int] = None,
296
+ undo: bool = None,
297
+ ):
298
298
  """Delete all visible drivers considered invalid
299
299
 
300
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
301
- :type execution_context: typing.Optional[typing.Union[int, str]]
302
- :type undo: typing.Optional[bool]
300
+ :type override_context: typing.Union[dict, bpy.types.Context]
301
+ :type execution_context: typing.Union[str, int]
302
+ :type undo: bool
303
303
  """
304
304
 
305
305
  ...
306
306
 
307
- def driver_variables_copy(override_context=None, execution_context=None, undo=None):
307
+ def driver_variables_copy(
308
+ override_context: typing.Union[dict, bpy.types.Context] = None,
309
+ execution_context: typing.Union[str, int] = None,
310
+ undo: bool = None,
311
+ ):
308
312
  """Copy the driver variables of the active driver
309
313
 
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]
314
+ :type override_context: typing.Union[dict, bpy.types.Context]
315
+ :type execution_context: typing.Union[str, int]
316
+ :type undo: bool
313
317
  """
314
318
 
315
319
  ...
316
320
 
317
321
  def driver_variables_paste(
318
- override_context=None,
319
- execution_context=None,
320
- undo=None,
321
- *,
322
- replace: typing.Optional[typing.Union[bool, typing.Any]] = False,
322
+ override_context: typing.Union[dict, bpy.types.Context] = None,
323
+ execution_context: typing.Union[str, int] = None,
324
+ undo: bool = None,
325
+ replace: typing.Union[bool, typing.Any] = False,
323
326
  ):
324
327
  """Add copied driver variables to the active driver
325
328
 
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]
329
+ :type override_context: typing.Union[dict, bpy.types.Context]
330
+ :type execution_context: typing.Union[str, int]
331
+ :type undo: bool
329
332
  :param replace: Replace Existing, Replace existing driver variables, instead of just appending to the end of the existing list
330
- :type replace: typing.Optional[typing.Union[bool, typing.Any]]
333
+ :type replace: typing.Union[bool, typing.Any]
331
334
  """
332
335
 
333
336
  ...
334
337
 
335
338
  def duplicate(
336
- override_context=None,
337
- execution_context=None,
338
- undo=None,
339
- *,
340
- mode: typing.Optional[typing.Any] = "TRANSLATION",
339
+ override_context: typing.Union[dict, bpy.types.Context] = None,
340
+ execution_context: typing.Union[str, int] = None,
341
+ undo: bool = None,
342
+ mode: typing.Any = "TRANSLATION",
341
343
  ):
342
344
  """Make a copy of all selected keyframes
343
345
 
344
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
345
- :type execution_context: typing.Optional[typing.Union[int, str]]
346
- :type undo: typing.Optional[bool]
346
+ :type override_context: typing.Union[dict, bpy.types.Context]
347
+ :type execution_context: typing.Union[str, int]
348
+ :type undo: bool
347
349
  :param mode: Mode
348
- :type mode: typing.Optional[typing.Any]
350
+ :type mode: typing.Any
349
351
  """
350
352
 
351
353
  ...
352
354
 
353
355
  def duplicate_move(
354
- override_context=None,
355
- execution_context=None,
356
- undo=None,
357
- *,
358
- GRAPH_OT_duplicate: typing.Optional["duplicate"] = None,
359
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
356
+ override_context: typing.Union[dict, bpy.types.Context] = None,
357
+ execution_context: typing.Union[str, int] = None,
358
+ undo: bool = None,
359
+ GRAPH_OT_duplicate: duplicate = None,
360
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
360
361
  ):
361
362
  """Make a copy of all selected keyframes and move them
362
363
 
363
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
364
- :type execution_context: typing.Optional[typing.Union[int, str]]
365
- :type undo: typing.Optional[bool]
364
+ :type override_context: typing.Union[dict, bpy.types.Context]
365
+ :type execution_context: typing.Union[str, int]
366
+ :type undo: bool
366
367
  :param GRAPH_OT_duplicate: Duplicate Keyframes, Make a copy of all selected keyframes
367
- :type GRAPH_OT_duplicate: typing.Optional['duplicate']
368
+ :type GRAPH_OT_duplicate: duplicate
368
369
  :param TRANSFORM_OT_translate: Move, Move selected items
369
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
370
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
370
371
  """
371
372
 
372
373
  ...
373
374
 
374
375
  def ease(
375
- override_context=None,
376
- execution_context=None,
377
- undo=None,
378
- *,
379
- factor: typing.Optional[typing.Any] = 0.0,
376
+ override_context: typing.Union[dict, bpy.types.Context] = None,
377
+ execution_context: typing.Union[str, int] = None,
378
+ undo: bool = None,
379
+ factor: typing.Any = 0.0,
380
+ sharpness: typing.Any = 2.0,
380
381
  ):
381
382
  """Align keyframes on a ease-in or ease-out curve
382
383
 
383
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
384
- :type execution_context: typing.Optional[typing.Union[int, str]]
385
- :type undo: typing.Optional[bool]
386
- :param factor: Curve Bend, Control the bend of the curve
387
- :type factor: typing.Optional[typing.Any]
384
+ :type override_context: typing.Union[dict, bpy.types.Context]
385
+ :type execution_context: typing.Union[str, int]
386
+ :type undo: bool
387
+ :param factor: Curve Bend, Defines if the keys should be aligned on an ease-in or ease-out curve
388
+ :type factor: typing.Any
389
+ :param sharpness: Sharpness, Higher values make the change more abrupt
390
+ :type sharpness: typing.Any
388
391
  """
389
392
 
390
393
  ...
391
394
 
392
395
  def easing_type(
393
- override_context=None,
394
- execution_context=None,
395
- undo=None,
396
- *,
397
- type: typing.Optional[typing.Any] = "AUTO",
396
+ override_context: typing.Union[dict, bpy.types.Context] = None,
397
+ execution_context: typing.Union[str, int] = None,
398
+ undo: bool = None,
399
+ type: typing.Any = "AUTO",
398
400
  ):
399
401
  """Set easing type for the F-Curve segments starting from the selected keyframes
400
402
 
401
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
402
- :type execution_context: typing.Optional[typing.Union[int, str]]
403
- :type undo: typing.Optional[bool]
403
+ :type override_context: typing.Union[dict, bpy.types.Context]
404
+ :type execution_context: typing.Union[str, int]
405
+ :type undo: bool
404
406
  :param type: Type
405
- :type type: typing.Optional[typing.Any]
407
+ :type type: typing.Any
406
408
  """
407
409
 
408
410
  ...
409
411
 
410
412
  def equalize_handles(
411
- override_context=None,
412
- execution_context=None,
413
- undo=None,
414
- *,
415
- side: typing.Optional[typing.Any] = "LEFT",
416
- handle_length: typing.Optional[typing.Any] = 5.0,
417
- flatten: 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
+ side: typing.Any = "LEFT",
417
+ handle_length: typing.Any = 5.0,
418
+ flatten: typing.Union[bool, typing.Any] = False,
418
419
  ):
419
420
  """Ensure selected keyframes' handles have equal length, optionally making them horizontal. Automatic, Automatic Clamped, or Vector handle types will be converted to Aligned
420
421
 
421
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
422
- :type execution_context: typing.Optional[typing.Union[int, str]]
423
- :type undo: typing.Optional[bool]
422
+ :type override_context: typing.Union[dict, bpy.types.Context]
423
+ :type execution_context: typing.Union[str, int]
424
+ :type undo: bool
424
425
  :param side: Side, Side of the keyframes' Bézier handles to affect
425
426
 
426
427
  LEFT
@@ -431,37 +432,40 @@ def equalize_handles(
431
432
 
432
433
  BOTH
433
434
  Both -- Equalize both of a keyframe's handles.
434
- :type side: typing.Optional[typing.Any]
435
+ :type side: typing.Any
435
436
  :param handle_length: Handle Length, Length to make selected keyframes' Bézier handles
436
- :type handle_length: typing.Optional[typing.Any]
437
+ :type handle_length: typing.Any
437
438
  :param flatten: Flatten, Make the values of the selected keyframes' handles the same as their respective keyframes
438
- :type flatten: typing.Optional[typing.Union[bool, typing.Any]]
439
+ :type flatten: typing.Union[bool, typing.Any]
439
440
  """
440
441
 
441
442
  ...
442
443
 
443
- def euler_filter(override_context=None, execution_context=None, undo=None):
444
+ def euler_filter(
445
+ override_context: typing.Union[dict, bpy.types.Context] = None,
446
+ execution_context: typing.Union[str, int] = None,
447
+ undo: bool = None,
448
+ ):
444
449
  """Fix large jumps and flips in the selected Euler Rotation F-Curves arising from rotation values being clipped when baking physics
445
450
 
446
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
447
- :type execution_context: typing.Optional[typing.Union[int, str]]
448
- :type undo: typing.Optional[bool]
451
+ :type override_context: typing.Union[dict, bpy.types.Context]
452
+ :type execution_context: typing.Union[str, int]
453
+ :type undo: bool
449
454
  """
450
455
 
451
456
  ...
452
457
 
453
458
  def extrapolation_type(
454
- override_context=None,
455
- execution_context=None,
456
- undo=None,
457
- *,
458
- type: typing.Optional[typing.Any] = "CONSTANT",
459
+ override_context: typing.Union[dict, bpy.types.Context] = None,
460
+ execution_context: typing.Union[str, int] = None,
461
+ undo: bool = None,
462
+ type: typing.Any = "CONSTANT",
459
463
  ):
460
464
  """Set extrapolation mode for selected F-Curves
461
465
 
462
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
463
- :type execution_context: typing.Optional[typing.Union[int, str]]
464
- :type undo: typing.Optional[bool]
466
+ :type override_context: typing.Union[dict, bpy.types.Context]
467
+ :type execution_context: typing.Union[str, int]
468
+ :type undo: bool
465
469
  :param type: Type
466
470
 
467
471
  CONSTANT
@@ -475,183 +479,192 @@ def extrapolation_type(
475
479
 
476
480
  CLEAR_CYCLIC
477
481
  Clear Cyclic (F-Modifier) -- Remove Cycles F-Modifier if not needed anymore.
478
- :type type: typing.Optional[typing.Any]
482
+ :type type: typing.Any
479
483
  """
480
484
 
481
485
  ...
482
486
 
483
487
  def fmodifier_add(
484
- override_context=None,
485
- execution_context=None,
486
- undo=None,
487
- *,
488
- type: typing.Optional[typing.Any] = "NULL",
489
- only_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
488
+ override_context: typing.Union[dict, bpy.types.Context] = None,
489
+ execution_context: typing.Union[str, int] = None,
490
+ undo: bool = None,
491
+ type: typing.Any = "NULL",
492
+ only_active: typing.Union[bool, typing.Any] = False,
490
493
  ):
491
494
  """Add F-Modifier to the active/selected F-Curves
492
495
 
493
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
494
- :type execution_context: typing.Optional[typing.Union[int, str]]
495
- :type undo: typing.Optional[bool]
496
+ :type override_context: typing.Union[dict, bpy.types.Context]
497
+ :type execution_context: typing.Union[str, int]
498
+ :type undo: bool
496
499
  :param type: Type
497
- :type type: typing.Optional[typing.Any]
500
+ :type type: typing.Any
498
501
  :param only_active: Only Active, Only add F-Modifier to active F-Curve
499
- :type only_active: typing.Optional[typing.Union[bool, typing.Any]]
502
+ :type only_active: typing.Union[bool, typing.Any]
500
503
  """
501
504
 
502
505
  ...
503
506
 
504
- def fmodifier_copy(override_context=None, execution_context=None, undo=None):
507
+ def fmodifier_copy(
508
+ override_context: typing.Union[dict, bpy.types.Context] = None,
509
+ execution_context: typing.Union[str, int] = None,
510
+ undo: bool = None,
511
+ ):
505
512
  """Copy the F-Modifier(s) of the active F-Curve
506
513
 
507
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
508
- :type execution_context: typing.Optional[typing.Union[int, str]]
509
- :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
510
517
  """
511
518
 
512
519
  ...
513
520
 
514
521
  def fmodifier_paste(
515
- override_context=None,
516
- execution_context=None,
517
- undo=None,
518
- *,
519
- only_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
520
- replace: typing.Optional[typing.Union[bool, typing.Any]] = False,
522
+ override_context: typing.Union[dict, bpy.types.Context] = None,
523
+ execution_context: typing.Union[str, int] = None,
524
+ undo: bool = None,
525
+ only_active: typing.Union[bool, typing.Any] = False,
526
+ replace: typing.Union[bool, typing.Any] = False,
521
527
  ):
522
528
  """Add copied F-Modifiers to the selected F-Curves
523
529
 
524
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
525
- :type execution_context: typing.Optional[typing.Union[int, str]]
526
- :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
527
533
  :param only_active: Only Active, Only paste F-Modifiers on active F-Curve
528
- :type only_active: typing.Optional[typing.Union[bool, typing.Any]]
534
+ :type only_active: typing.Union[bool, typing.Any]
529
535
  :param replace: Replace Existing, Replace existing F-Modifiers, instead of just appending to the end of the existing list
530
- :type replace: typing.Optional[typing.Union[bool, typing.Any]]
536
+ :type replace: typing.Union[bool, typing.Any]
531
537
  """
532
538
 
533
539
  ...
534
540
 
535
- def frame_jump(override_context=None, execution_context=None, undo=None):
541
+ def frame_jump(
542
+ override_context: typing.Union[dict, bpy.types.Context] = None,
543
+ execution_context: typing.Union[str, int] = None,
544
+ undo: bool = None,
545
+ ):
536
546
  """Place the cursor on the midpoint of selected keyframes
537
547
 
538
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
539
- :type execution_context: typing.Optional[typing.Union[int, str]]
540
- :type undo: typing.Optional[bool]
548
+ :type override_context: typing.Union[dict, bpy.types.Context]
549
+ :type execution_context: typing.Union[str, int]
550
+ :type undo: bool
541
551
  """
542
552
 
543
553
  ...
544
554
 
545
555
  def gaussian_smooth(
546
- override_context=None,
547
- execution_context=None,
548
- undo=None,
549
- *,
550
- factor: typing.Optional[typing.Any] = 1.0,
551
- sigma: typing.Optional[typing.Any] = 0.33,
552
- filter_width: typing.Optional[typing.Any] = 6,
556
+ override_context: typing.Union[dict, bpy.types.Context] = None,
557
+ execution_context: typing.Union[str, int] = None,
558
+ undo: bool = None,
559
+ factor: typing.Any = 1.0,
560
+ sigma: typing.Any = 0.33,
561
+ filter_width: typing.Any = 6,
553
562
  ):
554
563
  """Smooth the curve using a Gaussian filter
555
564
 
556
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
557
- :type execution_context: typing.Optional[typing.Union[int, str]]
558
- :type undo: typing.Optional[bool]
565
+ :type override_context: typing.Union[dict, bpy.types.Context]
566
+ :type execution_context: typing.Union[str, int]
567
+ :type undo: bool
559
568
  :param factor: Factor, How much to blend to the default value
560
- :type factor: typing.Optional[typing.Any]
569
+ :type factor: typing.Any
561
570
  :param sigma: Sigma, The shape of the gaussian distribution, lower values make it sharper
562
- :type sigma: typing.Optional[typing.Any]
571
+ :type sigma: typing.Any
563
572
  :param filter_width: Filter Width, How far to each side the operator will average the key values
564
- :type filter_width: typing.Optional[typing.Any]
573
+ :type filter_width: typing.Any
565
574
  """
566
575
 
567
576
  ...
568
577
 
569
- def ghost_curves_clear(override_context=None, execution_context=None, undo=None):
578
+ def ghost_curves_clear(
579
+ override_context: typing.Union[dict, bpy.types.Context] = None,
580
+ execution_context: typing.Union[str, int] = None,
581
+ undo: bool = None,
582
+ ):
570
583
  """Clear F-Curve snapshots (Ghosts) for active Graph Editor
571
584
 
572
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
573
- :type execution_context: typing.Optional[typing.Union[int, str]]
574
- :type undo: typing.Optional[bool]
585
+ :type override_context: typing.Union[dict, bpy.types.Context]
586
+ :type execution_context: typing.Union[str, int]
587
+ :type undo: bool
575
588
  """
576
589
 
577
590
  ...
578
591
 
579
- def ghost_curves_create(override_context=None, execution_context=None, undo=None):
592
+ def ghost_curves_create(
593
+ override_context: typing.Union[dict, bpy.types.Context] = None,
594
+ execution_context: typing.Union[str, int] = None,
595
+ undo: bool = None,
596
+ ):
580
597
  """Create snapshot (Ghosts) of selected F-Curves as background aid for active Graph Editor
581
598
 
582
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
583
- :type execution_context: typing.Optional[typing.Union[int, str]]
584
- :type undo: typing.Optional[bool]
599
+ :type override_context: typing.Union[dict, bpy.types.Context]
600
+ :type execution_context: typing.Union[str, int]
601
+ :type undo: bool
585
602
  """
586
603
 
587
604
  ...
588
605
 
589
606
  def handle_type(
590
- override_context=None,
591
- execution_context=None,
592
- undo=None,
593
- *,
594
- type: typing.Optional[typing.Any] = "FREE",
607
+ override_context: typing.Union[dict, bpy.types.Context] = None,
608
+ execution_context: typing.Union[str, int] = None,
609
+ undo: bool = None,
610
+ type: typing.Any = "FREE",
595
611
  ):
596
612
  """Set type of handle for selected keyframes
597
613
 
598
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
599
- :type execution_context: typing.Optional[typing.Union[int, str]]
600
- :type undo: typing.Optional[bool]
614
+ :type override_context: typing.Union[dict, bpy.types.Context]
615
+ :type execution_context: typing.Union[str, int]
616
+ :type undo: bool
601
617
  :param type: Type
602
- :type type: typing.Optional[typing.Any]
618
+ :type type: typing.Any
603
619
  """
604
620
 
605
621
  ...
606
622
 
607
623
  def hide(
608
- override_context=None,
609
- execution_context=None,
610
- undo=None,
611
- *,
612
- unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
624
+ override_context: typing.Union[dict, bpy.types.Context] = None,
625
+ execution_context: typing.Union[str, int] = None,
626
+ undo: bool = None,
627
+ unselected: typing.Union[bool, typing.Any] = False,
613
628
  ):
614
629
  """Hide selected curves from Graph Editor view
615
630
 
616
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
617
- :type execution_context: typing.Optional[typing.Union[int, str]]
618
- :type undo: typing.Optional[bool]
631
+ :type override_context: typing.Union[dict, bpy.types.Context]
632
+ :type execution_context: typing.Union[str, int]
633
+ :type undo: bool
619
634
  :param unselected: Unselected, Hide unselected rather than selected curves
620
- :type unselected: typing.Optional[typing.Union[bool, typing.Any]]
635
+ :type unselected: typing.Union[bool, typing.Any]
621
636
  """
622
637
 
623
638
  ...
624
639
 
625
640
  def interpolation_type(
626
- override_context=None,
627
- execution_context=None,
628
- undo=None,
629
- *,
630
- type: typing.Optional[typing.Any] = "CONSTANT",
641
+ override_context: typing.Union[dict, bpy.types.Context] = None,
642
+ execution_context: typing.Union[str, int] = None,
643
+ undo: bool = None,
644
+ type: typing.Any = "CONSTANT",
631
645
  ):
632
646
  """Set interpolation mode for the F-Curve segments starting from the selected keyframes
633
647
 
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]
648
+ :type override_context: typing.Union[dict, bpy.types.Context]
649
+ :type execution_context: typing.Union[str, int]
650
+ :type undo: bool
637
651
  :param type: Type
638
- :type type: typing.Optional[typing.Any]
652
+ :type type: typing.Any
639
653
  """
640
654
 
641
655
  ...
642
656
 
643
657
  def keyframe_insert(
644
- override_context=None,
645
- execution_context=None,
646
- undo=None,
647
- *,
648
- type: typing.Optional[typing.Any] = "ALL",
658
+ override_context: typing.Union[dict, bpy.types.Context] = None,
659
+ execution_context: typing.Union[str, int] = None,
660
+ undo: bool = None,
661
+ type: typing.Any = "ALL",
649
662
  ):
650
663
  """Insert keyframes for the specified channels
651
664
 
652
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
653
- :type execution_context: typing.Optional[typing.Union[int, str]]
654
- :type undo: typing.Optional[bool]
665
+ :type override_context: typing.Union[dict, bpy.types.Context]
666
+ :type execution_context: typing.Union[str, int]
667
+ :type undo: bool
655
668
  :param type: Type
656
669
 
657
670
  ALL
@@ -668,77 +681,73 @@ def keyframe_insert(
668
681
 
669
682
  CURSOR_SEL
670
683
  Selected Channels at Cursor -- Insert a keyframe for selected F-Curves at the cursor point.
671
- :type type: typing.Optional[typing.Any]
684
+ :type type: typing.Any
672
685
  """
673
686
 
674
687
  ...
675
688
 
676
689
  def keyframe_jump(
677
- override_context=None,
678
- execution_context=None,
679
- undo=None,
680
- *,
681
- next: typing.Optional[typing.Union[bool, typing.Any]] = True,
690
+ override_context: typing.Union[dict, bpy.types.Context] = None,
691
+ execution_context: typing.Union[str, int] = None,
692
+ undo: bool = None,
693
+ next: typing.Union[bool, typing.Any] = True,
682
694
  ):
683
695
  """Jump to previous/next keyframe
684
696
 
685
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
686
- :type execution_context: typing.Optional[typing.Union[int, str]]
687
- :type undo: typing.Optional[bool]
697
+ :type override_context: typing.Union[dict, bpy.types.Context]
698
+ :type execution_context: typing.Union[str, int]
699
+ :type undo: bool
688
700
  :param next: Next Keyframe
689
- :type next: typing.Optional[typing.Union[bool, typing.Any]]
701
+ :type next: typing.Union[bool, typing.Any]
690
702
  """
691
703
 
692
704
  ...
693
705
 
694
706
  def keys_to_samples(
695
- override_context=None,
696
- execution_context=None,
697
- undo=None,
698
- *,
699
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
707
+ override_context: typing.Union[dict, bpy.types.Context] = None,
708
+ execution_context: typing.Union[str, int] = None,
709
+ undo: bool = None,
710
+ confirm: typing.Union[bool, typing.Any] = True,
700
711
  ):
701
712
  """Convert selected channels to an uneditable set of samples to save storage space
702
713
 
703
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
704
- :type execution_context: typing.Optional[typing.Union[int, str]]
705
- :type undo: typing.Optional[bool]
714
+ :type override_context: typing.Union[dict, bpy.types.Context]
715
+ :type execution_context: typing.Union[str, int]
716
+ :type undo: bool
706
717
  :param confirm: Confirm, Prompt for confirmation
707
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
718
+ :type confirm: typing.Union[bool, typing.Any]
708
719
  """
709
720
 
710
721
  ...
711
722
 
712
723
  def match_slope(
713
- override_context=None,
714
- execution_context=None,
715
- undo=None,
716
- *,
717
- factor: typing.Optional[typing.Any] = 0.0,
724
+ override_context: typing.Union[dict, bpy.types.Context] = None,
725
+ execution_context: typing.Union[str, int] = None,
726
+ undo: bool = None,
727
+ factor: typing.Any = 0.0,
718
728
  ):
719
729
  """Blend selected keys to the slope of neighboring ones
720
730
 
721
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
722
- :type execution_context: typing.Optional[typing.Union[int, str]]
723
- :type undo: typing.Optional[bool]
731
+ :type override_context: typing.Union[dict, bpy.types.Context]
732
+ :type execution_context: typing.Union[str, int]
733
+ :type undo: bool
724
734
  :param factor: Factor, Defines which keys to use as slope and how much to blend towards them
725
- :type factor: typing.Optional[typing.Any]
735
+ :type factor: typing.Any
726
736
  """
727
737
 
728
738
  ...
729
739
 
730
740
  def mirror(
731
- override_context=None,
732
- execution_context=None,
733
- undo=None,
734
- *,
735
- type: typing.Optional[typing.Any] = "CFRA",
741
+ override_context: typing.Union[dict, bpy.types.Context] = None,
742
+ execution_context: typing.Union[str, int] = None,
743
+ undo: bool = None,
744
+ type: typing.Any = "CFRA",
736
745
  ):
737
746
  """Flip selected keyframes over the selected mirror line
738
747
 
739
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
740
- :type execution_context: typing.Optional[typing.Union[int, str]]
741
- :type undo: typing.Optional[bool]
748
+ :type override_context: typing.Union[dict, bpy.types.Context]
749
+ :type execution_context: typing.Union[str, int]
750
+ :type undo: bool
742
751
  :param type: Type
743
752
 
744
753
  CFRA
@@ -755,145 +764,147 @@ def mirror(
755
764
 
756
765
  MARKER
757
766
  By Times Over First Selected Marker -- Flip times of selected keyframes using the first selected marker as the reference point.
758
- :type type: typing.Optional[typing.Any]
767
+ :type type: typing.Any
759
768
  """
760
769
 
761
770
  ...
762
771
 
763
772
  def paste(
764
- override_context=None,
765
- execution_context=None,
766
- undo=None,
767
- *,
768
- offset: typing.Optional[typing.Any] = "START",
769
- value_offset: typing.Optional[typing.Any] = "NONE",
770
- merge: typing.Optional[typing.Any] = "MIX",
771
- flipped: typing.Optional[typing.Union[bool, typing.Any]] = False,
773
+ override_context: typing.Union[dict, bpy.types.Context] = None,
774
+ execution_context: typing.Union[str, int] = None,
775
+ undo: bool = None,
776
+ offset: typing.Any = "START",
777
+ value_offset: typing.Any = "NONE",
778
+ merge: typing.Any = "MIX",
779
+ flipped: typing.Union[bool, typing.Any] = False,
772
780
  ):
773
781
  """Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
774
782
 
775
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
776
- :type execution_context: typing.Optional[typing.Union[int, str]]
777
- :type undo: typing.Optional[bool]
783
+ :type override_context: typing.Union[dict, bpy.types.Context]
784
+ :type execution_context: typing.Union[str, int]
785
+ :type undo: bool
778
786
  :param offset: Frame Offset, Paste time offset of keys
779
- :type offset: typing.Optional[typing.Any]
787
+ :type offset: typing.Any
780
788
  :param value_offset: Value Offset, Paste keys with a value offset
781
- :type value_offset: typing.Optional[typing.Any]
789
+ :type value_offset: typing.Any
782
790
  :param merge: Type, Method of merging pasted keys and existing
783
- :type merge: typing.Optional[typing.Any]
791
+ :type merge: typing.Any
784
792
  :param flipped: Flipped, Paste keyframes from mirrored bones if they exist
785
- :type flipped: typing.Optional[typing.Union[bool, typing.Any]]
793
+ :type flipped: typing.Union[bool, typing.Any]
786
794
  """
787
795
 
788
796
  ...
789
797
 
790
- def previewrange_set(override_context=None, execution_context=None, undo=None):
798
+ def previewrange_set(
799
+ override_context: typing.Union[dict, bpy.types.Context] = None,
800
+ execution_context: typing.Union[str, int] = None,
801
+ undo: bool = None,
802
+ ):
791
803
  """Set Preview Range based on range of selected keyframes
792
804
 
793
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
794
- :type execution_context: typing.Optional[typing.Union[int, str]]
795
- :type undo: typing.Optional[bool]
805
+ :type override_context: typing.Union[dict, bpy.types.Context]
806
+ :type execution_context: typing.Union[str, int]
807
+ :type undo: bool
796
808
  """
797
809
 
798
810
  ...
799
811
 
800
812
  def push_pull(
801
- override_context=None,
802
- execution_context=None,
803
- undo=None,
804
- *,
805
- factor: typing.Optional[typing.Any] = 1.0,
813
+ override_context: typing.Union[dict, bpy.types.Context] = None,
814
+ execution_context: typing.Union[str, int] = None,
815
+ undo: bool = None,
816
+ factor: typing.Any = 1.0,
806
817
  ):
807
818
  """Exaggerate or minimize the value of the selected keys
808
819
 
809
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
810
- :type execution_context: typing.Optional[typing.Union[int, str]]
811
- :type undo: typing.Optional[bool]
820
+ :type override_context: typing.Union[dict, bpy.types.Context]
821
+ :type execution_context: typing.Union[str, int]
822
+ :type undo: bool
812
823
  :param factor: Factor, Control how far to push or pull the keys
813
- :type factor: typing.Optional[typing.Any]
824
+ :type factor: typing.Any
814
825
  """
815
826
 
816
827
  ...
817
828
 
818
829
  def reveal(
819
- override_context=None,
820
- execution_context=None,
821
- undo=None,
822
- *,
823
- select: typing.Optional[typing.Union[bool, typing.Any]] = True,
830
+ override_context: typing.Union[dict, bpy.types.Context] = None,
831
+ execution_context: typing.Union[str, int] = None,
832
+ undo: bool = None,
833
+ select: typing.Union[bool, typing.Any] = True,
824
834
  ):
825
835
  """Make previously hidden curves visible again in Graph Editor view
826
836
 
827
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
828
- :type execution_context: typing.Optional[typing.Union[int, str]]
829
- :type undo: typing.Optional[bool]
837
+ :type override_context: typing.Union[dict, bpy.types.Context]
838
+ :type execution_context: typing.Union[str, int]
839
+ :type undo: bool
830
840
  :param select: Select
831
- :type select: typing.Optional[typing.Union[bool, typing.Any]]
841
+ :type select: typing.Union[bool, typing.Any]
832
842
  """
833
843
 
834
844
  ...
835
845
 
836
- def samples_to_keys(override_context=None, execution_context=None, undo=None):
846
+ def samples_to_keys(
847
+ override_context: typing.Union[dict, bpy.types.Context] = None,
848
+ execution_context: typing.Union[str, int] = None,
849
+ undo: bool = None,
850
+ ):
837
851
  """Convert selected channels from samples to keyframes
838
852
 
839
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
840
- :type execution_context: typing.Optional[typing.Union[int, str]]
841
- :type undo: typing.Optional[bool]
853
+ :type override_context: typing.Union[dict, bpy.types.Context]
854
+ :type execution_context: typing.Union[str, int]
855
+ :type undo: bool
842
856
  """
843
857
 
844
858
  ...
845
859
 
846
860
  def scale_average(
847
- override_context=None,
848
- execution_context=None,
849
- undo=None,
850
- *,
851
- factor: typing.Optional[typing.Any] = 1.0,
861
+ override_context: typing.Union[dict, bpy.types.Context] = None,
862
+ execution_context: typing.Union[str, int] = None,
863
+ undo: bool = None,
864
+ factor: typing.Any = 1.0,
852
865
  ):
853
866
  """Scale selected key values by their combined average
854
867
 
855
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
856
- :type execution_context: typing.Optional[typing.Union[int, str]]
857
- :type undo: typing.Optional[bool]
868
+ :type override_context: typing.Union[dict, bpy.types.Context]
869
+ :type execution_context: typing.Union[str, int]
870
+ :type undo: bool
858
871
  :param factor: Scale Factor, The scale factor applied to the curve segments
859
- :type factor: typing.Optional[typing.Any]
872
+ :type factor: typing.Any
860
873
  """
861
874
 
862
875
  ...
863
876
 
864
877
  def scale_from_neighbor(
865
- override_context=None,
866
- execution_context=None,
867
- undo=None,
868
- *,
869
- factor: typing.Optional[typing.Any] = 0.0,
870
- anchor: typing.Optional[typing.Any] = "LEFT",
878
+ override_context: typing.Union[dict, bpy.types.Context] = None,
879
+ execution_context: typing.Union[str, int] = None,
880
+ undo: bool = None,
881
+ factor: typing.Any = 0.0,
882
+ anchor: typing.Any = "LEFT",
871
883
  ):
872
884
  """Increase or decrease the value of selected keys in relationship to the neighboring one
873
885
 
874
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
875
- :type execution_context: typing.Optional[typing.Union[int, str]]
876
- :type undo: typing.Optional[bool]
886
+ :type override_context: typing.Union[dict, bpy.types.Context]
887
+ :type execution_context: typing.Union[str, int]
888
+ :type undo: bool
877
889
  :param factor: Factor, The factor to scale keys with
878
- :type factor: typing.Optional[typing.Any]
890
+ :type factor: typing.Any
879
891
  :param anchor: Reference Key, Which end of the segment to use as a reference to scale from
880
- :type anchor: typing.Optional[typing.Any]
892
+ :type anchor: typing.Any
881
893
  """
882
894
 
883
895
  ...
884
896
 
885
897
  def select_all(
886
- override_context=None,
887
- execution_context=None,
888
- undo=None,
889
- *,
890
- action: typing.Optional[typing.Any] = "TOGGLE",
898
+ override_context: typing.Union[dict, bpy.types.Context] = None,
899
+ execution_context: typing.Union[str, int] = None,
900
+ undo: bool = None,
901
+ action: typing.Any = "TOGGLE",
891
902
  ):
892
903
  """Toggle selection of all keyframes
893
904
 
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]
905
+ :type override_context: typing.Union[dict, bpy.types.Context]
906
+ :type execution_context: typing.Union[str, int]
907
+ :type undo: bool
897
908
  :param action: Action, Selection action to execute
898
909
 
899
910
  TOGGLE
@@ -907,50 +918,49 @@ def select_all(
907
918
 
908
919
  INVERT
909
920
  Invert -- Invert selection of all elements.
910
- :type action: typing.Optional[typing.Any]
921
+ :type action: typing.Any
911
922
  """
912
923
 
913
924
  ...
914
925
 
915
926
  def select_box(
916
- override_context=None,
917
- execution_context=None,
918
- undo=None,
919
- *,
920
- axis_range: typing.Optional[typing.Union[bool, typing.Any]] = False,
921
- include_handles: typing.Optional[typing.Union[bool, typing.Any]] = True,
922
- tweak: typing.Optional[typing.Union[bool, typing.Any]] = False,
923
- use_curve_selection: typing.Optional[typing.Union[bool, typing.Any]] = True,
924
- xmin: typing.Optional[typing.Any] = 0,
925
- xmax: typing.Optional[typing.Any] = 0,
926
- ymin: typing.Optional[typing.Any] = 0,
927
- ymax: typing.Optional[typing.Any] = 0,
928
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
929
- mode: typing.Optional[typing.Any] = "SET",
927
+ override_context: typing.Union[dict, bpy.types.Context] = None,
928
+ execution_context: typing.Union[str, int] = None,
929
+ undo: bool = None,
930
+ axis_range: typing.Union[bool, typing.Any] = False,
931
+ include_handles: typing.Union[bool, typing.Any] = True,
932
+ tweak: typing.Union[bool, typing.Any] = False,
933
+ use_curve_selection: typing.Union[bool, typing.Any] = True,
934
+ xmin: typing.Any = 0,
935
+ xmax: typing.Any = 0,
936
+ ymin: typing.Any = 0,
937
+ ymax: typing.Any = 0,
938
+ wait_for_input: typing.Union[bool, typing.Any] = True,
939
+ mode: typing.Any = "SET",
930
940
  ):
931
941
  """Select all keyframes within the specified region
932
942
 
933
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
934
- :type execution_context: typing.Optional[typing.Union[int, str]]
935
- :type undo: typing.Optional[bool]
943
+ :type override_context: typing.Union[dict, bpy.types.Context]
944
+ :type execution_context: typing.Union[str, int]
945
+ :type undo: bool
936
946
  :param axis_range: Axis Range
937
- :type axis_range: typing.Optional[typing.Union[bool, typing.Any]]
947
+ :type axis_range: typing.Union[bool, typing.Any]
938
948
  :param include_handles: Include Handles, Are handles tested individually against the selection criteria
939
- :type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
949
+ :type include_handles: typing.Union[bool, typing.Any]
940
950
  :param tweak: Tweak, Operator has been activated using a click-drag event
941
- :type tweak: typing.Optional[typing.Union[bool, typing.Any]]
951
+ :type tweak: typing.Union[bool, typing.Any]
942
952
  :param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the calculated F-curve
943
- :type use_curve_selection: typing.Optional[typing.Union[bool, typing.Any]]
953
+ :type use_curve_selection: typing.Union[bool, typing.Any]
944
954
  :param xmin: X Min
945
- :type xmin: typing.Optional[typing.Any]
955
+ :type xmin: typing.Any
946
956
  :param xmax: X Max
947
- :type xmax: typing.Optional[typing.Any]
957
+ :type xmax: typing.Any
948
958
  :param ymin: Y Min
949
- :type ymin: typing.Optional[typing.Any]
959
+ :type ymin: typing.Any
950
960
  :param ymax: Y Max
951
- :type ymax: typing.Optional[typing.Any]
961
+ :type ymax: typing.Any
952
962
  :param wait_for_input: Wait for Input
953
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
963
+ :type wait_for_input: typing.Union[bool, typing.Any]
954
964
  :param mode: Mode
955
965
 
956
966
  SET
@@ -961,36 +971,35 @@ def select_box(
961
971
 
962
972
  SUB
963
973
  Subtract -- Subtract existing selection.
964
- :type mode: typing.Optional[typing.Any]
974
+ :type mode: typing.Any
965
975
  """
966
976
 
967
977
  ...
968
978
 
969
979
  def select_circle(
970
- override_context=None,
971
- execution_context=None,
972
- undo=None,
973
- *,
974
- x: typing.Optional[typing.Any] = 0,
975
- y: typing.Optional[typing.Any] = 0,
976
- radius: typing.Optional[typing.Any] = 25,
977
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
978
- mode: typing.Optional[typing.Any] = "SET",
979
- use_curve_selection: typing.Optional[typing.Union[bool, typing.Any]] = True,
980
+ override_context: typing.Union[dict, bpy.types.Context] = None,
981
+ execution_context: typing.Union[str, int] = None,
982
+ undo: bool = None,
983
+ x: typing.Any = 0,
984
+ y: typing.Any = 0,
985
+ radius: typing.Any = 25,
986
+ wait_for_input: typing.Union[bool, typing.Any] = True,
987
+ mode: typing.Any = "SET",
988
+ use_curve_selection: typing.Union[bool, typing.Any] = True,
980
989
  ):
981
990
  """Select keyframe points using circle selection
982
991
 
983
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
984
- :type execution_context: typing.Optional[typing.Union[int, str]]
985
- :type undo: typing.Optional[bool]
992
+ :type override_context: typing.Union[dict, bpy.types.Context]
993
+ :type execution_context: typing.Union[str, int]
994
+ :type undo: bool
986
995
  :param x: X
987
- :type x: typing.Optional[typing.Any]
996
+ :type x: typing.Any
988
997
  :param y: Y
989
- :type y: typing.Optional[typing.Any]
998
+ :type y: typing.Any
990
999
  :param radius: Radius
991
- :type radius: typing.Optional[typing.Any]
1000
+ :type radius: typing.Any
992
1001
  :param wait_for_input: Wait for Input
993
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
1002
+ :type wait_for_input: typing.Union[bool, typing.Any]
994
1003
  :param mode: Mode
995
1004
 
996
1005
  SET
@@ -1001,45 +1010,43 @@ def select_circle(
1001
1010
 
1002
1011
  SUB
1003
1012
  Subtract -- Subtract existing selection.
1004
- :type mode: typing.Optional[typing.Any]
1013
+ :type mode: typing.Any
1005
1014
  :param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the curve itself
1006
- :type use_curve_selection: typing.Optional[typing.Union[bool, typing.Any]]
1015
+ :type use_curve_selection: typing.Union[bool, typing.Any]
1007
1016
  """
1008
1017
 
1009
1018
  ...
1010
1019
 
1011
1020
  def select_column(
1012
- override_context=None,
1013
- execution_context=None,
1014
- undo=None,
1015
- *,
1016
- mode: typing.Optional[typing.Any] = "KEYS",
1021
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1022
+ execution_context: typing.Union[str, int] = None,
1023
+ undo: bool = None,
1024
+ mode: typing.Any = "KEYS",
1017
1025
  ):
1018
1026
  """Select all keyframes on the specified frame(s)
1019
1027
 
1020
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1021
- :type execution_context: typing.Optional[typing.Union[int, str]]
1022
- :type undo: typing.Optional[bool]
1028
+ :type override_context: typing.Union[dict, bpy.types.Context]
1029
+ :type execution_context: typing.Union[str, int]
1030
+ :type undo: bool
1023
1031
  :param mode: Mode
1024
- :type mode: typing.Optional[typing.Any]
1032
+ :type mode: typing.Any
1025
1033
  """
1026
1034
 
1027
1035
  ...
1028
1036
 
1029
1037
  def select_key_handles(
1030
- override_context=None,
1031
- execution_context=None,
1032
- undo=None,
1033
- *,
1034
- left_handle_action: typing.Optional[typing.Any] = "SELECT",
1035
- right_handle_action: typing.Optional[typing.Any] = "SELECT",
1036
- key_action: typing.Optional[typing.Any] = "KEEP",
1038
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1039
+ execution_context: typing.Union[str, int] = None,
1040
+ undo: bool = None,
1041
+ left_handle_action: typing.Any = "SELECT",
1042
+ right_handle_action: typing.Any = "SELECT",
1043
+ key_action: typing.Any = "KEEP",
1037
1044
  ):
1038
1045
  """For selected keyframes, select/deselect any combination of the key itself and its handles
1039
1046
 
1040
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1041
- :type execution_context: typing.Optional[typing.Union[int, str]]
1042
- :type undo: typing.Optional[bool]
1047
+ :type override_context: typing.Union[dict, bpy.types.Context]
1048
+ :type execution_context: typing.Union[str, int]
1049
+ :type undo: bool
1043
1050
  :param left_handle_action: Left Handle, Effect on the left handle
1044
1051
 
1045
1052
  SELECT
@@ -1050,7 +1057,7 @@ def select_key_handles(
1050
1057
 
1051
1058
  KEEP
1052
1059
  Keep -- Leave as is.
1053
- :type left_handle_action: typing.Optional[typing.Any]
1060
+ :type left_handle_action: typing.Any
1054
1061
  :param right_handle_action: Right Handle, Effect on the right handle
1055
1062
 
1056
1063
  SELECT
@@ -1061,7 +1068,7 @@ def select_key_handles(
1061
1068
 
1062
1069
  KEEP
1063
1070
  Keep -- Leave as is.
1064
- :type right_handle_action: typing.Optional[typing.Any]
1071
+ :type right_handle_action: typing.Any
1065
1072
  :param key_action: Key, Effect on the key itself
1066
1073
 
1067
1074
  SELECT
@@ -1072,29 +1079,26 @@ def select_key_handles(
1072
1079
 
1073
1080
  KEEP
1074
1081
  Keep -- Leave as is.
1075
- :type key_action: typing.Optional[typing.Any]
1082
+ :type key_action: typing.Any
1076
1083
  """
1077
1084
 
1078
1085
  ...
1079
1086
 
1080
1087
  def select_lasso(
1081
- override_context=None,
1082
- execution_context=None,
1083
- undo=None,
1084
- *,
1085
- path: typing.Optional[
1086
- bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
1087
- ] = None,
1088
- mode: typing.Optional[typing.Any] = "SET",
1089
- use_curve_selection: typing.Optional[typing.Union[bool, typing.Any]] = True,
1088
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1089
+ execution_context: typing.Union[str, int] = None,
1090
+ undo: bool = None,
1091
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
1092
+ mode: typing.Any = "SET",
1093
+ use_curve_selection: typing.Union[bool, typing.Any] = True,
1090
1094
  ):
1091
1095
  """Select keyframe points using lasso selection
1092
1096
 
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]
1097
+ :type override_context: typing.Union[dict, bpy.types.Context]
1098
+ :type execution_context: typing.Union[str, int]
1099
+ :type undo: bool
1096
1100
  :param path: Path
1097
- :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
1101
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
1098
1102
  :param mode: Mode
1099
1103
 
1100
1104
  SET
@@ -1105,79 +1109,89 @@ def select_lasso(
1105
1109
 
1106
1110
  SUB
1107
1111
  Subtract -- Subtract existing selection.
1108
- :type mode: typing.Optional[typing.Any]
1112
+ :type mode: typing.Any
1109
1113
  :param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the curve itself
1110
- :type use_curve_selection: typing.Optional[typing.Union[bool, typing.Any]]
1114
+ :type use_curve_selection: typing.Union[bool, typing.Any]
1111
1115
  """
1112
1116
 
1113
1117
  ...
1114
1118
 
1115
1119
  def select_leftright(
1116
- override_context=None,
1117
- execution_context=None,
1118
- undo=None,
1119
- *,
1120
- mode: typing.Optional[typing.Any] = "CHECK",
1121
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
1120
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1121
+ execution_context: typing.Union[str, int] = None,
1122
+ undo: bool = None,
1123
+ mode: typing.Any = "CHECK",
1124
+ extend: typing.Union[bool, typing.Any] = False,
1122
1125
  ):
1123
1126
  """Select keyframes to the left or the right of the current frame
1124
1127
 
1125
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1126
- :type execution_context: typing.Optional[typing.Union[int, str]]
1127
- :type undo: typing.Optional[bool]
1128
+ :type override_context: typing.Union[dict, bpy.types.Context]
1129
+ :type execution_context: typing.Union[str, int]
1130
+ :type undo: bool
1128
1131
  :param mode: Mode
1129
- :type mode: typing.Optional[typing.Any]
1132
+ :type mode: typing.Any
1130
1133
  :param extend: Extend Select
1131
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
1134
+ :type extend: typing.Union[bool, typing.Any]
1132
1135
  """
1133
1136
 
1134
1137
  ...
1135
1138
 
1136
- def select_less(override_context=None, execution_context=None, undo=None):
1139
+ def select_less(
1140
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1141
+ execution_context: typing.Union[str, int] = None,
1142
+ undo: bool = None,
1143
+ ):
1137
1144
  """Deselect keyframes on ends of selection islands
1138
1145
 
1139
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1140
- :type execution_context: typing.Optional[typing.Union[int, str]]
1141
- :type undo: typing.Optional[bool]
1146
+ :type override_context: typing.Union[dict, bpy.types.Context]
1147
+ :type execution_context: typing.Union[str, int]
1148
+ :type undo: bool
1142
1149
  """
1143
1150
 
1144
1151
  ...
1145
1152
 
1146
- def select_linked(override_context=None, execution_context=None, undo=None):
1153
+ def select_linked(
1154
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1155
+ execution_context: typing.Union[str, int] = None,
1156
+ undo: bool = None,
1157
+ ):
1147
1158
  """Select keyframes occurring in the same F-Curves as selected ones
1148
1159
 
1149
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1150
- :type execution_context: typing.Optional[typing.Union[int, str]]
1151
- :type undo: typing.Optional[bool]
1160
+ :type override_context: typing.Union[dict, bpy.types.Context]
1161
+ :type execution_context: typing.Union[str, int]
1162
+ :type undo: bool
1152
1163
  """
1153
1164
 
1154
1165
  ...
1155
1166
 
1156
- def select_more(override_context=None, execution_context=None, undo=None):
1167
+ def select_more(
1168
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1169
+ execution_context: typing.Union[str, int] = None,
1170
+ undo: bool = None,
1171
+ ):
1157
1172
  """Select keyframes beside already selected ones
1158
1173
 
1159
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1160
- :type execution_context: typing.Optional[typing.Union[int, str]]
1161
- :type undo: typing.Optional[bool]
1174
+ :type override_context: typing.Union[dict, bpy.types.Context]
1175
+ :type execution_context: typing.Union[str, int]
1176
+ :type undo: bool
1162
1177
  """
1163
1178
 
1164
1179
  ...
1165
1180
 
1166
1181
  def shear(
1167
- override_context=None,
1168
- execution_context=None,
1169
- undo=None,
1170
- *,
1171
- factor: typing.Optional[typing.Any] = 0.0,
1172
- direction: typing.Optional[typing.Any] = "FROM_LEFT",
1182
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1183
+ execution_context: typing.Union[str, int] = None,
1184
+ undo: bool = None,
1185
+ factor: typing.Any = 0.0,
1186
+ direction: typing.Any = "FROM_LEFT",
1173
1187
  ):
1174
1188
  """Affect the value of the keys linearly, keeping the same relationship between them using either the left or the right key as reference
1175
1189
 
1176
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1177
- :type execution_context: typing.Optional[typing.Union[int, str]]
1178
- :type undo: typing.Optional[bool]
1190
+ :type override_context: typing.Union[dict, bpy.types.Context]
1191
+ :type execution_context: typing.Union[str, int]
1192
+ :type undo: bool
1179
1193
  :param factor: Shear Factor, The amount of shear to apply
1180
- :type factor: typing.Optional[typing.Any]
1194
+ :type factor: typing.Any
1181
1195
  :param direction: Direction, Which end of the segment to use as a reference to shear from
1182
1196
 
1183
1197
  FROM_LEFT
@@ -1185,33 +1199,36 @@ def shear(
1185
1199
 
1186
1200
  FROM_RIGHT
1187
1201
  From Right -- Shear the keys using the right key as reference.
1188
- :type direction: typing.Optional[typing.Any]
1202
+ :type direction: typing.Any
1189
1203
  """
1190
1204
 
1191
1205
  ...
1192
1206
 
1193
- def smooth(override_context=None, execution_context=None, undo=None):
1207
+ def smooth(
1208
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1209
+ execution_context: typing.Union[str, int] = None,
1210
+ undo: bool = None,
1211
+ ):
1194
1212
  """Apply weighted moving means to make selected F-Curves less bumpy
1195
1213
 
1196
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1197
- :type execution_context: typing.Optional[typing.Union[int, str]]
1198
- :type undo: typing.Optional[bool]
1214
+ :type override_context: typing.Union[dict, bpy.types.Context]
1215
+ :type execution_context: typing.Union[str, int]
1216
+ :type undo: bool
1199
1217
  """
1200
1218
 
1201
1219
  ...
1202
1220
 
1203
1221
  def snap(
1204
- override_context=None,
1205
- execution_context=None,
1206
- undo=None,
1207
- *,
1208
- type: typing.Optional[typing.Any] = "CFRA",
1222
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1223
+ execution_context: typing.Union[str, int] = None,
1224
+ undo: bool = None,
1225
+ type: typing.Any = "CFRA",
1209
1226
  ):
1210
1227
  """Snap selected keyframes to the chosen times/values
1211
1228
 
1212
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1213
- :type execution_context: typing.Optional[typing.Union[int, str]]
1214
- :type undo: typing.Optional[bool]
1229
+ :type override_context: typing.Union[dict, bpy.types.Context]
1230
+ :type execution_context: typing.Union[str, int]
1231
+ :type undo: bool
1215
1232
  :param type: Type
1216
1233
 
1217
1234
  CFRA
@@ -1231,109 +1248,112 @@ def snap(
1231
1248
 
1232
1249
  HORIZONTAL
1233
1250
  Flatten Handles -- Flatten handles for a smoother transition.
1234
- :type type: typing.Optional[typing.Any]
1251
+ :type type: typing.Any
1235
1252
  """
1236
1253
 
1237
1254
  ...
1238
1255
 
1239
- def snap_cursor_value(override_context=None, execution_context=None, undo=None):
1256
+ def snap_cursor_value(
1257
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1258
+ execution_context: typing.Union[str, int] = None,
1259
+ undo: bool = None,
1260
+ ):
1240
1261
  """Place the cursor value on the average value of selected keyframes
1241
1262
 
1242
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1243
- :type execution_context: typing.Optional[typing.Union[int, str]]
1244
- :type undo: typing.Optional[bool]
1263
+ :type override_context: typing.Union[dict, bpy.types.Context]
1264
+ :type execution_context: typing.Union[str, int]
1265
+ :type undo: bool
1245
1266
  """
1246
1267
 
1247
1268
  ...
1248
1269
 
1249
1270
  def sound_to_samples(
1250
- override_context=None,
1251
- execution_context=None,
1252
- undo=None,
1253
- *,
1271
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1272
+ execution_context: typing.Union[str, int] = None,
1273
+ undo: bool = None,
1254
1274
  filepath: typing.Union[str, typing.Any] = "",
1255
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
1256
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
1257
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
1258
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
1259
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = True,
1260
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
1261
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
1262
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = True,
1263
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
1264
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
1265
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
1266
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
1267
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
1268
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
1269
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
1270
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
1271
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
1272
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
1273
- filemode: typing.Optional[typing.Any] = 9,
1274
- show_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
1275
- use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
1276
- display_type: typing.Optional[typing.Any] = "DEFAULT",
1277
- sort_method: typing.Optional[typing.Union[int, str, typing.Any]] = "",
1278
- low: typing.Optional[typing.Any] = 0.0,
1279
- high: typing.Optional[typing.Any] = 100000.0,
1280
- attack: typing.Optional[typing.Any] = 0.005,
1281
- release: typing.Optional[typing.Any] = 0.2,
1282
- threshold: typing.Optional[typing.Any] = 0.0,
1283
- use_accumulate: typing.Optional[typing.Union[bool, typing.Any]] = False,
1284
- use_additive: typing.Optional[typing.Union[bool, typing.Any]] = False,
1285
- use_square: typing.Optional[typing.Union[bool, typing.Any]] = False,
1286
- sthreshold: typing.Optional[typing.Any] = 0.1,
1275
+ check_existing: typing.Union[bool, typing.Any] = False,
1276
+ filter_blender: typing.Union[bool, typing.Any] = False,
1277
+ filter_backup: typing.Union[bool, typing.Any] = False,
1278
+ filter_image: typing.Union[bool, typing.Any] = False,
1279
+ filter_movie: typing.Union[bool, typing.Any] = True,
1280
+ filter_python: typing.Union[bool, typing.Any] = False,
1281
+ filter_font: typing.Union[bool, typing.Any] = False,
1282
+ filter_sound: typing.Union[bool, typing.Any] = True,
1283
+ filter_text: typing.Union[bool, typing.Any] = False,
1284
+ filter_archive: typing.Union[bool, typing.Any] = False,
1285
+ filter_btx: typing.Union[bool, typing.Any] = False,
1286
+ filter_collada: typing.Union[bool, typing.Any] = False,
1287
+ filter_alembic: typing.Union[bool, typing.Any] = False,
1288
+ filter_usd: typing.Union[bool, typing.Any] = False,
1289
+ filter_obj: typing.Union[bool, typing.Any] = False,
1290
+ filter_volume: typing.Union[bool, typing.Any] = False,
1291
+ filter_folder: typing.Union[bool, typing.Any] = True,
1292
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
1293
+ filemode: typing.Any = 9,
1294
+ show_multiview: typing.Union[bool, typing.Any] = False,
1295
+ use_multiview: typing.Union[bool, typing.Any] = False,
1296
+ display_type: typing.Any = "DEFAULT",
1297
+ sort_method: typing.Union[str, int, typing.Any] = "",
1298
+ low: typing.Any = 0.0,
1299
+ high: typing.Any = 100000.0,
1300
+ attack: typing.Any = 0.005,
1301
+ release: typing.Any = 0.2,
1302
+ threshold: typing.Any = 0.0,
1303
+ use_accumulate: typing.Union[bool, typing.Any] = False,
1304
+ use_additive: typing.Union[bool, typing.Any] = False,
1305
+ use_square: typing.Union[bool, typing.Any] = False,
1306
+ sthreshold: typing.Any = 0.1,
1287
1307
  ):
1288
1308
  """Bakes a sound wave to samples on selected channels
1289
1309
 
1290
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1291
- :type execution_context: typing.Optional[typing.Union[int, str]]
1292
- :type undo: typing.Optional[bool]
1310
+ :type override_context: typing.Union[dict, bpy.types.Context]
1311
+ :type execution_context: typing.Union[str, int]
1312
+ :type undo: bool
1293
1313
  :param filepath: File Path, Path to file
1294
1314
  :type filepath: typing.Union[str, typing.Any]
1295
1315
  :param check_existing: Check Existing, Check and warn on overwriting existing files
1296
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
1316
+ :type check_existing: typing.Union[bool, typing.Any]
1297
1317
  :param filter_blender: Filter .blend files
1298
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
1318
+ :type filter_blender: typing.Union[bool, typing.Any]
1299
1319
  :param filter_backup: Filter .blend files
1300
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
1320
+ :type filter_backup: typing.Union[bool, typing.Any]
1301
1321
  :param filter_image: Filter image files
1302
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
1322
+ :type filter_image: typing.Union[bool, typing.Any]
1303
1323
  :param filter_movie: Filter movie files
1304
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
1324
+ :type filter_movie: typing.Union[bool, typing.Any]
1305
1325
  :param filter_python: Filter Python files
1306
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
1326
+ :type filter_python: typing.Union[bool, typing.Any]
1307
1327
  :param filter_font: Filter font files
1308
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
1328
+ :type filter_font: typing.Union[bool, typing.Any]
1309
1329
  :param filter_sound: Filter sound files
1310
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
1330
+ :type filter_sound: typing.Union[bool, typing.Any]
1311
1331
  :param filter_text: Filter text files
1312
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
1332
+ :type filter_text: typing.Union[bool, typing.Any]
1313
1333
  :param filter_archive: Filter archive files
1314
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
1334
+ :type filter_archive: typing.Union[bool, typing.Any]
1315
1335
  :param filter_btx: Filter btx files
1316
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
1336
+ :type filter_btx: typing.Union[bool, typing.Any]
1317
1337
  :param filter_collada: Filter COLLADA files
1318
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
1338
+ :type filter_collada: typing.Union[bool, typing.Any]
1319
1339
  :param filter_alembic: Filter Alembic files
1320
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
1340
+ :type filter_alembic: typing.Union[bool, typing.Any]
1321
1341
  :param filter_usd: Filter USD files
1322
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
1342
+ :type filter_usd: typing.Union[bool, typing.Any]
1323
1343
  :param filter_obj: Filter OBJ files
1324
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
1344
+ :type filter_obj: typing.Union[bool, typing.Any]
1325
1345
  :param filter_volume: Filter OpenVDB volume files
1326
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
1346
+ :type filter_volume: typing.Union[bool, typing.Any]
1327
1347
  :param filter_folder: Filter folders
1328
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
1348
+ :type filter_folder: typing.Union[bool, typing.Any]
1329
1349
  :param filter_blenlib: Filter Blender IDs
1330
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
1350
+ :type filter_blenlib: typing.Union[bool, typing.Any]
1331
1351
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
1332
- :type filemode: typing.Optional[typing.Any]
1352
+ :type filemode: typing.Any
1333
1353
  :param show_multiview: Enable Multi-View
1334
- :type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
1354
+ :type show_multiview: typing.Union[bool, typing.Any]
1335
1355
  :param use_multiview: Use Multi-View
1336
- :type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
1356
+ :type use_multiview: typing.Union[bool, typing.Any]
1337
1357
  :param display_type: Display Type
1338
1358
 
1339
1359
  DEFAULT
@@ -1347,91 +1367,92 @@ def sound_to_samples(
1347
1367
 
1348
1368
  THUMBNAIL
1349
1369
  Thumbnails -- Display files as thumbnails.
1350
- :type display_type: typing.Optional[typing.Any]
1370
+ :type display_type: typing.Any
1351
1371
  :param sort_method: File sorting mode
1352
- :type sort_method: typing.Optional[typing.Union[int, str, typing.Any]]
1372
+ :type sort_method: typing.Union[str, int, typing.Any]
1353
1373
  :param low: Lowest Frequency, Cutoff frequency of a high-pass filter that is applied to the audio data
1354
- :type low: typing.Optional[typing.Any]
1374
+ :type low: typing.Any
1355
1375
  :param high: Highest Frequency, Cutoff frequency of a low-pass filter that is applied to the audio data
1356
- :type high: typing.Optional[typing.Any]
1376
+ :type high: typing.Any
1357
1377
  :param attack: Attack Time, Value for the envelope calculation that tells how fast the envelope can rise (the lower the value the steeper it can rise)
1358
- :type attack: typing.Optional[typing.Any]
1378
+ :type attack: typing.Any
1359
1379
  :param release: Release Time, Value for the envelope calculation that tells how fast the envelope can fall (the lower the value the steeper it can fall)
1360
- :type release: typing.Optional[typing.Any]
1380
+ :type release: typing.Any
1361
1381
  :param threshold: Threshold, Minimum amplitude value needed to influence the envelope
1362
- :type threshold: typing.Optional[typing.Any]
1382
+ :type threshold: typing.Any
1363
1383
  :param use_accumulate: Accumulate, Only the positive differences of the envelope amplitudes are summarized to produce the output
1364
- :type use_accumulate: typing.Optional[typing.Union[bool, typing.Any]]
1384
+ :type use_accumulate: typing.Union[bool, typing.Any]
1365
1385
  :param use_additive: Additive, The amplitudes of the envelope are summarized (or, when Accumulate is enabled, both positive and negative differences are accumulated)
1366
- :type use_additive: typing.Optional[typing.Union[bool, typing.Any]]
1386
+ :type use_additive: typing.Union[bool, typing.Any]
1367
1387
  :param use_square: Square, The output is a square curve (negative values always result in -1, and positive ones in 1)
1368
- :type use_square: typing.Optional[typing.Union[bool, typing.Any]]
1388
+ :type use_square: typing.Union[bool, typing.Any]
1369
1389
  :param sthreshold: Square Threshold, Square only: all values with an absolute amplitude lower than that result in 0
1370
- :type sthreshold: typing.Optional[typing.Any]
1390
+ :type sthreshold: typing.Any
1371
1391
  """
1372
1392
 
1373
1393
  ...
1374
1394
 
1375
1395
  def time_offset(
1376
- override_context=None,
1377
- execution_context=None,
1378
- undo=None,
1379
- *,
1380
- frame_offset: typing.Optional[typing.Any] = 0.0,
1396
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1397
+ execution_context: typing.Union[str, int] = None,
1398
+ undo: bool = None,
1399
+ frame_offset: typing.Any = 0.0,
1381
1400
  ):
1382
1401
  """Shifts the value of selected keys in time
1383
1402
 
1384
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1385
- :type execution_context: typing.Optional[typing.Union[int, str]]
1386
- :type undo: typing.Optional[bool]
1403
+ :type override_context: typing.Union[dict, bpy.types.Context]
1404
+ :type execution_context: typing.Union[str, int]
1405
+ :type undo: bool
1387
1406
  :param frame_offset: Frame Offset, How far in frames to offset the animation
1388
- :type frame_offset: typing.Optional[typing.Any]
1407
+ :type frame_offset: typing.Any
1389
1408
  """
1390
1409
 
1391
1410
  ...
1392
1411
 
1393
1412
  def view_all(
1394
- override_context=None,
1395
- execution_context=None,
1396
- undo=None,
1397
- *,
1398
- include_handles: typing.Optional[typing.Union[bool, typing.Any]] = True,
1413
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1414
+ execution_context: typing.Union[str, int] = None,
1415
+ undo: bool = None,
1416
+ include_handles: typing.Union[bool, typing.Any] = True,
1399
1417
  ):
1400
1418
  """Reset viewable area to show full keyframe range
1401
1419
 
1402
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1403
- :type execution_context: typing.Optional[typing.Union[int, str]]
1404
- :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
1405
1423
  :param include_handles: Include Handles, Include handles of keyframes when calculating extents
1406
- :type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
1424
+ :type include_handles: typing.Union[bool, typing.Any]
1407
1425
  """
1408
1426
 
1409
1427
  ...
1410
1428
 
1411
- def view_frame(override_context=None, execution_context=None, undo=None):
1429
+ def view_frame(
1430
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1431
+ execution_context: typing.Union[str, int] = None,
1432
+ undo: bool = None,
1433
+ ):
1412
1434
  """Move the view to the current frame
1413
1435
 
1414
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1415
- :type execution_context: typing.Optional[typing.Union[int, str]]
1416
- :type undo: typing.Optional[bool]
1436
+ :type override_context: typing.Union[dict, bpy.types.Context]
1437
+ :type execution_context: typing.Union[str, int]
1438
+ :type undo: bool
1417
1439
  """
1418
1440
 
1419
1441
  ...
1420
1442
 
1421
1443
  def view_selected(
1422
- override_context=None,
1423
- execution_context=None,
1424
- undo=None,
1425
- *,
1426
- include_handles: typing.Optional[typing.Union[bool, typing.Any]] = True,
1444
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1445
+ execution_context: typing.Union[str, int] = None,
1446
+ undo: bool = None,
1447
+ include_handles: typing.Union[bool, typing.Any] = True,
1427
1448
  ):
1428
1449
  """Reset viewable area to show selected keyframe range
1429
1450
 
1430
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
1431
- :type execution_context: typing.Optional[typing.Union[int, str]]
1432
- :type undo: typing.Optional[bool]
1451
+ :type override_context: typing.Union[dict, bpy.types.Context]
1452
+ :type execution_context: typing.Union[str, int]
1453
+ :type undo: bool
1433
1454
  :param include_handles: Include Handles, Include handles of keyframes when calculating extents
1434
- :type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
1455
+ :type include_handles: typing.Union[bool, typing.Any]
1435
1456
  """
1436
1457
 
1437
1458
  ...