fake-bpy-module 20240320__py3-none-any.whl → 20240322__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 +642 -822
  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 +86358 -87091
  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-20240320.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.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-20240320.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.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,161 @@ 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,
436
380
  ):
437
381
  """Align keyframes on a ease-in or ease-out curve
438
382
 
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]
383
+ :type override_context: typing.Union[dict, bpy.types.Context]
384
+ :type execution_context: typing.Union[str, int]
385
+ :type undo: bool
442
386
  :param factor: Curve Bend, Control the bend of the curve
443
- :type factor: typing.Optional[typing.Any]
387
+ :type factor: typing.Any
444
388
  """
445
389
 
446
390
  ...
447
391
 
448
392
  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",
393
+ override_context: typing.Union[dict, bpy.types.Context] = None,
394
+ execution_context: typing.Union[str, int] = None,
395
+ undo: bool = None,
396
+ type: typing.Any = "AUTO",
456
397
  ):
457
398
  """Set easing type for the F-Curve segments starting from the selected keyframes
458
399
 
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]
400
+ :type override_context: typing.Union[dict, bpy.types.Context]
401
+ :type execution_context: typing.Union[str, int]
402
+ :type undo: bool
462
403
  :param type: Type
463
- :type type: typing.Optional[typing.Any]
404
+ :type type: typing.Any
464
405
  """
465
406
 
466
407
  ...
467
408
 
468
409
  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,
410
+ override_context: typing.Union[dict, bpy.types.Context] = None,
411
+ execution_context: typing.Union[str, int] = None,
412
+ undo: bool = None,
413
+ side: typing.Any = "LEFT",
414
+ handle_length: typing.Any = 5.0,
415
+ flatten: typing.Union[bool, typing.Any] = False,
478
416
  ):
479
417
  """Ensure selected keyframes' handles have equal length, optionally making them horizontal. Automatic, Automatic Clamped, or Vector handle types will be converted to Aligned
480
418
 
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]
419
+ :type override_context: typing.Union[dict, bpy.types.Context]
420
+ :type execution_context: typing.Union[str, int]
421
+ :type undo: bool
484
422
  :param side: Side, Side of the keyframes' Bézier handles to affect
485
423
 
486
424
  LEFT
@@ -491,45 +429,40 @@ def equalize_handles(
491
429
 
492
430
  BOTH
493
431
  Both -- Equalize both of a keyframe's handles.
494
- :type side: typing.Optional[typing.Any]
432
+ :type side: typing.Any
495
433
  :param handle_length: Handle Length, Length to make selected keyframes' Bézier handles
496
- :type handle_length: typing.Optional[typing.Any]
434
+ :type handle_length: typing.Any
497
435
  :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]]
436
+ :type flatten: typing.Union[bool, typing.Any]
499
437
  """
500
438
 
501
439
  ...
502
440
 
503
441
  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,
442
+ override_context: typing.Union[dict, bpy.types.Context] = None,
443
+ execution_context: typing.Union[str, int] = None,
444
+ undo: bool = None,
509
445
  ):
510
446
  """Fix large jumps and flips in the selected Euler Rotation F-Curves arising from rotation values being clipped when baking physics
511
447
 
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]
448
+ :type override_context: typing.Union[dict, bpy.types.Context]
449
+ :type execution_context: typing.Union[str, int]
450
+ :type undo: bool
515
451
  """
516
452
 
517
453
  ...
518
454
 
519
455
  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",
456
+ override_context: typing.Union[dict, bpy.types.Context] = None,
457
+ execution_context: typing.Union[str, int] = None,
458
+ undo: bool = None,
459
+ type: typing.Any = "CONSTANT",
527
460
  ):
528
461
  """Set extrapolation mode for selected F-Curves
529
462
 
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]
463
+ :type override_context: typing.Union[dict, bpy.types.Context]
464
+ :type execution_context: typing.Union[str, int]
465
+ :type undo: bool
533
466
  :param type: Type
534
467
 
535
468
  CONSTANT
@@ -543,221 +476,192 @@ def extrapolation_type(
543
476
 
544
477
  CLEAR_CYCLIC
545
478
  Clear Cyclic (F-Modifier) -- Remove Cycles F-Modifier if not needed anymore.
546
- :type type: typing.Optional[typing.Any]
479
+ :type type: typing.Any
547
480
  """
548
481
 
549
482
  ...
550
483
 
551
484
  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,
485
+ override_context: typing.Union[dict, bpy.types.Context] = None,
486
+ execution_context: typing.Union[str, int] = None,
487
+ undo: bool = None,
488
+ type: typing.Any = "NULL",
489
+ only_active: typing.Union[bool, typing.Any] = False,
560
490
  ):
561
491
  """Add F-Modifier to the active/selected F-Curves
562
492
 
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]
493
+ :type override_context: typing.Union[dict, bpy.types.Context]
494
+ :type execution_context: typing.Union[str, int]
495
+ :type undo: bool
566
496
  :param type: Type
567
- :type type: typing.Optional[typing.Any]
497
+ :type type: typing.Any
568
498
  :param only_active: Only Active, Only add F-Modifier to active F-Curve
569
- :type only_active: typing.Optional[typing.Union[bool, typing.Any]]
499
+ :type only_active: typing.Union[bool, typing.Any]
570
500
  """
571
501
 
572
502
  ...
573
503
 
574
504
  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,
505
+ override_context: typing.Union[dict, bpy.types.Context] = None,
506
+ execution_context: typing.Union[str, int] = None,
507
+ undo: bool = None,
580
508
  ):
581
509
  """Copy the F-Modifier(s) of the active F-Curve
582
510
 
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]
511
+ :type override_context: typing.Union[dict, bpy.types.Context]
512
+ :type execution_context: typing.Union[str, int]
513
+ :type undo: bool
586
514
  """
