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

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

Potentially problematic release.


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

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