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