587
515
 
588
516
  ...
589
517
 
590
518
  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,
519
+ override_context: typing.Union[dict, bpy.types.Context] = None,
520
+ execution_context: typing.Union[str, int] = None,
521
+ undo: bool = None,
522
+ only_active: typing.Union[bool, typing.Any] = False,
523
+ replace: typing.Union[bool, typing.Any] = False,
599
524
  ):
600
525
  """Add copied F-Modifiers to the selected F-Curves
601
526
 
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]
527
+ :type override_context: typing.Union[dict, bpy.types.Context]
528
+ :type execution_context: typing.Union[str, int]
529
+ :type undo: bool
605
530
  :param only_active: Only Active, Only paste F-Modifiers on active F-Curve
606
- :type only_active: typing.Optional[typing.Union[bool, typing.Any]]
531
+ :type only_active: typing.Union[bool, typing.Any]
607
532
  :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]]
533
+ :type replace: typing.Union[bool, typing.Any]
609
534
  """
610
535
 
611
536
  ...
612
537
 
613
538
  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,
539
+ override_context: typing.Union[dict, bpy.types.Context] = None,
540
+ execution_context: typing.Union[str, int] = None,
541
+ undo: bool = None,
619
542
  ):
620
543
  """Place the cursor on the midpoint of selected keyframes
621
544
 
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]
545
+ :type override_context: typing.Union[dict, bpy.types.Context]
546
+ :type execution_context: typing.Union[str, int]
547
+ :type undo: bool
625
548
  """
626
549
 
627
550
  ...
628
551
 
629
552
  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,
553
+ override_context: typing.Union[dict, bpy.types.Context] = None,
554
+ execution_context: typing.Union[str, int] = None,
555
+ undo: bool = None,
556
+ factor: typing.Any = 1.0,
557
+ sigma: typing.Any = 0.33,
558
+ filter_width: typing.Any = 6,
639
559
  ):
640
560
  """Smooth the curve using a Gaussian filter
641
561
 
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]
562
+ :type override_context: typing.Union[dict, bpy.types.Context]
563
+ :type execution_context: typing.Union[str, int]
564
+ :type undo: bool
645
565
  :param factor: Factor, How much to blend to the default value
646
- :type factor: typing.Optional[typing.Any]
566
+ :type factor: typing.Any
647
567
  :param sigma: Sigma, The shape of the gaussian distribution, lower values make it sharper
648
- :type sigma: typing.Optional[typing.Any]
568
+ :type sigma: typing.Any
649
569
  :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]
570
+ :type filter_width: typing.Any
651
571
  """
652
572
 
653
573
  ...
654
574
 
655
575
  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,
576
+ override_context: typing.Union[dict, bpy.types.Context] = None,
577
+ execution_context: typing.Union[str, int] = None,
578
+ undo: bool = None,
661
579
  ):
662
580
  """Clear F-Curve snapshots (Ghosts) for active Graph Editor
663
581
 
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]
582
+ :type override_context: typing.Union[dict, bpy.types.Context]
583
+ :type execution_context: typing.Union[str, int]
584
+ :type undo: bool
667
585
  """
668
586
 
669
587
  ...
670
588
 
671
589
  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,
590
+ override_context: typing.Union[dict, bpy.types.Context] = None,
591
+ execution_context: typing.Union[str, int] = None,
592
+ undo: bool = None,
677
593
  ):
678
594
  """Create snapshot (Ghosts) of selected F-Curves as background aid for active Graph Editor
679
595
 
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]
596
+ :type override_context: typing.Union[dict, bpy.types.Context]
597
+ :type execution_context: typing.Union[str, int]
598
+ :type undo: bool
683
599
  """
684
600
 
685
601
  ...
686
602
 
687
603
  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",
604
+ override_context: typing.Union[dict, bpy.types.Context] = None,
605
+ execution_context: typing.Union[str, int] = None,
606
+ undo: bool = None,
607
+ type: typing.Any = "FREE",
695
608
  ):
696
609
  """Set type of handle for selected keyframes
697
610
 
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]
611
+ :type override_context: typing.Union[dict, bpy.types.Context]
612
+ :type execution_context: typing.Union[str, int]
613
+ :type undo: bool
701
614
  :param type: Type
702
- :type type: typing.Optional[typing.Any]
615
+ :type type: typing.Any
703
616
  """
704
617
 
705
618
  ...
706
619
 
707
620
  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,
621
+ override_context: typing.Union[dict, bpy.types.Context] = None,
622
+ execution_context: typing.Union[str, int] = None,
623
+ undo: bool = None,
624
+ unselected: typing.Union[bool, typing.Any] = False,
715
625
  ):
716
626
  """Hide selected curves from Graph Editor view
717
627
 
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]
628
+ :type override_context: typing.Union[dict, bpy.types.Context]
629
+ :type execution_context: typing.Union[str, int]
630
+ :type undo: bool
721
631
  :param unselected: Unselected, Hide unselected rather than selected curves
722
- :type unselected: typing.Optional[typing.Union[bool, typing.Any]]
632
+ :type unselected: typing.Union[bool, typing.Any]
723
633
  """
724
634
 
725
635
  ...
726
636
 
727
637
  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",
638
+ override_context: typing.Union[dict, bpy.types.Context] = None,
639
+ execution_context: typing.Union[str, int] = None,
640
+ undo: bool = None,
641
+ type: typing.Any = "CONSTANT",
735
642
  ):
736
643
  """Set interpolation mode for the F-Curve segments starting from the selected keyframes
737
644
 
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]
645
+ :type override_context: typing.Union[dict, bpy.types.Context]
646
+ :type execution_context: typing.Union[str, int]
647
+ :type undo: bool
741
648
  :param type: Type
742
- :type type: typing.Optional[typing.Any]
649
+ :type type: typing.Any
743
650
  """
