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

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

Potentially problematic release.


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

Files changed (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
bpy/ops/anim/__init__.pyi CHANGED
@@ -4,87 +4,83 @@ import bpy.types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  def change_frame(
7
- override_context=None,
8
- execution_context=None,
9
- undo=None,
10
- *,
11
- frame: typing.Optional[typing.Any] = 0.0,
12
- snap: typing.Optional[typing.Union[bool, typing.Any]] = False,
7
+ override_context: typing.Union[dict, bpy.types.Context] = None,
8
+ execution_context: typing.Union[str, int] = None,
9
+ undo: bool = None,
10
+ frame: typing.Any = 0.0,
11
+ snap: typing.Union[bool, typing.Any] = False,
13
12
  ):
14
13
  """Interactively change the current frame number
15
14
 
16
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
17
- :type execution_context: typing.Optional[typing.Union[int, str]]
18
- :type undo: typing.Optional[bool]
15
+ :type override_context: typing.Union[dict, bpy.types.Context]
16
+ :type execution_context: typing.Union[str, int]
17
+ :type undo: bool
19
18
  :param frame: Frame
20
- :type frame: typing.Optional[typing.Any]
19
+ :type frame: typing.Any
21
20
  :param snap: Snap
22
- :type snap: typing.Optional[typing.Union[bool, typing.Any]]
21
+ :type snap: typing.Union[bool, typing.Any]
23
22
  """
24
23
 
25
24
  ...
26
25
 
27
26
  def channel_select_keys(
28
- override_context=None,
29
- execution_context=None,
30
- undo=None,
31
- *,
32
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
27
+ override_context: typing.Union[dict, bpy.types.Context] = None,
28
+ execution_context: typing.Union[str, int] = None,
29
+ undo: bool = None,
30
+ extend: typing.Union[bool, typing.Any] = False,
33
31
  ):
34
32
  """Select all keyframes of channel under mouse
35
33
 
36
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
37
- :type execution_context: typing.Optional[typing.Union[int, str]]
38
- :type undo: typing.Optional[bool]
34
+ :type override_context: typing.Union[dict, bpy.types.Context]
35
+ :type execution_context: typing.Union[str, int]
36
+ :type undo: bool
39
37
  :param extend: Extend, Extend selection
40
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
38
+ :type extend: typing.Union[bool, typing.Any]
41
39
  """
42
40
 
43
41
  ...
44
42
 
45
43
  def channel_view_pick(
46
- override_context=None,
47
- execution_context=None,
48
- undo=None,
49
- *,
50
- include_handles: typing.Optional[typing.Union[bool, typing.Any]] = True,
51
- use_preview_range: typing.Optional[typing.Union[bool, typing.Any]] = True,
44
+ override_context: typing.Union[dict, bpy.types.Context] = None,
45
+ execution_context: typing.Union[str, int] = None,
46
+ undo: bool = None,
47
+ include_handles: typing.Union[bool, typing.Any] = True,
48
+ use_preview_range: typing.Union[bool, typing.Any] = True,
52
49
  ):
53
50
  """Reset viewable area to show the channel under the cursor
54
51
 
55
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
56
- :type execution_context: typing.Optional[typing.Union[int, str]]
57
- :type undo: typing.Optional[bool]
52
+ :type override_context: typing.Union[dict, bpy.types.Context]
53
+ :type execution_context: typing.Union[str, int]
54
+ :type undo: bool
58
55
  :param include_handles: Include Handles, Include handles of keyframes when calculating extents
59
- :type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
56
+ :type include_handles: typing.Union[bool, typing.Any]
60
57
  :param use_preview_range: Use Preview Range, Ignore frames outside of the preview range
61
- :type use_preview_range: typing.Optional[typing.Union[bool, typing.Any]]
58
+ :type use_preview_range: typing.Union[bool, typing.Any]
62
59
  """
63
60
 
64
61
  ...
65
62
 
66
63
  def channels_bake(
67
- override_context=None,
68
- execution_context=None,
69
- undo=None,
70
- *,
71
- range: typing.Optional[typing.Any] = (0, 0),
72
- step: typing.Optional[typing.Any] = 1.0,
73
- remove_outside_range: typing.Optional[typing.Union[bool, typing.Any]] = False,
74
- interpolation_type: typing.Optional[typing.Any] = "BEZIER",
75
- bake_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
64
+ override_context: typing.Union[dict, bpy.types.Context] = None,
65
+ execution_context: typing.Union[str, int] = None,
66
+ undo: bool = None,
67
+ range: typing.Any = (0, 0),
68
+ step: typing.Any = 1.0,
69
+ remove_outside_range: typing.Union[bool, typing.Any] = False,
70
+ interpolation_type: typing.Any = "BEZIER",
71
+ bake_modifiers: typing.Union[bool, typing.Any] = True,
76
72
  ):
77
73
  """Create keyframes following the current shape of F-Curves of selected channels
78
74
 
79
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
80
- :type execution_context: typing.Optional[typing.Union[int, str]]
81
- :type undo: typing.Optional[bool]
75
+ :type override_context: typing.Union[dict, bpy.types.Context]
76
+ :type execution_context: typing.Union[str, int]
77
+ :type undo: bool
82
78
  :param range: Frame Range, The range in which to create new keys
83
- :type range: typing.Optional[typing.Any]
79
+ :type range: typing.Any
84
80
  :param step: Frame Step, At which interval to add keys
85
- :type step: typing.Optional[typing.Any]
81
+ :type step: typing.Any
86
82
  :param remove_outside_range: Remove Outside Range, Removes keys outside the given range, leaving only the newly baked
87
- :type remove_outside_range: typing.Optional[typing.Union[bool, typing.Any]]
83
+ :type remove_outside_range: typing.Union[bool, typing.Any]
88
84
  :param interpolation_type: Interpolation Type, Choose the interpolation type with which new keys will be added
89
85
 
90
86
  BEZIER
@@ -95,136 +91,143 @@ def channels_bake(
95
91
 
96
92
  CONST
97
93
  Constant -- New keys will be constant.
98
- :type interpolation_type: typing.Optional[typing.Any]
94
+ :type interpolation_type: typing.Any
99
95
  :param bake_modifiers: Bake Modifiers, Bake Modifiers into keyframes and delete them after
100
- :type bake_modifiers: typing.Optional[typing.Union[bool, typing.Any]]
96
+ :type bake_modifiers: typing.Union[bool, typing.Any]
101
97
  """
102
98
 
103
99
  ...
104
100
 
105
- def channels_clean_empty(override_context=None, execution_context=None, undo=None):
101
+ def channels_clean_empty(
102
+ override_context: typing.Union[dict, bpy.types.Context] = None,
103
+ execution_context: typing.Union[str, int] = None,
104
+ undo: bool = None,
105
+ ):
106
106
  """Delete all empty animation data containers from visible data-blocks
107
107
 
108
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
109
- :type execution_context: typing.Optional[typing.Union[int, str]]
110
- :type undo: typing.Optional[bool]
108
+ :type override_context: typing.Union[dict, bpy.types.Context]
109
+ :type execution_context: typing.Union[str, int]
110
+ :type undo: bool
111
111
  """
112
112
 
113
113
  ...
114
114
 
115
115
  def channels_click(
116
- override_context=None,
117
- execution_context=None,
118
- undo=None,
119
- *,
120
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
121
- extend_range: typing.Optional[typing.Union[bool, typing.Any]] = False,
122
- children_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
116
+ override_context: typing.Union[dict, bpy.types.Context] = None,
117
+ execution_context: typing.Union[str, int] = None,
118
+ undo: bool = None,
119
+ extend: typing.Union[bool, typing.Any] = False,
120
+ extend_range: typing.Union[bool, typing.Any] = False,
121
+ children_only: typing.Union[bool, typing.Any] = False,
123
122
  ):
124
123
  """Handle mouse clicks over animation channels
125
124
 
126
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
127
- :type execution_context: typing.Optional[typing.Union[int, str]]
128
- :type undo: typing.Optional[bool]
125
+ :type override_context: typing.Union[dict, bpy.types.Context]
126
+ :type execution_context: typing.Union[str, int]
127
+ :type undo: bool
129
128
  :param extend: Extend Select
130
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
129
+ :type extend: typing.Union[bool, typing.Any]
131
130
  :param extend_range: Extend Range, Selection of active channel to clicked channel
132
- :type extend_range: typing.Optional[typing.Union[bool, typing.Any]]
131
+ :type extend_range: typing.Union[bool, typing.Any]
133
132
  :param children_only: Select Children Only
134
- :type children_only: typing.Optional[typing.Union[bool, typing.Any]]
133
+ :type children_only: typing.Union[bool, typing.Any]
135
134
  """
136
135
 
137
136
  ...
138
137
 
139
138
  def channels_collapse(
140
- override_context=None,
141
- execution_context=None,
142
- undo=None,
143
- *,
144
- all: typing.Optional[typing.Union[bool, typing.Any]] = True,
139
+ override_context: typing.Union[dict, bpy.types.Context] = None,
140
+ execution_context: typing.Union[str, int] = None,
141
+ undo: bool = None,
142
+ all: typing.Union[bool, typing.Any] = True,
145
143
  ):
146
144
  """Collapse (close) all selected expandable animation channels
147
145
 
148
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
149
- :type execution_context: typing.Optional[typing.Union[int, str]]
150
- :type undo: typing.Optional[bool]
146
+ :type override_context: typing.Union[dict, bpy.types.Context]
147
+ :type execution_context: typing.Union[str, int]
148
+ :type undo: bool
151
149
  :param all: All, Collapse all channels (not just selected ones)
152
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
150
+ :type all: typing.Union[bool, typing.Any]
153
151
  """
154
152
 
155
153
  ...
156
154
 
157
- def channels_delete(override_context=None, execution_context=None, undo=None):
155
+ def channels_delete(
156
+ override_context: typing.Union[dict, bpy.types.Context] = None,
157
+ execution_context: typing.Union[str, int] = None,
158
+ undo: bool = None,
159
+ ):
158
160
  """Delete all selected animation channels
159
161
 
160
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
161
- :type execution_context: typing.Optional[typing.Union[int, str]]
162
- :type undo: typing.Optional[bool]
162
+ :type override_context: typing.Union[dict, bpy.types.Context]
163
+ :type execution_context: typing.Union[str, int]
164
+ :type undo: bool
163
165
  """
164
166
 
165
167
  ...
166
168
 
167
169
  def channels_editable_toggle(
168
- override_context=None,
169
- execution_context=None,
170
- undo=None,
171
- *,
172
- mode: typing.Optional[typing.Any] = "TOGGLE",
173
- type: typing.Optional[typing.Any] = "PROTECT",
170
+ override_context: typing.Union[dict, bpy.types.Context] = None,
171
+ execution_context: typing.Union[str, int] = None,
172
+ undo: bool = None,
173
+ mode: typing.Any = "TOGGLE",
174
+ type: typing.Any = "PROTECT",
174
175
  ):
175
176
  """Toggle editability of selected channels
176
177
 
177
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
178
- :type execution_context: typing.Optional[typing.Union[int, str]]
179
- :type undo: typing.Optional[bool]
178
+ :type override_context: typing.Union[dict, bpy.types.Context]
179
+ :type execution_context: typing.Union[str, int]
180
+ :type undo: bool
180
181
  :param mode: Mode
181
- :type mode: typing.Optional[typing.Any]
182
+ :type mode: typing.Any
182
183
  :param type: Type
183
- :type type: typing.Optional[typing.Any]
184
+ :type type: typing.Any
184
185
  """
185
186
 
186
187
  ...
187
188
 
188
189
  def channels_expand(
189
- override_context=None,
190
- execution_context=None,
191
- undo=None,
192
- *,
193
- all: typing.Optional[typing.Union[bool, typing.Any]] = True,
190
+ override_context: typing.Union[dict, bpy.types.Context] = None,
191
+ execution_context: typing.Union[str, int] = None,
192
+ undo: bool = None,
193
+ all: typing.Union[bool, typing.Any] = True,
194
194
  ):
195
195
  """Expand (open) all selected expandable animation channels
196
196
 
197
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
198
- :type execution_context: typing.Optional[typing.Union[int, str]]
199
- :type undo: typing.Optional[bool]
197
+ :type override_context: typing.Union[dict, bpy.types.Context]
198
+ :type execution_context: typing.Union[str, int]
199
+ :type undo: bool
200
200
  :param all: All, Expand all channels (not just selected ones)
201
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
201
+ :type all: typing.Union[bool, typing.Any]
202
202
  """
203
203
 
204
204
  ...
205
205
 
206
- def channels_fcurves_enable(override_context=None, execution_context=None, undo=None):
206
+ def channels_fcurves_enable(
207
+ override_context: typing.Union[dict, bpy.types.Context] = None,
208
+ execution_context: typing.Union[str, int] = None,
209
+ undo: bool = None,
210
+ ):
207
211
  """Clear 'disabled' tag from all F-Curves to get broken F-Curves working again
208
212
 
209
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
210
- :type execution_context: typing.Optional[typing.Union[int, str]]
211
- :type undo: typing.Optional[bool]
213
+ :type override_context: typing.Union[dict, bpy.types.Context]
214
+ :type execution_context: typing.Union[str, int]
215
+ :type undo: bool
212
216
  """
213
217
 
214
218
  ...
215
219
 
216
220
  def channels_group(
217
- override_context=None,
218
- execution_context=None,
219
- undo=None,
220
- *,
221
+ override_context: typing.Union[dict, bpy.types.Context] = None,
222
+ execution_context: typing.Union[str, int] = None,
223
+ undo: bool = None,
221
224
  name: typing.Union[str, typing.Any] = "New Group",
222
225
  ):
223
226
  """Add selected F-Curves to a new group
224
227
 
225
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
226
- :type execution_context: typing.Optional[typing.Union[int, str]]
227
- :type undo: typing.Optional[bool]
228
+ :type override_context: typing.Union[dict, bpy.types.Context]
229
+ :type execution_context: typing.Union[str, int]
230
+ :type undo: bool
228
231
  :param name: Name, Name of newly created group
229
232
  :type name: typing.Union[str, typing.Any]
230
233
  """
@@ -232,45 +235,47 @@ def channels_group(
232
235
  ...
233
236
 
234
237
  def channels_move(
235
- override_context=None,
236
- execution_context=None,
237
- undo=None,
238
- *,
239
- direction: typing.Optional[typing.Any] = "DOWN",
238
+ override_context: typing.Union[dict, bpy.types.Context] = None,
239
+ execution_context: typing.Union[str, int] = None,
240
+ undo: bool = None,
241
+ direction: typing.Any = "DOWN",
240
242
  ):
241
243
  """Rearrange selected animation channels
242
244
 
243
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
244
- :type execution_context: typing.Optional[typing.Union[int, str]]
245
- :type undo: typing.Optional[bool]
245
+ :type override_context: typing.Union[dict, bpy.types.Context]
246
+ :type execution_context: typing.Union[str, int]
247
+ :type undo: bool
246
248
  :param direction: Direction
247
- :type direction: typing.Optional[typing.Any]
249
+ :type direction: typing.Any
248
250
  """
249
251
 
250
252
  ...
251
253
 
252
- def channels_rename(override_context=None, execution_context=None, undo=None):
254
+ def channels_rename(
255
+ override_context: typing.Union[dict, bpy.types.Context] = None,
256
+ execution_context: typing.Union[str, int] = None,
257
+ undo: bool = None,
258
+ ):
253
259
  """Rename animation channel under mouse
254
260
 
255
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
256
- :type execution_context: typing.Optional[typing.Union[int, str]]
257
- :type undo: typing.Optional[bool]
261
+ :type override_context: typing.Union[dict, bpy.types.Context]
262
+ :type execution_context: typing.Union[str, int]
263
+ :type undo: bool
258
264
  """
259
265
 
260
266
  ...
261
267
 
262
268
  def channels_select_all(
263
- override_context=None,
264
- execution_context=None,
265
- undo=None,
266
- *,
267
- action: typing.Optional[typing.Any] = "TOGGLE",
269
+ override_context: typing.Union[dict, bpy.types.Context] = None,
270
+ execution_context: typing.Union[str, int] = None,
271
+ undo: bool = None,
272
+ action: typing.Any = "TOGGLE",
268
273
  ):
269
274
  """Toggle selection of all animation channels
270
275
 
271
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
272
- :type execution_context: typing.Optional[typing.Union[int, str]]
273
- :type undo: typing.Optional[bool]
276
+ :type override_context: typing.Union[dict, bpy.types.Context]
277
+ :type execution_context: typing.Union[str, int]
278
+ :type undo: bool
274
279
  :param action: Action, Selection action to execute
275
280
 
276
281
  TOGGLE
@@ -284,311 +289,323 @@ def channels_select_all(
284
289
 
285
290
  INVERT
286
291
  Invert -- Invert selection of all elements.
287
- :type action: typing.Optional[typing.Any]
292
+ :type action: typing.Any
288
293
  """
289
294
 
290
295
  ...
291
296
 
292
297
  def channels_select_box(
293
- override_context=None,
294
- execution_context=None,
295
- undo=None,
296
- *,
297
- xmin: typing.Optional[typing.Any] = 0,
298
- xmax: typing.Optional[typing.Any] = 0,
299
- ymin: typing.Optional[typing.Any] = 0,
300
- ymax: typing.Optional[typing.Any] = 0,
301
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
302
- deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
303
- extend: typing.Optional[typing.Union[bool, typing.Any]] = True,
298
+ override_context: typing.Union[dict, bpy.types.Context] = None,
299
+ execution_context: typing.Union[str, int] = None,
300
+ undo: bool = None,
301
+ xmin: typing.Any = 0,
302
+ xmax: typing.Any = 0,
303
+ ymin: typing.Any = 0,
304
+ ymax: typing.Any = 0,
305
+ wait_for_input: typing.Union[bool, typing.Any] = True,
306
+ deselect: typing.Union[bool, typing.Any] = False,
307
+ extend: typing.Union[bool, typing.Any] = True,
304
308
  ):
305
309
  """Select all animation channels within the specified region
306
310
 
307
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
308
- :type execution_context: typing.Optional[typing.Union[int, str]]
309
- :type undo: typing.Optional[bool]
311
+ :type override_context: typing.Union[dict, bpy.types.Context]
312
+ :type execution_context: typing.Union[str, int]
313
+ :type undo: bool
310
314
  :param xmin: X Min
311
- :type xmin: typing.Optional[typing.Any]
315
+ :type xmin: typing.Any
312
316
  :param xmax: X Max
313
- :type xmax: typing.Optional[typing.Any]
317
+ :type xmax: typing.Any
314
318
  :param ymin: Y Min
315
- :type ymin: typing.Optional[typing.Any]
319
+ :type ymin: typing.Any
316
320
  :param ymax: Y Max
317
- :type ymax: typing.Optional[typing.Any]
321
+ :type ymax: typing.Any
318
322
  :param wait_for_input: Wait for Input
319
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
323
+ :type wait_for_input: typing.Union[bool, typing.Any]
320
324
  :param deselect: Deselect, Deselect rather than select items
321
- :type deselect: typing.Optional[typing.Union[bool, typing.Any]]
325
+ :type deselect: typing.Union[bool, typing.Any]
322
326
  :param extend: Extend, Extend selection instead of deselecting everything first
323
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
327
+ :type extend: typing.Union[bool, typing.Any]
324
328
  """
325
329
 
326
330
  ...
327
331
 
328
- def channels_select_filter(override_context=None, execution_context=None, undo=None):
332
+ def channels_select_filter(
333
+ override_context: typing.Union[dict, bpy.types.Context] = None,
334
+ execution_context: typing.Union[str, int] = None,
335
+ undo: bool = None,
336
+ ):
329
337
  """Start entering text which filters the set of channels shown to only include those with matching names
330
338
 
331
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
332
- :type execution_context: typing.Optional[typing.Union[int, str]]
333
- :type undo: typing.Optional[bool]
339
+ :type override_context: typing.Union[dict, bpy.types.Context]
340
+ :type execution_context: typing.Union[str, int]
341
+ :type undo: bool
334
342
  """
335
343
 
336
344
  ...
337
345
 
338
346
  def channels_setting_disable(
339
- override_context=None,
340
- execution_context=None,
341
- undo=None,
342
- *,
343
- mode: typing.Optional[typing.Any] = "DISABLE",
344
- type: typing.Optional[typing.Any] = "PROTECT",
347
+ override_context: typing.Union[dict, bpy.types.Context] = None,
348
+ execution_context: typing.Union[str, int] = None,
349
+ undo: bool = None,
350
+ mode: typing.Any = "DISABLE",
351
+ type: typing.Any = "PROTECT",
345
352
  ):
346
353
  """Disable specified setting on all selected animation channels
347
354
 
348
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
349
- :type execution_context: typing.Optional[typing.Union[int, str]]
350
- :type undo: typing.Optional[bool]
355
+ :type override_context: typing.Union[dict, bpy.types.Context]
356
+ :type execution_context: typing.Union[str, int]
357
+ :type undo: bool
351
358
  :param mode: Mode
352
- :type mode: typing.Optional[typing.Any]
359
+ :type mode: typing.Any
353
360
  :param type: Type
354
- :type type: typing.Optional[typing.Any]
361
+ :type type: typing.Any
355
362
  """
356
363
 
357
364
  ...
358
365
 
359
366
  def channels_setting_enable(
360
- override_context=None,
361
- execution_context=None,
362
- undo=None,
363
- *,
364
- mode: typing.Optional[typing.Any] = "ENABLE",
365
- type: typing.Optional[typing.Any] = "PROTECT",
367
+ override_context: typing.Union[dict, bpy.types.Context] = None,
368
+ execution_context: typing.Union[str, int] = None,
369
+ undo: bool = None,
370
+ mode: typing.Any = "ENABLE",
371
+ type: typing.Any = "PROTECT",
366
372
  ):
367
373
  """Enable specified setting on all selected animation channels
368
374
 
369
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
370
- :type execution_context: typing.Optional[typing.Union[int, str]]
371
- :type undo: typing.Optional[bool]
375
+ :type override_context: typing.Union[dict, bpy.types.Context]
376
+ :type execution_context: typing.Union[str, int]
377
+ :type undo: bool
372
378
  :param mode: Mode
373
- :type mode: typing.Optional[typing.Any]
379
+ :type mode: typing.Any
374
380
  :param type: Type
375
- :type type: typing.Optional[typing.Any]
381
+ :type type: typing.Any
376
382
  """
377
383
 
378
384
  ...
379
385
 
380
386
  def channels_setting_toggle(
381
- override_context=None,
382
- execution_context=None,
383
- undo=None,
384
- *,
385
- mode: typing.Optional[typing.Any] = "TOGGLE",
386
- type: typing.Optional[typing.Any] = "PROTECT",
387
+ override_context: typing.Union[dict, bpy.types.Context] = None,
388
+ execution_context: typing.Union[str, int] = None,
389
+ undo: bool = None,
390
+ mode: typing.Any = "TOGGLE",
391
+ type: typing.Any = "PROTECT",
387
392
  ):
388
393
  """Toggle specified setting on all selected animation channels
389
394
 
390
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
391
- :type execution_context: typing.Optional[typing.Union[int, str]]
392
- :type undo: typing.Optional[bool]
395
+ :type override_context: typing.Union[dict, bpy.types.Context]
396
+ :type execution_context: typing.Union[str, int]
397
+ :type undo: bool
393
398
  :param mode: Mode
394
- :type mode: typing.Optional[typing.Any]
399
+ :type mode: typing.Any
395
400
  :param type: Type
396
- :type type: typing.Optional[typing.Any]
401
+ :type type: typing.Any
397
402
  """
398
403
 
399
404
  ...
400
405
 
401
- def channels_ungroup(override_context=None, execution_context=None, undo=None):
406
+ def channels_ungroup(
407
+ override_context: typing.Union[dict, bpy.types.Context] = None,
408
+ execution_context: typing.Union[str, int] = None,
409
+ undo: bool = None,
410
+ ):
402
411
  """Remove selected F-Curves from their current groups
403
412
 
404
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
405
- :type execution_context: typing.Optional[typing.Union[int, str]]
406
- :type undo: typing.Optional[bool]
413
+ :type override_context: typing.Union[dict, bpy.types.Context]
414
+ :type execution_context: typing.Union[str, int]
415
+ :type undo: bool
407
416
  """
408
417
 
409
418
  ...
410
419
 
411
420
  def channels_view_selected(
412
- override_context=None,
413
- execution_context=None,
414
- undo=None,
415
- *,
416
- include_handles: typing.Optional[typing.Union[bool, typing.Any]] = True,
417
- use_preview_range: typing.Optional[typing.Union[bool, typing.Any]] = True,
421
+ override_context: typing.Union[dict, bpy.types.Context] = None,
422
+ execution_context: typing.Union[str, int] = None,
423
+ undo: bool = None,
424
+ include_handles: typing.Union[bool, typing.Any] = True,
425
+ use_preview_range: typing.Union[bool, typing.Any] = True,
418
426
  ):
419
427
  """Reset viewable area to show the selected channels
420
428
 
421
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
422
- :type execution_context: typing.Optional[typing.Union[int, str]]
423
- :type undo: typing.Optional[bool]
429
+ :type override_context: typing.Union[dict, bpy.types.Context]
430
+ :type execution_context: typing.Union[str, int]
431
+ :type undo: bool
424
432
  :param include_handles: Include Handles, Include handles of keyframes when calculating extents
425
- :type include_handles: typing.Optional[typing.Union[bool, typing.Any]]
433
+ :type include_handles: typing.Union[bool, typing.Any]
426
434
  :param use_preview_range: Use Preview Range, Ignore frames outside of the preview range
427
- :type use_preview_range: typing.Optional[typing.Union[bool, typing.Any]]
435
+ :type use_preview_range: typing.Union[bool, typing.Any]
428
436
  """
429
437
 
430
438
  ...
431
439
 
432
440
  def clear_useless_actions(
433
- override_context=None,
434
- execution_context=None,
435
- undo=None,
436
- *,
437
- only_unused: typing.Optional[typing.Union[bool, typing.Any]] = True,
441
+ override_context: typing.Union[dict, bpy.types.Context] = None,
442
+ execution_context: typing.Union[str, int] = None,
443
+ undo: bool = None,
444
+ only_unused: typing.Union[bool, typing.Any] = True,
438
445
  ):
439
446
  """Mark actions with no F-Curves for deletion after save and reload of file preserving "action libraries"
440
447
 
441
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
442
- :type execution_context: typing.Optional[typing.Union[int, str]]
443
- :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
444
451
  :param only_unused: Only Unused, Only unused (Fake User only) actions get considered
445
- :type only_unused: typing.Optional[typing.Union[bool, typing.Any]]
452
+ :type only_unused: typing.Union[bool, typing.Any]
446
453
  """
447
454
 
448
455
  ...
449
456
 
450
- def copy_driver_button(override_context=None, execution_context=None, undo=None):
457
+ def copy_driver_button(
458
+ override_context: typing.Union[dict, bpy.types.Context] = None,
459
+ execution_context: typing.Union[str, int] = None,
460
+ undo: bool = None,
461
+ ):
451
462
  """Copy the driver for the highlighted button
452
463
 
453
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
454
- :type execution_context: typing.Optional[typing.Union[int, str]]
455
- :type undo: typing.Optional[bool]
464
+ :type override_context: typing.Union[dict, bpy.types.Context]
465
+ :type execution_context: typing.Union[str, int]
466
+ :type undo: bool
456
467
  """
457
468
 
458
469
  ...
459
470
 
460
- def driver_button_add(override_context=None, execution_context=None, undo=None):
471
+ def driver_button_add(
472
+ override_context: typing.Union[dict, bpy.types.Context] = None,
473
+ execution_context: typing.Union[str, int] = None,
474
+ undo: bool = None,
475
+ ):
461
476
  """Add driver for the property under the cursor
462
477
 
463
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
464
- :type execution_context: typing.Optional[typing.Union[int, str]]
465
- :type undo: typing.Optional[bool]
478
+ :type override_context: typing.Union[dict, bpy.types.Context]
479
+ :type execution_context: typing.Union[str, int]
480
+ :type undo: bool
466
481
  """
467
482
 
468
483
  ...
469
484
 
470
- def driver_button_edit(override_context=None, execution_context=None, undo=None):
485
+ def driver_button_edit(
486
+ override_context: typing.Union[dict, bpy.types.Context] = None,
487
+ execution_context: typing.Union[str, int] = None,
488
+ undo: bool = None,
489
+ ):
471
490
  """Edit the drivers for the connected property represented by the highlighted button
472
491
 
473
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
474
- :type execution_context: typing.Optional[typing.Union[int, str]]
475
- :type undo: typing.Optional[bool]
492
+ :type override_context: typing.Union[dict, bpy.types.Context]
493
+ :type execution_context: typing.Union[str, int]
494
+ :type undo: bool
476
495
  """
477
496
 
478
497
  ...
479
498
 
480
499
  def driver_button_remove(
481
- override_context=None,
482
- execution_context=None,
483
- undo=None,
484
- *,
485
- all: typing.Optional[typing.Union[bool, typing.Any]] = True,
500
+ override_context: typing.Union[dict, bpy.types.Context] = None,
501
+ execution_context: typing.Union[str, int] = None,
502
+ undo: bool = None,
503
+ all: typing.Union[bool, typing.Any] = True,
486
504
  ):
487
505
  """Remove the driver(s) for the connected property(s) represented by the highlighted button
488
506
 
489
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
490
- :type execution_context: typing.Optional[typing.Union[int, str]]
491
- :type undo: typing.Optional[bool]
507
+ :type override_context: typing.Union[dict, bpy.types.Context]
508
+ :type execution_context: typing.Union[str, int]
509
+ :type undo: bool
492
510
  :param all: All, Delete drivers for all elements of the array
493
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
511
+ :type all: typing.Union[bool, typing.Any]
494
512
  """
495
513
 
496
514
  ...
497
515
 
498
- def end_frame_set(override_context=None, execution_context=None, undo=None):
516
+ def end_frame_set(
517
+ override_context: typing.Union[dict, bpy.types.Context] = None,
518
+ execution_context: typing.Union[str, int] = None,
519
+ undo: bool = None,
520
+ ):
499
521
  """Set the current frame as the preview or scene end frame
500
522
 
501
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
502
- :type execution_context: typing.Optional[typing.Union[int, str]]
503
- :type undo: typing.Optional[bool]
523
+ :type override_context: typing.Union[dict, bpy.types.Context]
524
+ :type execution_context: typing.Union[str, int]
525
+ :type undo: bool
504
526
  """
505
527
 
506
528
  ...
507
529
 
508
530
  def keyframe_clear_button(
509
- override_context=None,
510
- execution_context=None,
511
- undo=None,
512
- *,
513
- all: typing.Optional[typing.Union[bool, typing.Any]] = True,
531
+ override_context: typing.Union[dict, bpy.types.Context] = None,
532
+ execution_context: typing.Union[str, int] = None,
533
+ undo: bool = None,
534
+ all: typing.Union[bool, typing.Any] = True,
514
535
  ):
515
536
  """Clear all keyframes on the currently active property
516
537
 
517
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
518
- :type execution_context: typing.Optional[typing.Union[int, str]]
519
- :type undo: typing.Optional[bool]
538
+ :type override_context: typing.Union[dict, bpy.types.Context]
539
+ :type execution_context: typing.Union[str, int]
540
+ :type undo: bool
520
541
  :param all: All, Clear keyframes from all elements of the array
521
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
542
+ :type all: typing.Union[bool, typing.Any]
522
543
  """
523
544
 
524
545
  ...
525
546
 
526
547
  def keyframe_clear_v3d(
527
- override_context=None,
528
- execution_context=None,
529
- undo=None,
530
- *,
531
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
548
+ override_context: typing.Union[dict, bpy.types.Context] = None,
549
+ execution_context: typing.Union[str, int] = None,
550
+ undo: bool = None,
551
+ confirm: typing.Union[bool, typing.Any] = True,
532
552
  ):
533
553
  """Remove all keyframe animation for selected objects
534
554
 
535
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
536
- :type execution_context: typing.Optional[typing.Union[int, str]]
537
- :type undo: typing.Optional[bool]
555
+ :type override_context: typing.Union[dict, bpy.types.Context]
556
+ :type execution_context: typing.Union[str, int]
557
+ :type undo: bool
538
558
  :param confirm: Confirm, Prompt for confirmation
539
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
559
+ :type confirm: typing.Union[bool, typing.Any]
540
560
  """
541
561
 
542
562
  ...
543
563
 
544
564
  def keyframe_delete(
545
- override_context=None,
546
- execution_context=None,
547
- undo=None,
548
- *,
549
- type: typing.Optional[typing.Union[int, str, typing.Any]] = "DEFAULT",
565
+ override_context: typing.Union[dict, bpy.types.Context] = None,
566
+ execution_context: typing.Union[str, int] = None,
567
+ undo: bool = None,
568
+ type: typing.Union[str, int, typing.Any] = "DEFAULT",
550
569
  ):
551
570
  """Delete keyframes on the current frame for all properties in the specified Keying Set
552
571
 
553
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
554
- :type execution_context: typing.Optional[typing.Union[int, str]]
555
- :type undo: typing.Optional[bool]
572
+ :type override_context: typing.Union[dict, bpy.types.Context]
573
+ :type execution_context: typing.Union[str, int]
574
+ :type undo: bool
556
575
  :param type: Keying Set, The Keying Set to use
557
- :type type: typing.Optional[typing.Union[int, str, typing.Any]]
576
+ :type type: typing.Union[str, int, typing.Any]
558
577
  """
559
578
 
560
579
  ...
561
580
 
562
581
  def keyframe_delete_button(
563
- override_context=None,
564
- execution_context=None,
565
- undo=None,
566
- *,
567
- all: typing.Optional[typing.Union[bool, typing.Any]] = True,
582
+ override_context: typing.Union[dict, bpy.types.Context] = None,
583
+ execution_context: typing.Union[str, int] = None,
584
+ undo: bool = None,
585
+ all: typing.Union[bool, typing.Any] = True,
568
586
  ):
569
587
  """Delete current keyframe of current UI-active property
570
588
 
571
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
572
- :type execution_context: typing.Optional[typing.Union[int, str]]
573
- :type undo: typing.Optional[bool]
589
+ :type override_context: typing.Union[dict, bpy.types.Context]
590
+ :type execution_context: typing.Union[str, int]
591
+ :type undo: bool
574
592
  :param all: All, Delete keyframes from all elements of the array
575
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
593
+ :type all: typing.Union[bool, typing.Any]
576
594
  """
577
595
 
578
596
  ...
579
597
 
580
598
  def keyframe_delete_by_name(
581
- override_context=None,
582
- execution_context=None,
583
- undo=None,
584
- *,
599
+ override_context: typing.Union[dict, bpy.types.Context] = None,
600
+ execution_context: typing.Union[str, int] = None,
601
+ undo: bool = None,
585
602
  type: typing.Union[str, typing.Any] = "",
586
603
  ):
587
604
  """Alternate access to 'Delete Keyframe' for keymaps to use
588
605
 
589
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
590
- :type execution_context: typing.Optional[typing.Union[int, str]]
591
- :type undo: typing.Optional[bool]
606
+ :type override_context: typing.Union[dict, bpy.types.Context]
607
+ :type execution_context: typing.Union[str, int]
608
+ :type undo: bool
592
609
  :param type: Keying Set, The Keying Set to use
593
610
  :type type: typing.Union[str, typing.Any]
594
611
  """
@@ -596,71 +613,67 @@ def keyframe_delete_by_name(
596
613
  ...
597
614
 
598
615
  def keyframe_delete_v3d(
599
- override_context=None,
600
- execution_context=None,
601
- undo=None,
602
- *,
603
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
616
+ override_context: typing.Union[dict, bpy.types.Context] = None,
617
+ execution_context: typing.Union[str, int] = None,
618
+ undo: bool = None,
619
+ confirm: typing.Union[bool, typing.Any] = True,
604
620
  ):
605
621
  """Remove keyframes on current frame for selected objects and bones
606
622
 
607
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
608
- :type execution_context: typing.Optional[typing.Union[int, str]]
609
- :type undo: typing.Optional[bool]
623
+ :type override_context: typing.Union[dict, bpy.types.Context]
624
+ :type execution_context: typing.Union[str, int]
625
+ :type undo: bool
610
626
  :param confirm: Confirm, Prompt for confirmation
611
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
627
+ :type confirm: typing.Union[bool, typing.Any]
612
628
  """
613
629
 
614
630
  ...
615
631
 
616
632
  def keyframe_insert(
617
- override_context=None,
618
- execution_context=None,
619
- undo=None,
620
- *,
621
- type: typing.Optional[typing.Union[int, str, typing.Any]] = "DEFAULT",
633
+ override_context: typing.Union[dict, bpy.types.Context] = None,
634
+ execution_context: typing.Union[str, int] = None,
635
+ undo: bool = None,
636
+ type: typing.Union[str, int, typing.Any] = "DEFAULT",
622
637
  ):
623
638
  """Insert keyframes on the current frame using either the active keying set, or the user preferences if no keying set is active
624
639
 
625
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
626
- :type execution_context: typing.Optional[typing.Union[int, str]]
627
- :type undo: typing.Optional[bool]
640
+ :type override_context: typing.Union[dict, bpy.types.Context]
641
+ :type execution_context: typing.Union[str, int]
642
+ :type undo: bool
628
643
  :param type: Keying Set, The Keying Set to use
629
- :type type: typing.Optional[typing.Union[int, str, typing.Any]]
644
+ :type type: typing.Union[str, int, typing.Any]
630
645
  """
631
646
 
632
647
  ...
633
648
 
634
649
  def keyframe_insert_button(
635
- override_context=None,
636
- execution_context=None,
637
- undo=None,
638
- *,
639
- all: typing.Optional[typing.Union[bool, typing.Any]] = True,
650
+ override_context: typing.Union[dict, bpy.types.Context] = None,
651
+ execution_context: typing.Union[str, int] = None,
652
+ undo: bool = None,
653
+ all: typing.Union[bool, typing.Any] = True,
640
654
  ):
641
655
  """Insert a keyframe for current UI-active property
642
656
 
643
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
644
- :type execution_context: typing.Optional[typing.Union[int, str]]
645
- :type undo: typing.Optional[bool]
657
+ :type override_context: typing.Union[dict, bpy.types.Context]
658
+ :type execution_context: typing.Union[str, int]
659
+ :type undo: bool
646
660
  :param all: All, Insert a keyframe for all element of the array
647
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
661
+ :type all: typing.Union[bool, typing.Any]
648
662
  """
649
663
 
650
664
  ...
651
665
 
652
666
  def keyframe_insert_by_name(
653
- override_context=None,
654
- execution_context=None,
655
- undo=None,
656
- *,
667
+ override_context: typing.Union[dict, bpy.types.Context] = None,
668
+ execution_context: typing.Union[str, int] = None,
669
+ undo: bool = None,
657
670
  type: typing.Union[str, typing.Any] = "",
658
671
  ):
659
672
  """Alternate access to 'Insert Keyframe' for keymaps to use
660
673
 
661
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
662
- :type execution_context: typing.Optional[typing.Union[int, str]]
663
- :type undo: typing.Optional[bool]
674
+ :type override_context: typing.Union[dict, bpy.types.Context]
675
+ :type execution_context: typing.Union[str, int]
676
+ :type undo: bool
664
677
  :param type: Keying Set, The Keying Set to use
665
678
  :type type: typing.Union[str, typing.Any]
666
679
  """
@@ -668,234 +681,259 @@ def keyframe_insert_by_name(
668
681
  ...
669
682
 
670
683
  def keyframe_insert_menu(
671
- override_context=None,
672
- execution_context=None,
673
- undo=None,
674
- *,
675
- type: typing.Optional[typing.Union[int, str, typing.Any]] = "DEFAULT",
676
- always_prompt: typing.Optional[typing.Union[bool, typing.Any]] = False,
684
+ override_context: typing.Union[dict, bpy.types.Context] = None,
685
+ execution_context: typing.Union[str, int] = None,
686
+ undo: bool = None,
687
+ type: typing.Union[str, int, typing.Any] = "DEFAULT",
688
+ always_prompt: typing.Union[bool, typing.Any] = False,
677
689
  ):
678
690
  """Insert Keyframes for specified Keying Set, with menu of available Keying Sets if undefined
679
691
 
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]
692
+ :type override_context: typing.Union[dict, bpy.types.Context]
693
+ :type execution_context: typing.Union[str, int]
694
+ :type undo: bool
683
695
  :param type: Keying Set, The Keying Set to use
684
- :type type: typing.Optional[typing.Union[int, str, typing.Any]]
696
+ :type type: typing.Union[str, int, typing.Any]
685
697
  :param always_prompt: Always Show Menu
686
- :type always_prompt: typing.Optional[typing.Union[bool, typing.Any]]
698
+ :type always_prompt: typing.Union[bool, typing.Any]
687
699
  """
688
700
 
689
701
  ...
690
702
 
691
703
  def keying_set_active_set(
692
- override_context=None,
693
- execution_context=None,
694
- undo=None,
695
- *,
696
- type: typing.Optional[typing.Union[int, str, typing.Any]] = "DEFAULT",
704
+ override_context: typing.Union[dict, bpy.types.Context] = None,
705
+ execution_context: typing.Union[str, int] = None,
706
+ undo: bool = None,
707
+ type: typing.Union[str, int, typing.Any] = "DEFAULT",
697
708
  ):
698
709
  """Set a new active keying set
699
710
 
700
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
701
- :type execution_context: typing.Optional[typing.Union[int, str]]
702
- :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
703
714
  :param type: Keying Set, The Keying Set to use
704
- :type type: typing.Optional[typing.Union[int, str, typing.Any]]
715
+ :type type: typing.Union[str, int, typing.Any]
705
716
  """
706
717
 
707
718
  ...
708
719
 
709
- def keying_set_add(override_context=None, execution_context=None, undo=None):
720
+ def keying_set_add(
721
+ override_context: typing.Union[dict, bpy.types.Context] = None,
722
+ execution_context: typing.Union[str, int] = None,
723
+ undo: bool = None,
724
+ ):
710
725
  """Add a new (empty) keying set to the active Scene
711
726
 
712
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
713
- :type execution_context: typing.Optional[typing.Union[int, str]]
714
- :type undo: typing.Optional[bool]
727
+ :type override_context: typing.Union[dict, bpy.types.Context]
728
+ :type execution_context: typing.Union[str, int]
729
+ :type undo: bool
715
730
  """
716
731
 
717
732
  ...
718
733
 
719
734
  def keying_set_export(
720
- override_context=None,
721
- execution_context=None,
722
- undo=None,
723
- *,
735
+ override_context: typing.Union[dict, bpy.types.Context] = None,
736
+ execution_context: typing.Union[str, int] = None,
737
+ undo: bool = None,
724
738
  filepath: typing.Union[str, typing.Any] = "",
725
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
726
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = True,
727
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = True,
739
+ filter_folder: typing.Union[bool, typing.Any] = True,
740
+ filter_text: typing.Union[bool, typing.Any] = True,
741
+ filter_python: typing.Union[bool, typing.Any] = True,
728
742
  ):
729
743
  """Export Keying Set to a Python script
730
744
 
731
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
732
- :type execution_context: typing.Optional[typing.Union[int, str]]
733
- :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
734
748
  :param filepath: filepath
735
749
  :type filepath: typing.Union[str, typing.Any]
736
750
  :param filter_folder: Filter folders
737
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
751
+ :type filter_folder: typing.Union[bool, typing.Any]
738
752
  :param filter_text: Filter text
739
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
753
+ :type filter_text: typing.Union[bool, typing.Any]
740
754
  :param filter_python: Filter Python
741
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
755
+ :type filter_python: typing.Union[bool, typing.Any]
742
756
  """
743
757
 
744
758
  ...
745
759
 
746
- def keying_set_path_add(override_context=None, execution_context=None, undo=None):
760
+ def keying_set_path_add(
761
+ override_context: typing.Union[dict, bpy.types.Context] = None,
762
+ execution_context: typing.Union[str, int] = None,
763
+ undo: bool = None,
764
+ ):
747
765
  """Add empty path to active keying set
748
766
 
749
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
750
- :type execution_context: typing.Optional[typing.Union[int, str]]
751
- :type undo: typing.Optional[bool]
767
+ :type override_context: typing.Union[dict, bpy.types.Context]
768
+ :type execution_context: typing.Union[str, int]
769
+ :type undo: bool
752
770
  """
753
771
 
754
772
  ...
755
773
 
756
- def keying_set_path_remove(override_context=None, execution_context=None, undo=None):
774
+ def keying_set_path_remove(
775
+ override_context: typing.Union[dict, bpy.types.Context] = None,
776
+ execution_context: typing.Union[str, int] = None,
777
+ undo: bool = None,
778
+ ):
757
779
  """Remove active Path from active keying set
758
780
 
759
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
760
- :type execution_context: typing.Optional[typing.Union[int, str]]
761
- :type undo: typing.Optional[bool]
781
+ :type override_context: typing.Union[dict, bpy.types.Context]
782
+ :type execution_context: typing.Union[str, int]
783
+ :type undo: bool
762
784
  """
763
785
 
764
786
  ...
765
787
 
766
- def keying_set_remove(override_context=None, execution_context=None, undo=None):
788
+ def keying_set_remove(
789
+ override_context: typing.Union[dict, bpy.types.Context] = None,
790
+ execution_context: typing.Union[str, int] = None,
791
+ undo: bool = None,
792
+ ):
767
793
  """Remove the active keying set
768
794
 
769
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
770
- :type execution_context: typing.Optional[typing.Union[int, str]]
771
- :type undo: typing.Optional[bool]
795
+ :type override_context: typing.Union[dict, bpy.types.Context]
796
+ :type execution_context: typing.Union[str, int]
797
+ :type undo: bool
772
798
  """
773
799
 
774
800
  ...
775
801
 
776
802
  def keyingset_button_add(
777
- override_context=None,
778
- execution_context=None,
779
- undo=None,
780
- *,
781
- all: typing.Optional[typing.Union[bool, typing.Any]] = True,
803
+ override_context: typing.Union[dict, bpy.types.Context] = None,
804
+ execution_context: typing.Union[str, int] = None,
805
+ undo: bool = None,
806
+ all: typing.Union[bool, typing.Any] = True,
782
807
  ):
783
808
  """Add current UI-active property to current keying set
784
809
 
785
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
786
- :type execution_context: typing.Optional[typing.Union[int, str]]
787
- :type undo: typing.Optional[bool]
810
+ :type override_context: typing.Union[dict, bpy.types.Context]
811
+ :type execution_context: typing.Union[str, int]
812
+ :type undo: bool
788
813
  :param all: All, Add all elements of the array to a Keying Set
789
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
814
+ :type all: typing.Union[bool, typing.Any]
790
815
  """
791
816
 
792
817
  ...
793
818
 
794
- def keyingset_button_remove(override_context=None, execution_context=None, undo=None):
819
+ def keyingset_button_remove(
820
+ override_context: typing.Union[dict, bpy.types.Context] = None,
821
+ execution_context: typing.Union[str, int] = None,
822
+ undo: bool = None,
823
+ ):
795
824
  """Remove current UI-active property from current keying set
796
825
 
797
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
798
- :type execution_context: typing.Optional[typing.Union[int, str]]
799
- :type undo: typing.Optional[bool]
826
+ :type override_context: typing.Union[dict, bpy.types.Context]
827
+ :type execution_context: typing.Union[str, int]
828
+ :type undo: bool
800
829
  """
801
830
 
802
831
  ...
803
832
 
804
- def paste_driver_button(override_context=None, execution_context=None, undo=None):
833
+ def paste_driver_button(
834
+ override_context: typing.Union[dict, bpy.types.Context] = None,
835
+ execution_context: typing.Union[str, int] = None,
836
+ undo: bool = None,
837
+ ):
805
838
  """Paste the driver in the internal clipboard to the highlighted button
806
839
 
807
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
808
- :type execution_context: typing.Optional[typing.Union[int, str]]
809
- :type undo: typing.Optional[bool]
840
+ :type override_context: typing.Union[dict, bpy.types.Context]
841
+ :type execution_context: typing.Union[str, int]
842
+ :type undo: bool
810
843
  """
811
844
 
812
845
  ...
813
846
 
814
- def previewrange_clear(override_context=None, execution_context=None, undo=None):
847
+ def previewrange_clear(
848
+ override_context: typing.Union[dict, bpy.types.Context] = None,
849
+ execution_context: typing.Union[str, int] = None,
850
+ undo: bool = None,
851
+ ):
815
852
  """Clear preview range
816
853
 
817
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
818
- :type execution_context: typing.Optional[typing.Union[int, str]]
819
- :type undo: typing.Optional[bool]
854
+ :type override_context: typing.Union[dict, bpy.types.Context]
855
+ :type execution_context: typing.Union[str, int]
856
+ :type undo: bool
820
857
  """
821
858
 
822
859
  ...
823
860
 
824
861
  def previewrange_set(
825
- override_context=None,
826
- execution_context=None,
827
- undo=None,
828
- *,
829
- xmin: typing.Optional[typing.Any] = 0,
830
- xmax: typing.Optional[typing.Any] = 0,
831
- ymin: typing.Optional[typing.Any] = 0,
832
- ymax: typing.Optional[typing.Any] = 0,
833
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
862
+ override_context: typing.Union[dict, bpy.types.Context] = None,
863
+ execution_context: typing.Union[str, int] = None,
864
+ undo: bool = None,
865
+ xmin: typing.Any = 0,
866
+ xmax: typing.Any = 0,
867
+ ymin: typing.Any = 0,
868
+ ymax: typing.Any = 0,
869
+ wait_for_input: typing.Union[bool, typing.Any] = True,
834
870
  ):
835
871
  """Interactively define frame range used for playback
836
872
 
837
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
838
- :type execution_context: typing.Optional[typing.Union[int, str]]
839
- :type undo: typing.Optional[bool]
873
+ :type override_context: typing.Union[dict, bpy.types.Context]
874
+ :type execution_context: typing.Union[str, int]
875
+ :type undo: bool
840
876
  :param xmin: X Min
841
- :type xmin: typing.Optional[typing.Any]
877
+ :type xmin: typing.Any
842
878
  :param xmax: X Max
843
- :type xmax: typing.Optional[typing.Any]
879
+ :type xmax: typing.Any
844
880
  :param ymin: Y Min
845
- :type ymin: typing.Optional[typing.Any]
881
+ :type ymin: typing.Any
846
882
  :param ymax: Y Max
847
- :type ymax: typing.Optional[typing.Any]
883
+ :type ymax: typing.Any
848
884
  :param wait_for_input: Wait for Input
849
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
885
+ :type wait_for_input: typing.Union[bool, typing.Any]
850
886
  """
851
887
 
852
888
  ...
853
889
 
854
- def start_frame_set(override_context=None, execution_context=None, undo=None):
890
+ def start_frame_set(
891
+ override_context: typing.Union[dict, bpy.types.Context] = None,
892
+ execution_context: typing.Union[str, int] = None,
893
+ undo: bool = None,
894
+ ):
855
895
  """Set the current frame as the preview or scene start frame
856
896
 
857
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
858
- :type execution_context: typing.Optional[typing.Union[int, str]]
859
- :type undo: typing.Optional[bool]
897
+ :type override_context: typing.Union[dict, bpy.types.Context]
898
+ :type execution_context: typing.Union[str, int]
899
+ :type undo: bool
860
900
  """
861
901
 
862
902
  ...
863
903
 
864
904
  def update_animated_transform_constraints(
865
- override_context=None,
866
- execution_context=None,
867
- undo=None,
868
- *,
869
- use_convert_to_radians: typing.Optional[typing.Union[bool, typing.Any]] = True,
905
+ override_context: typing.Union[dict, bpy.types.Context] = None,
906
+ execution_context: typing.Union[str, int] = None,
907
+ undo: bool = None,
908
+ use_convert_to_radians: typing.Union[bool, typing.Any] = True,
870
909
  ):
871
910
  """Update f-curves/drivers affecting Transform constraints (use it with files from 2.70 and earlier)
872
911
 
873
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
874
- :type execution_context: typing.Optional[typing.Union[int, str]]
875
- :type undo: typing.Optional[bool]
912
+ :type override_context: typing.Union[dict, bpy.types.Context]
913
+ :type execution_context: typing.Union[str, int]
914
+ :type undo: bool
876
915
  :param use_convert_to_radians: Convert to Radians, Convert f-curves/drivers affecting rotations to radians.Warning: Use this only once
877
- :type use_convert_to_radians: typing.Optional[typing.Union[bool, typing.Any]]
916
+ :type use_convert_to_radians: typing.Union[bool, typing.Any]
878
917
  """
879
918
 
880
919
  ...
881
920
 
882
921
  def view_curve_in_graph_editor(
883
- override_context=None,
884
- execution_context=None,
885
- undo=None,
886
- *,
887
- all: typing.Optional[typing.Union[bool, typing.Any]] = False,
888
- isolate: typing.Optional[typing.Union[bool, typing.Any]] = False,
922
+ override_context: typing.Union[dict, bpy.types.Context] = None,
923
+ execution_context: typing.Union[str, int] = None,
924
+ undo: bool = None,
925
+ all: typing.Union[bool, typing.Any] = False,
926
+ isolate: typing.Union[bool, typing.Any] = False,
889
927
  ):
890
928
  """Frame the property under the cursor in the Graph Editor
891
929
 
892
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
893
- :type execution_context: typing.Optional[typing.Union[int, str]]
894
- :type undo: typing.Optional[bool]
930
+ :type override_context: typing.Union[dict, bpy.types.Context]
931
+ :type execution_context: typing.Union[str, int]
932
+ :type undo: bool
895
933
  :param all: Show All, Frame the whole array property instead of only the index under the cursor
896
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
934
+ :type all: typing.Union[bool, typing.Any]
897
935
  :param isolate: Isolate, Hides all F-Curves other than the ones being framed
898
- :type isolate: typing.Optional[typing.Union[bool, typing.Any]]
936
+ :type isolate: typing.Union[bool, typing.Any]
899
937
  """
900
938
 
901
939
  ...