744
651
 
745
652
  ...
746
653
 
747
654
  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",
655
+ override_context: typing.Union[dict, bpy.types.Context] = None,
656
+ execution_context: typing.Union[str, int] = None,
657
+ undo: bool = None,
658
+ type: typing.Any = "ALL",
755
659
  ):
756
660
  """Insert keyframes for the specified channels
757
661
 
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]
662
+ :type override_context: typing.Union[dict, bpy.types.Context]
663
+ :type execution_context: typing.Union[str, int]
664
+ :type undo: bool
761
665
  :param type: Type
762
666
 
763
667
  ALL
@@ -774,85 +678,73 @@ def keyframe_insert(
774
678
 
775
679
  CURSOR_SEL
776
680
  Selected Channels at Cursor -- Insert a keyframe for selected F-Curves at the cursor point.
777
- :type type: typing.Optional[typing.Any]
681
+ :type type: typing.Any
778
682
  """
779
683
 
780
684
  ...
781
685
 
782
686
  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,
687
+ override_context: typing.Union[dict, bpy.types.Context] = None,
688
+ execution_context: typing.Union[str, int] = None,
689
+ undo: bool = None,
690
+ next: typing.Union[bool, typing.Any] = True,
790
691
  ):
791
692
  """Jump to previous/next keyframe
792
693
 
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]
694
+ :type override_context: typing.Union[dict, bpy.types.Context]
695
+ :type execution_context: typing.Union[str, int]
696
+ :type undo: bool
796
697
  :param next: Next Keyframe
797
- :type next: typing.Optional[typing.Union[bool, typing.Any]]
698
+ :type next: typing.Union[bool, typing.Any]
798
699
  """
799
700
 
800
701
  ...
801
702
 
802
703
  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,
704
+ override_context: typing.Union[dict, bpy.types.Context] = None,
705
+ execution_context: typing.Union[str, int] = None,
706
+ undo: bool = None,
707
+ confirm: typing.Union[bool, typing.Any] = True,
810
708
  ):
811
709
  """Convert selected channels to an uneditable set of samples to save storage space
812
710
 
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]
711
+ :type override_context: typing.Union[dict, bpy.types.Context]
712
+ :type execution_context: typing.Union[str, int]
713
+ :type undo: bool
816
714
  :param confirm: Confirm, Prompt for confirmation
817
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
715
+ :type confirm: typing.Union[bool, typing.Any]
818
716
  """
819
717
 
820
718
  ...
821
719
 
822
720
  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,
721
+ override_context: typing.Union[dict, bpy.types.Context] = None,
722
+ execution_context: typing.Union[str, int] = None,
723
+ undo: bool = None,
724
+ factor: typing.Any = 0.0,
830
725
  ):
831
726
  """Blend selected keys to the slope of neighboring ones
832
727
 
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]
728
+ :type override_context: typing.Union[dict, bpy.types.Context]
729
+ :type execution_context: typing.Union[str, int]
730
+ :type undo: bool
836
731
  :param factor: Factor, Defines which keys to use as slope and how much to blend towards them
837
- :type factor: typing.Optional[typing.Any]
732
+ :type factor: typing.Any
838
733
  """
839
734
 
840
735
  ...
841
736
 
842
737
  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",
738
+ override_context: typing.Union[dict, bpy.types.Context] = None,
739
+ execution_context: typing.Union[str, int] = None,
740
+ undo: bool = None,
741
+ type: typing.Any = "CFRA",
850
742
  ):
851
743
  """Flip selected keyframes over the selected mirror line
852
744
 
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]
745
+ :type override_context: typing.Union[dict, bpy.types.Context]
746
+ :type execution_context: typing.Union[str, int]
747
+ :type undo: bool
856
748
  :param type: Type
857
749
 
858
750
  CFRA
@@ -869,169 +761,147 @@ def mirror(
869
761
 
870
762
  MARKER
871
763
  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]
764
+ :type type: typing.Any
873
765
  """
874
766
 
875
767
  ...
876
768
 
877
769
  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,
770
+ override_context: typing.Union[dict, bpy.types.Context] = None,
771
+ execution_context: typing.Union[str, int] = None,
772
+ undo: bool = None,
773
+ offset: typing.Any = "START",
774
+ value_offset: typing.Any = "NONE",
775
+ merge: typing.Any = "MIX",
776
+ flipped: typing.Union[bool, typing.Any] = False,
888
777
  ):
889
778
  """Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
890
779
 
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]
780
+ :type override_context: typing.Union[dict, bpy.types.Context]
781
+ :type execution_context: typing.Union[str, int]
782
+ :type undo: bool
894
783
  :param offset: Frame Offset, Paste time offset of keys
895
- :type offset: typing.Optional[typing.Any]
784
+ :type offset: typing.Any
896
785
  :param value_offset: Value Offset, Paste keys with a value offset
897
- :type value_offset: typing.Optional[typing.Any]
786
+ :type value_offset: typing.Any
898
787
  :param merge: Type, Method of merging pasted keys and existing
899
- :type merge: typing.Optional[typing.Any]
788
+ :type merge: typing.Any
900
789
  :param flipped: Flipped, Paste keyframes from mirrored bones if they exist
901
- :type flipped: typing.Optional[typing.Union[bool, typing.Any]]
790
+ :type flipped: typing.Union[bool, typing.Any]
902
791
  """
903
792
 
904
793
  ...
905
794
 
906
795
  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,
796
+ override_context: typing.Union[dict, bpy.types.Context] = None,
797
+ execution_context: typing.Union[str, int] = None,
798
+ undo: bool = None,
912
799
  ):
913
800
  """Set Preview Range based on range of selected keyframes
914
801
 
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]
802
+ :type override_context: typing.Union[dict, bpy.types.Context]
803
+ :type execution_context: typing.Union[str, int]
804
+ :type undo: bool
918
805
  """
919
806
 
920
807
  ...
921
808
 
922
809
  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,
810
+ override_context: typing.Union[dict, bpy.types.Context] = None,
811
+ execution_context: typing.Union[str, int] = None,
812
+ undo: bool = None,
813
+ factor: typing.Any = 1.0,
930
814
  ):
931
815
  """Exaggerate or minimize the value of the selected keys
932
816
 
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]
817
+ :type override_context: typing.Union[dict, bpy.types.Context]
818
+ :type execution_context: typing.Union[str, int]
819
+ :type undo: bool
936
820
  :param factor: Factor, Control how far to push or pull the keys
937
- :type factor: typing.Optional[typing.Any]
821
+ :type factor: typing.Any
938
822
  """
939
823
 
940
824
  ...
941
825
 
942
826
  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,
827
+ override_context: typing.Union[dict, bpy.types.Context] = None,
828
+ execution_context: typing.Union[str, int] = None,
829
+ undo: bool = None,
830
+ select: typing.Union[bool, typing.Any] = True,
950
831
  ):
951
832
  """Make previously hidden curves visible again in Graph Editor view
952
833
 
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]
834
+ :type override_context: typing.Union[dict, bpy.types.Context]
835
+ :type execution_context: typing.Union[str, int]
836
+ :type undo: bool
956
837
  :param select: Select
957
- :type select: typing.Optional[typing.Union[bool, typing.Any]]
838
+ :type select: typing.Union[bool, typing.Any]
958
839
  """
959
840
 
960
841
  ...
961
842
 
962
843
  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,
844
+ override_context: typing.Union[dict, bpy.types.Context] = None,
845
+ execution_context: typing.Union[str, int] = None,
846
+ undo: bool = None,
968
847
  ):
969
848
  """Convert selected channels from samples to keyframes
970
849
 
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]
850
+ :type override_context: typing.Union[dict, bpy.types.Context]
851
+ :type execution_context: typing.Union[str, int]
852
+ :type undo: bool
974
853
  """
975
854
 
976
855
  ...
977
856
 
978
857
  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,
858
+ override_context: typing.Union[dict, bpy.types.Context] = None,
859
+ execution_context: typing.Union[str, int] = None,
860
+ undo: bool = None,
861
+ factor: typing.Any = 1.0,
986
862
  ):
987
863
  """Scale selected key values by their combined average
988
864
 
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]
865
+ :type override_context: typing.Union[dict, bpy.types.Context]
866
+ :type execution_context: typing.Union[str, int]
867
+ :type undo: bool
992
868
  :param factor: Scale Factor, The scale factor applied to the curve segments
993
- :type factor: typing.Optional[typing.Any]
869
+ :type factor: typing.Any
994
870
  """
995
871
 
996
872
  ...
997
873
 
998
874
  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",
875
+ override_context: typing.Union[dict, bpy.types.Context] = None,
876
+ execution_context: typing.Union[str, int] = None,
877
+ undo: bool = None,
878
+ factor: typing.Any = 0.0,
879
+ anchor: typing.Any = "LEFT",
1007
880
  ):
1008
881
  """Increase or decrease the value of selected keys in relationship to the neighboring one
1009
882
 
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]
883
+ :type override_context: typing.Union[dict, bpy.types.Context]
884
+ :type execution_context: typing.Union[str, int]
885
+ :type undo: bool
1013
886
  :param factor: Factor, The factor to scale keys with
1014
- :type factor: typing.Optional[typing.Any]
887
+ :type factor: typing.Any
1015
888
  :param anchor: Reference Key, Which end of the segment to use as a reference to scale from
1016
- :type anchor: typing.Optional[typing.Any]
889
+ :type anchor: typing.Any
1017
890
  """
1018
891
 
1019
892
  ...
1020
893
 
1021
894
  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",
895
+ override_context: typing.Union[dict, bpy.types.Context] = None,
896
+ execution_context: typing.Union[str, int] = None,
897
+ undo: bool = None,
898
+ action: typing.Any = "TOGGLE",
1029
899
  ):
1030
900
  """Toggle selection of all keyframes
1031
901
 
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]
902
+ :type override_context: typing.Union[dict, bpy.types.Context]
903
+ :type execution_context: typing.Union[str, int]
904
+ :type undo: bool
1035
905
  :param action: Action, Selection action to execute
1036
906
 
1037
907
  TOGGLE
@@ -1045,52 +915,49 @@ def select_all(
1045
915
 
1046
916
  INVERT
1047
917
  Invert -- Invert selection of all elements.
1048
- :type action: typing.Optional[typing.Any]
918
+ :type action: typing.Any
1049
919
  """
1050
920
 
1051
921
  ...
1052
922
 
1053
923
  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",
924
+ override_context: typing.Union[dict, bpy.types.Context] = None,
925
+ execution_context: typing.Union[str, int] = None,
926
+ undo: bool = None,
927
+ axis_range: typing.Union[bool, typing.Any] = False,
928
+ include_handles: typing.Union[bool, typing.Any] = True,
929
+ tweak: typing.Union[bool, typing.Any] = False,
930
+ use_curve_selection: typing.Union[bool, typing.Any] = True,
931
+ xmin: typing.Any = 0,
932
+ xmax: typing.Any = 0,
933
+ ymin: typing.Any = 0,
934
+ ymax: typing.Any = 0,
935
+ wait_for_input: typing.Union[bool, typing.Any] = True,
936
+ mode: typing.Any = "SET",
1070
937
  ):
1071
938
  """Select all keyframes within the specified region
1072
939
 
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]
940
+ :type override_context: typing.Union[dict, bpy.types.Context]
941
+ :type execution_context: typing.Union[str, int]
942
+ :type undo: bool
1076
943
  :param axis_range: Axis Range
1077
- :type axis_range: typing.Optional[typing.Union[bool, typing.Any]]
944
+ :type axis_range: typing.Union[bool, typing.Any]
1078
945
  :param include_handles: Include Handles, Are handles tested individually against the selection criteria
1079
- :type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
946
+ :type include_handles: typing.Union[bool, typing.Any]
1080
947
  :param tweak: Tweak, Operator has been activated using a click-drag event
1081
- :type tweak: typing.Optional[typing.Union[bool, typing.Any]]
948
+ :type tweak: typing.Union[bool, typing.Any]
1082
949
  :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]]
950
+ :type use_curve_selection: typing.Union[bool, typing.Any]
1084
951
  :param xmin: X Min
1085
- :type xmin: typing.Optional[typing.Any]
952
+ :type xmin: typing.Any
1086
953
  :param xmax: X Max
1087
- :type xmax: typing.Optional[typing.Any]
954
+ :type xmax: typing.Any
1088
955
  :param ymin: Y Min
1089
- :type ymin: typing.Optional[typing.Any]
956
+ :type ymin: typing.Any
1090
957
  :param ymax: Y Max
1091
- :type ymax: typing.Optional[typing.Any]
958
+ :type ymax: typing.Any
1092
959
  :param wait_for_input: Wait for Input
1093
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
960
+ :type wait_for_input: typing.Union[bool, typing.Any]
1094
961
  :param mode: Mode
1095
962
 
1096
963
  SET
@@ -1101,38 +968,35 @@ def select_box(
1101
968
 
1102
969
  SUB
1103
970
  Subtract -- Subtract existing selection.
1104
- :type mode: typing.Optional[typing.Any]
971
+ :type mode: typing.Any
1105
972
  """
1106
973
 
1107
974
  ...
1108
975
 
1109
976
  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,
977
+ override_context: typing.Union[dict, bpy.types.Context] = None,
978
+ execution_context: typing.Union[str, int] = None,
979
+ undo: bool = None,
980
+ x: typing.Any = 0,
981
+ y: typing.Any = 0,
982
+ radius: typing.Any = 25,
983
+ wait_for_input: typing.Union[bool, typing.Any] = True,
984
+ mode: typing.Any = "SET",
985
+ use_curve_selection: typing.Union[bool, typing.Any] = True,
1122
986
  ):
1123
987
  """Select keyframe points using circle selection
1124
988
 
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]
989
+ :type override_context: typing.Union[dict, bpy.types.Context]
990
+ :type execution_context: typing.Union[str, int]
991
+ :type undo: bool
1128
992
  :param x: X
1129
- :type x: typing.Optional[typing.Any]
993
+ :type x: typing.Any
1130
994
  :param y: Y
1131
- :type y: typing.Optional[typing.Any]
995
+ :type y: typing.Any
1132
996
  :param radius: Radius
1133
- :type radius: typing.Optional[typing.Any]
997
+ :type radius: typing.Any
1134
998
  :param wait_for_input: Wait for Input
1135
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
999
+ :type wait_for_input: typing.Union[bool, typing.Any]
1136
1000
  :param mode: Mode
1137
1001
 
1138
1002
  SET
@@ -1143,49 +1007,43 @@ def select_circle(
1143
1007
 
1144
1008
  SUB
1145
1009
  Subtract -- Subtract existing selection.
1146
- :type mode: typing.Optional[typing.Any]
1010
+ :type mode: typing.Any
1147
1011
  :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]]
1012
+ :type use_curve_selection: typing.Union[bool, typing.Any]
1149
1013
  """
1150
1014
 
1151
1015
  ...
1152
1016
 
1153
1017
  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",
1018
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1019
+ execution_context: typing.Union[str, int] = None,
1020
+ undo: bool = None,
1021
+ mode: typing.Any = "KEYS",
1161
1022
  ):
1162
1023
  """Select all keyframes on the specified frame(s)
1163
1024
 
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]
1025
+ :type override_context: typing.Union[dict, bpy.types.Context]
1026
+ :type execution_context: typing.Union[str, int]
1027
+ :type undo: bool
1167
1028
  :param mode: Mode
1168
- :type mode: typing.Optional[typing.Any]
1029
+ :type mode: typing.Any
1169
1030
  """
1170
1031
 
1171
1032
  ...
1172
1033
 
1173
1034
  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",
1035
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1036
+ execution_context: typing.Union[str, int] = None,
1037
+ undo: bool = None,
1038
+ left_handle_action: typing.Any = "SELECT",
1039
+ right_handle_action: typing.Any = "SELECT",
1040
+ key_action: typing.Any = "KEEP",
1183
1041
  ):
1184
1042
  """For selected keyframes, select/deselect any combination of the key itself and its handles
1185
1043
 
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]
1044
+ :type override_context: typing.Union[dict, bpy.types.Context]
1045
+ :type execution_context: typing.Union[str, int]
1046
+ :type undo: bool
1189
1047
  :param left_handle_action: Left Handle, Effect on the left handle
1190
1048
 
1191
1049
  SELECT
@@ -1196,7 +1054,7 @@ def select_key_handles(
1196
1054
 
1197
1055
  KEEP
1198
1056
  Keep -- Leave as is.
1199
- :type left_handle_action: typing.Optional[typing.Any]
1057
+ :type left_handle_action: typing.Any
1200
1058
  :param right_handle_action: Right Handle, Effect on the right handle
1201
1059
 
1202
1060
  SELECT
@@ -1207,7 +1065,7 @@ def select_key_handles(
1207
1065
 
1208
1066
  KEEP
1209
1067
  Keep -- Leave as is.
1210
- :type right_handle_action: typing.Optional[typing.Any]
1068
+ :type right_handle_action: typing.Any
1211
1069
  :param key_action: Key, Effect on the key itself
1212
1070
 
1213
1071
  SELECT
@@ -1218,31 +1076,26 @@ def select_key_handles(
1218
1076
 
1219
1077
  KEEP
1220
1078
  Keep -- Leave as is.
1221
- :type key_action: typing.Optional[typing.Any]
1079
+ :type key_action: typing.Any
1222
1080
  """
1223
1081
 
1224
1082
  ...
1225
1083
 
1226
1084
  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,
1085
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1086
+ execution_context: typing.Union[str, int] = None,
1087
+ undo: bool = None,
1088
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
1089
+ mode: typing.Any = "SET",
1090
+ use_curve_selection: typing.Union[bool, typing.Any] = True,
1238
1091
  ):
1239
1092
  """Select keyframe points using lasso selection
1240
1093
 
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]
1094
+ :type override_context: typing.Union[dict, bpy.types.Context]
1095
+ :type execution_context: typing.Union[str, int]
1096
+ :type undo: bool
1244
1097
  :param path: Path
1245
- :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
1098
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
1246
1099
  :param mode: Mode
1247
1100
 
1248
1101
  SET
@@ -1253,101 +1106,89 @@ def select_lasso(
1253
1106
 
1254
1107
  SUB
1255
1108
  Subtract -- Subtract existing selection.
1256
- :type mode: typing.Optional[typing.Any]
1109
+ :type mode: typing.Any
1257
1110
  :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]]
1111
+ :type use_curve_selection: typing.Union[bool, typing.Any]
1259
1112
  """
1260
1113
 
1261
1114
  ...
1262
1115
 
1263
1116
  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,
1117
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1118
+ execution_context: typing.Union[str, int] = None,
1119
+ undo: bool = None,
1120
+ mode: typing.Any = "CHECK",
1121
+ extend: typing.Union[bool, typing.Any] = False,
1272
1122
  ):
1273
1123
  """Select keyframes to the left or the right of the current frame
1274
1124
 
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]
1125
+ :type override_context: typing.Union[dict, bpy.types.Context]
1126
+ :type execution_context: typing.Union[str, int]
1127
+ :type undo: bool
1278
1128
  :param mode: Mode
1279
- :type mode: typing.Optional[typing.Any]
1129
+ :type mode: typing.Any
1280
1130
  :param extend: Extend Select
1281
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
1131
+ :type extend: typing.Union[bool, typing.Any]
1282
1132
  """
1283
1133
 
1284
1134
  ...
1285
1135
 
1286
1136
  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,
1137
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1138
+ execution_context: typing.Union[str, int] = None,
1139
+ undo: bool = None,
1292
1140
  ):
1293
1141
  """Deselect keyframes on ends of selection islands
1294
1142
 
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]
1143
+ :type override_context: typing.Union[dict, bpy.types.Context]
1144
+ :type execution_context: typing.Union[str, int]
1145
+ :type undo: bool
1298
1146
  """
1299
1147
 
1300
1148
  ...
1301
1149
 
1302
1150
  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,
1151
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1152
+ execution_context: typing.Union[str, int] = None,
1153
+ undo: bool = None,
1308
1154
  ):
1309
1155
  """Select keyframes occurring in the same F-Curves as selected ones
1310
1156
 
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]
1157
+ :type override_context: typing.Union[dict, bpy.types.Context]
1158
+ :type execution_context: typing.Union[str, int]
1159
+ :type undo: bool
1314
1160
  """
1315
1161
 
1316
1162
  ...
1317
1163
 
1318
1164
  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,
1165
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1166
+ execution_context: typing.Union[str, int] = None,
1167
+ undo: bool = None,
1324
1168
  ):
1325
1169
  """Select keyframes beside already selected ones
1326
1170
 
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]
1171
+ :type override_context: typing.Union[dict, bpy.types.Context]
1172
+ :type execution_context: typing.Union[str, int]
1173
+ :type undo: bool
1330
1174
  """
1331
1175
 
1332
1176
  ...
1333
1177
 
1334
1178
  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",
1179
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1180
+ execution_context: typing.Union[str, int] = None,
1181
+ undo: bool = None,
1182
+ factor: typing.Any = 0.0,
1183
+ direction: typing.Any = "FROM_LEFT",
1343
1184
  ):
1344
1185
  """Affect the value of the keys linearly, keeping the same relationship between them using either the left or the right key as reference
1345
1186
 
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]
1187
+ :type override_context: typing.Union[dict, bpy.types.Context]
1188
+ :type execution_context: typing.Union[str, int]
1189
+ :type undo: bool
1349
1190
  :param factor: Shear Factor, The amount of shear to apply
1350
- :type factor: typing.Optional[typing.Any]
1191
+ :type factor: typing.Any
1351
1192
  :param direction: Direction, Which end of the segment to use as a reference to shear from
1352
1193
 
1353
1194
  FROM_LEFT
@@ -1355,41 +1196,36 @@ def shear(
1355
1196
 
1356
1197
  FROM_RIGHT
1357
1198
  From Right -- Shear the keys using the right key as reference.
1358
- :type direction: typing.Optional[typing.Any]
1199
+ :type direction: typing.Any
1359
1200
  """
1360
1201
 
1361
1202
  ...
1362
1203
 
1363
1204
  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,
1205
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1206
+ execution_context: typing.Union[str, int] = None,
1207
+ undo: bool = None,
1369
1208
  ):
1370
1209
  """Apply weighted moving means to make selected F-Curves less bumpy
1371
1210
 
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]
1211
+ :type override_context: typing.Union[dict, bpy.types.Context]
1212
+ :type execution_context: typing.Union[str, int]
1213
+ :type undo: bool
1375
1214
  """
1376
1215
 
1377
1216
  ...
1378
1217
 
1379
1218
  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",
1219
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1220
+ execution_context: typing.Union[str, int] = None,
1221
+ undo: bool = None,
1222
+ type: typing.Any = "CFRA",
1387
1223
  ):
1388
1224
  """Snap selected keyframes to the chosen times/values
1389
1225
 
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]
1226
+ :type override_context: typing.Union[dict, bpy.types.Context]
1227
+ :type execution_context: typing.Union[str, int]
1228
+ :type undo: bool
1393
1229
  :param type: Type
1394
1230
 
1395
1231
  CFRA
@@ -1409,117 +1245,112 @@ def snap(
1409
1245
 
1410
1246
  HORIZONTAL
1411
1247
  Flatten Handles -- Flatten handles for a smoother transition.
1412
- :type type: typing.Optional[typing.Any]
1248
+ :type type: typing.Any
1413
1249
  """
1414
1250
 
1415
1251
  ...
1416
1252
 
1417
1253
  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,
1254
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1255
+ execution_context: typing.Union[str, int] = None,
1256
+ undo: bool = None,
1423
1257
  ):
1424
1258
  """Place the cursor value on the average value of selected keyframes
1425
1259
 
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]
1260
+ :type override_context: typing.Union[dict, bpy.types.Context]
1261
+ :type execution_context: typing.Union[str, int]
1262
+ :type undo: bool
1429
1263
  """
1430
1264
 
1431
1265
  ...
1432
1266
 
1433
1267
  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
- *,
1268
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1269
+ execution_context: typing.Union[str, int] = None,
1270
+ undo: bool = None,
1440
1271
  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,
1272
+ check_existing: typing.Union[bool, typing.Any] = False,
1273
+ filter_blender: typing.Union[bool, typing.Any] = False,
1274
+ filter_backup: typing.Union[bool, typing.Any] = False,
1275
+ filter_image: typing.Union[bool, typing.Any] = False,
1276
+ filter_movie: typing.Union[bool, typing.Any] = True,
1277
+ filter_python: typing.Union[bool, typing.Any] = False,
1278
+ filter_font: typing.Union[bool, typing.Any] = False,
1279
+ filter_sound: typing.Union[bool, typing.Any] = True,
1280
+ filter_text: typing.Union[bool, typing.Any] = False,
1281
+ filter_archive: typing.Union[bool, typing.Any] = False,
1282
+ filter_btx: typing.Union[bool, typing.Any] = False,
1283
+ filter_collada: typing.Union[bool, typing.Any] = False,
1284
+ filter_alembic: typing.Union[bool, typing.Any] = False,
1285
+ filter_usd: typing.Union[bool, typing.Any] = False,
1286
+ filter_obj: typing.Union[bool, typing.Any] = False,
1287
+ filter_volume: typing.Union[bool, typing.Any] = False,
1288
+ filter_folder: typing.Union[bool, typing.Any] = True,
1289
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
1290
+ filemode: typing.Any = 9,
1291
+ show_multiview: typing.Union[bool, typing.Any] = False,
1292
+ use_multiview: typing.Union[bool, typing.Any] = False,
1293
+ display_type: typing.Any = "DEFAULT",
1294
+ sort_method: typing.Union[str, int, typing.Any] = "",
1295
+ low: typing.Any = 0.0,
1296
+ high: typing.Any = 100000.0,
1297
+ attack: typing.Any = 0.005,
1298
+ release: typing.Any = 0.2,
1299
+ threshold: typing.Any = 0.0,
1300
+ use_accumulate: typing.Union[bool, typing.Any] = False,
1301
+ use_additive: typing.Union[bool, typing.Any] = False,
1302
+ use_square: typing.Union[bool, typing.Any] = False,
1303
+ sthreshold: typing.Any = 0.1,
1473
1304
  ):
1474
1305
  """Bakes a sound wave to samples on selected channels
1475
1306
 
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]
1307
+ :type override_context: typing.Union[dict, bpy.types.Context]
1308
+ :type execution_context: typing.Union[str, int]
1309
+ :type undo: bool
1479
1310
  :param filepath: File Path, Path to file
1480
1311
  :type filepath: typing.Union[str, typing.Any]
1481
1312
  :param check_existing: Check Existing, Check and warn on overwriting existing files
1482
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
1313
+ :type check_existing: typing.Union[bool, typing.Any]
1483
1314
  :param filter_blender: Filter .blend files
1484
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
1315
+ :type filter_blender: typing.Union[bool, typing.Any]
1485
1316
  :param filter_backup: Filter .blend files
1486
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
1317
+ :type filter_backup: typing.Union[bool, typing.Any]
1487
1318
  :param filter_image: Filter image files
1488
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
1319
+ :type filter_image: typing.Union[bool, typing.Any]
1489
1320
  :param filter_movie: Filter movie files
1490
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
1321
+ :type filter_movie: typing.Union[bool, typing.Any]
1491
1322
  :param filter_python: Filter Python files
1492
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
1323
+ :type filter_python: typing.Union[bool, typing.Any]
1493
1324
  :param filter_font: Filter font files
1494
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
1325
+ :type filter_font: typing.Union[bool, typing.Any]
1495
1326
  :param filter_sound: Filter sound files
1496
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
1327
+ :type filter_sound: typing.Union[bool, typing.Any]
1497
1328
  :param filter_text: Filter text files
1498
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
1329
+ :type filter_text: typing.Union[bool, typing.Any]
1499
1330
  :param filter_archive: Filter archive files
1500
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
1331
+ :type filter_archive: typing.Union[bool, typing.Any]
1501
1332
  :param filter_btx: Filter btx files
1502
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
1333
+ :type filter_btx: typing.Union[bool, typing.Any]
1503
1334
  :param filter_collada: Filter COLLADA files
1504
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
1335
+ :type filter_collada: typing.Union[bool, typing.Any]
1505
1336
  :param filter_alembic: Filter Alembic files
1506
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
1337
+ :type filter_alembic: typing.Union[bool, typing.Any]
1507
1338
  :param filter_usd: Filter USD files
1508
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
1339
+ :type filter_usd: typing.Union[bool, typing.Any]
1509
1340
  :param filter_obj: Filter OBJ files
1510
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
1341
+ :type filter_obj: typing.Union[bool, typing.Any]
1511
1342
  :param filter_volume: Filter OpenVDB volume files
1512
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
1343
+ :type filter_volume: typing.Union[bool, typing.Any]
1513
1344
  :param filter_folder: Filter folders
1514
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
1345
+ :type filter_folder: typing.Union[bool, typing.Any]
1515
1346
  :param filter_blenlib: Filter Blender IDs
1516
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
1347
+ :type filter_blenlib: typing.Union[bool, typing.Any]
1517
1348
  :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]
1349
+ :type filemode: typing.Any
1519
1350
  :param show_multiview: Enable Multi-View
1520
- :type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
1351
+ :type show_multiview: typing.Union[bool, typing.Any]
1521
1352
  :param use_multiview: Use Multi-View
1522
- :type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
1353
+ :type use_multiview: typing.Union[bool, typing.Any]
1523
1354
  :param display_type: Display Type
1524
1355
 
1525
1356
  DEFAULT
@@ -1533,103 +1364,92 @@ def sound_to_samples(
1533
1364
 
1534
1365
  THUMBNAIL
1535
1366
  Thumbnails -- Display files as thumbnails.
1536
- :type display_type: typing.Optional[typing.Any]
1367
+ :type display_type: typing.Any
1537
1368
  :param sort_method: File sorting mode
1538
- :type sort_method: typing.Optional[typing.Union[int, str, typing.Any]]
1369
+ :type sort_method: typing.Union[str, int, typing.Any]
1539
1370
  :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]
1371
+ :type low: typing.Any
1541
1372
  :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]
1373
+ :type high: typing.Any
1543
1374
  :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]
1375
+ :type attack: typing.Any
1545
1376
  :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]
1377
+ :type release: typing.Any
1547
1378
  :param threshold: Threshold, Minimum amplitude value needed to influence the envelope
1548
- :type threshold: typing.Optional[typing.Any]
1379
+ :type threshold: typing.Any
1549
1380
  :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]]
1381
+ :type use_accumulate: typing.Union[bool, typing.Any]
1551
1382
  :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]]
1383
+ :type use_additive: typing.Union[bool, typing.Any]
1553
1384
  :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]]
1385
+ :type use_square: typing.Union[bool, typing.Any]
1555
1386
  :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]
1387
+ :type sthreshold: typing.Any
1557
1388
  """
1558
1389
 
1559
1390
  ...
1560
1391
 
1561
1392
  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,
1393
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1394
+ execution_context: typing.Union[str, int] = None,
1395
+ undo: bool = None,
1396
+ frame_offset: typing.Any = 0.0,
1569
1397
  ):
1570
1398
  """Shifts the value of selected keys in time
1571
1399
 
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]
1400
+ :type override_context: typing.Union[dict, bpy.types.Context]
1401
+ :type execution_context: typing.Union[str, int]
1402
+ :type undo: bool
1575
1403
  :param frame_offset: Frame Offset, How far in frames to offset the animation
1576
- :type frame_offset: typing.Optional[typing.Any]
1404
+ :type frame_offset: typing.Any
1577
1405
  """
1578
1406
 
1579
1407
  ...
1580
1408
 
1581
1409
  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,
1410
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1411
+ execution_context: typing.Union[str, int] = None,
1412
+ undo: bool = None,
1413
+ include_handles: typing.Union[bool, typing.Any] = True,
1589
1414
  ):
1590
1415
  """Reset viewable area to show full keyframe range
1591
1416
 
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]
1417
+ :type override_context: typing.Union[dict, bpy.types.Context]
1418
+ :type execution_context: typing.Union[str, int]
1419
+ :type undo: bool
1595
1420
  :param include_handles: Include Handles, Include handles of keyframes when calculating extents
1596
- :type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
1421
+ :type include_handles: typing.Union[bool, typing.Any]
1597
1422
  """
1598
1423
 
1599
1424
  ...
1600
1425
 
1601
1426
  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,
1427
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1428
+ execution_context: typing.Union[str, int] = None,
1429
+ undo: bool = None,
1607
1430
  ):
1608
1431
  """Move the view to the current frame
1609
1432
 
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]
1433
+ :type override_context: typing.Union[dict, bpy.types.Context]
1434
+ :type execution_context: typing.Union[str, int]
1435
+ :type undo: bool
1613
1436
  """
1614
1437
 
1615
1438
  ...
1616
1439
 
1617
1440
  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,
1441
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1442
+ execution_context: typing.Union[str, int] = None,
1443
+ undo: bool = None,
1444
+ include_handles: typing.Union[bool, typing.Any] = True,
1625
1445
  ):
1626
1446
  """Reset viewable area to show selected keyframe range
1627
1447
 
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]
1448
+ :type override_context: typing.Union[dict, bpy.types.Context]
1449
+ :type execution_context: typing.Union[str, int]
1450
+ :type undo: bool
1631
1451
  :param include_handles: Include Handles, Include handles of keyframes when calculating extents
1632
- :type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
1452
+ :type include_handles: typing.Union[bool, typing.Any]
1633
1453
  """
1634
1454
 
1635
1455
  ...