fake-bpy-module 20240321__py3-none-any.whl → 20240324__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +646 -823
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86446 -87424
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240324.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/top_level.txt +0 -0
@@ -5,191 +5,167 @@ 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 clean(
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
- threshold: typing.Optional[typing.Any] = 0.001,
31
- channels: typing.Optional[typing.Union[bool, typing.Any]] = False,
22
+ override_context: typing.Union[dict, bpy.types.Context] = None,
23
+ execution_context: typing.Union[str, int] = None,
24
+ undo: bool = None,
25
+ threshold: typing.Any = 0.001,
26
+ channels: typing.Union[bool, typing.Any] = False,
32
27
  ):
33
28
  """Simplify F-Curves by removing closely spaced keyframes
34
29
 
35
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
36
- :type execution_context: typing.Optional[typing.Union[int, str]]
37
- :type undo: typing.Optional[bool]
30
+ :type override_context: typing.Union[dict, bpy.types.Context]
31
+ :type execution_context: typing.Union[str, int]
32
+ :type undo: bool
38
33
  :param threshold: Threshold
39
- :type threshold: typing.Optional[typing.Any]
34
+ :type threshold: typing.Any
40
35
  :param channels: Channels
41
- :type channels: typing.Optional[typing.Union[bool, typing.Any]]
36
+ :type channels: typing.Union[bool, typing.Any]
42
37
  """
43
38
 
44
39
  ...
45
40
 
46
41
  def clickselect(
47
- override_context: typing.Optional[
48
- typing.Union["bpy.types.Context", typing.Dict]
49
- ] = None,
50
- execution_context: typing.Optional[typing.Union[int, str]] = None,
51
- undo: typing.Optional[bool] = None,
52
- *,
53
- wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]] = False,
54
- mouse_x: typing.Optional[typing.Any] = 0,
55
- mouse_y: typing.Optional[typing.Any] = 0,
56
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
57
- deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
58
- column: typing.Optional[typing.Union[bool, typing.Any]] = False,
59
- channel: typing.Optional[typing.Union[bool, typing.Any]] = False,
42
+ override_context: typing.Union[dict, bpy.types.Context] = None,
43
+ execution_context: typing.Union[str, int] = None,
44
+ undo: bool = None,
45
+ wait_to_deselect_others: typing.Union[bool, typing.Any] = False,
46
+ mouse_x: typing.Any = 0,
47
+ mouse_y: typing.Any = 0,
48
+ extend: typing.Union[bool, typing.Any] = False,
49
+ deselect_all: typing.Union[bool, typing.Any] = False,
50
+ column: typing.Union[bool, typing.Any] = False,
51
+ channel: typing.Union[bool, typing.Any] = False,
60
52
  ):
61
53
  """Select keyframes by clicking on them
62
54
 
63
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
64
- :type execution_context: typing.Optional[typing.Union[int, str]]
65
- :type undo: typing.Optional[bool]
55
+ :type override_context: typing.Union[dict, bpy.types.Context]
56
+ :type execution_context: typing.Union[str, int]
57
+ :type undo: bool
66
58
  :param wait_to_deselect_others: Wait to Deselect Others
67
- :type wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]]
59
+ :type wait_to_deselect_others: typing.Union[bool, typing.Any]
68
60
  :param mouse_x: Mouse X
69
- :type mouse_x: typing.Optional[typing.Any]
61
+ :type mouse_x: typing.Any
70
62
  :param mouse_y: Mouse Y
71
- :type mouse_y: typing.Optional[typing.Any]
63
+ :type mouse_y: typing.Any
72
64
  :param extend: Extend Select, Toggle keyframe selection instead of leaving newly selected keyframes only
73
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
65
+ :type extend: typing.Union[bool, typing.Any]
74
66
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
75
- :type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
67
+ :type deselect_all: typing.Union[bool, typing.Any]
76
68
  :param column: Column Select, Select all keyframes that occur on the same frame as the one under the mouse
77
- :type column: typing.Optional[typing.Union[bool, typing.Any]]
69
+ :type column: typing.Union[bool, typing.Any]
78
70
  :param channel: Only Channel, Select all the keyframes in the channel under the mouse
79
- :type channel: typing.Optional[typing.Union[bool, typing.Any]]
71
+ :type channel: typing.Union[bool, typing.Any]
80
72
  """
81
73
 
82
74
  ...
83
75
 
84
76
  def copy(
85
- override_context: typing.Optional[
86
- typing.Union["bpy.types.Context", typing.Dict]
87
- ] = None,
88
- execution_context: typing.Optional[typing.Union[int, str]] = None,
89
- undo: typing.Optional[bool] = None,
77
+ override_context: typing.Union[dict, bpy.types.Context] = None,
78
+ execution_context: typing.Union[str, int] = None,
79
+ undo: bool = None,
90
80
  ):
91
81
  """Copy selected keyframes to the internal clipboard
92
82
 
93
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
94
- :type execution_context: typing.Optional[typing.Union[int, str]]
95
- :type undo: typing.Optional[bool]
83
+ :type override_context: typing.Union[dict, bpy.types.Context]
84
+ :type execution_context: typing.Union[str, int]
85
+ :type undo: bool
96
86
  """
97
87
 
98
88
  ...
99
89
 
100
90
  def delete(
101
- override_context: typing.Optional[
102
- typing.Union["bpy.types.Context", typing.Dict]
103
- ] = None,
104
- execution_context: typing.Optional[typing.Union[int, str]] = None,
105
- undo: typing.Optional[bool] = None,
106
- *,
107
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
91
+ override_context: typing.Union[dict, bpy.types.Context] = None,
92
+ execution_context: typing.Union[str, int] = None,
93
+ undo: bool = None,
94
+ confirm: typing.Union[bool, typing.Any] = True,
108
95
  ):
109
96
  """Remove all selected keyframes
110
97
 
111
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
112
- :type execution_context: typing.Optional[typing.Union[int, str]]
113
- :type undo: typing.Optional[bool]
98
+ :type override_context: typing.Union[dict, bpy.types.Context]
99
+ :type execution_context: typing.Union[str, int]
100
+ :type undo: bool
114
101
  :param confirm: Confirm, Prompt for confirmation
115
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
102
+ :type confirm: typing.Union[bool, typing.Any]
116
103
  """
117
104
 
118
105
  ...
119
106
 
120
107
  def duplicate(
121
- override_context: typing.Optional[
122
- typing.Union["bpy.types.Context", typing.Dict]
123
- ] = None,
124
- execution_context: typing.Optional[typing.Union[int, str]] = None,
125
- undo: typing.Optional[bool] = None,
108
+ override_context: typing.Union[dict, bpy.types.Context] = None,
109
+ execution_context: typing.Union[str, int] = None,
110
+ undo: bool = None,
126
111
  ):
127
112
  """Make a copy of all selected keyframes
128
113
 
129
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
130
- :type execution_context: typing.Optional[typing.Union[int, str]]
131
- :type undo: typing.Optional[bool]
114
+ :type override_context: typing.Union[dict, bpy.types.Context]
115
+ :type execution_context: typing.Union[str, int]
116
+ :type undo: bool
132
117
  """
133
118
 
134
119
  ...
135
120
 
136
121
  def duplicate_move(
137
- override_context: typing.Optional[
138
- typing.Union["bpy.types.Context", typing.Dict]
139
- ] = None,
140
- execution_context: typing.Optional[typing.Union[int, str]] = None,
141
- undo: typing.Optional[bool] = None,
142
- *,
143
- ACTION_OT_duplicate: typing.Optional["duplicate"] = None,
144
- TRANSFORM_OT_transform: typing.Optional["bpy.ops.transform.transform"] = None,
122
+ override_context: typing.Union[dict, bpy.types.Context] = None,
123
+ execution_context: typing.Union[str, int] = None,
124
+ undo: bool = None,
125
+ ACTION_OT_duplicate: duplicate = None,
126
+ TRANSFORM_OT_transform: bpy.ops.transform.transform = None,
145
127
  ):
146
128
  """Make a copy of all selected keyframes and move them
147
129
 
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]
130
+ :type override_context: typing.Union[dict, bpy.types.Context]
131
+ :type execution_context: typing.Union[str, int]
132
+ :type undo: bool
151
133
  :param ACTION_OT_duplicate: Duplicate Keyframes, Make a copy of all selected keyframes
152
- :type ACTION_OT_duplicate: typing.Optional['duplicate']
134
+ :type ACTION_OT_duplicate: duplicate
153
135
  :param TRANSFORM_OT_transform: Transform, Transform selected items by mode type
154
- :type TRANSFORM_OT_transform: typing.Optional['bpy.ops.transform.transform']
136
+ :type TRANSFORM_OT_transform: bpy.ops.transform.transform
155
137
  """
156
138
 
157
139
  ...
158
140
 
159
141
  def easing_type(
160
- override_context: typing.Optional[
161
- typing.Union["bpy.types.Context", typing.Dict]
162
- ] = None,
163
- execution_context: typing.Optional[typing.Union[int, str]] = None,
164
- undo: typing.Optional[bool] = None,
165
- *,
166
- type: typing.Optional[typing.Any] = "AUTO",
142
+ override_context: typing.Union[dict, bpy.types.Context] = None,
143
+ execution_context: typing.Union[str, int] = None,
144
+ undo: bool = None,
145
+ type: typing.Any = "AUTO",
167
146
  ):
168
147
  """Set easing type for the F-Curve segments starting from the selected keyframes
169
148
 
170
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
171
- :type execution_context: typing.Optional[typing.Union[int, str]]
172
- :type undo: typing.Optional[bool]
149
+ :type override_context: typing.Union[dict, bpy.types.Context]
150
+ :type execution_context: typing.Union[str, int]
151
+ :type undo: bool
173
152
  :param type: Type
174
- :type type: typing.Optional[typing.Any]
153
+ :type type: typing.Any
175
154
  """
176
155
 
177
156
  ...
178
157
 
179
158
  def extrapolation_type(
180
- override_context: typing.Optional[
181
- typing.Union["bpy.types.Context", typing.Dict]
182
- ] = None,
183
- execution_context: typing.Optional[typing.Union[int, str]] = None,
184
- undo: typing.Optional[bool] = None,
185
- *,
186
- type: typing.Optional[typing.Any] = "CONSTANT",
159
+ override_context: typing.Union[dict, bpy.types.Context] = None,
160
+ execution_context: typing.Union[str, int] = None,
161
+ undo: bool = None,
162
+ type: typing.Any = "CONSTANT",
187
163
  ):
188
164
  """Set extrapolation mode for selected F-Curves
189
165
 
190
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
191
- :type execution_context: typing.Optional[typing.Union[int, str]]
192
- :type undo: typing.Optional[bool]
166
+ :type override_context: typing.Union[dict, bpy.types.Context]
167
+ :type execution_context: typing.Union[str, int]
168
+ :type undo: bool
193
169
  :param type: Type
194
170
 
195
171
  CONSTANT
@@ -203,169 +179,146 @@ def extrapolation_type(
203
179
 
204
180
  CLEAR_CYCLIC
205
181
  Clear Cyclic (F-Modifier) -- Remove Cycles F-Modifier if not needed anymore.
206
- :type type: typing.Optional[typing.Any]
182
+ :type type: typing.Any
207
183
  """
208
184
 
209
185
  ...
210
186
 
211
187
  def frame_jump(
212
- override_context: typing.Optional[
213
- typing.Union["bpy.types.Context", typing.Dict]
214
- ] = None,
215
- execution_context: typing.Optional[typing.Union[int, str]] = None,
216
- undo: typing.Optional[bool] = None,
188
+ override_context: typing.Union[dict, bpy.types.Context] = None,
189
+ execution_context: typing.Union[str, int] = None,
190
+ undo: bool = None,
217
191
  ):
218
192
  """Set the current frame to the average frame value of selected keyframes
219
193
 
220
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
221
- :type execution_context: typing.Optional[typing.Union[int, str]]
222
- :type undo: typing.Optional[bool]
194
+ :type override_context: typing.Union[dict, bpy.types.Context]
195
+ :type execution_context: typing.Union[str, int]
196
+ :type undo: bool
223
197
  """
224
198
 
225
199
  ...
226
200
 
227
201
  def handle_type(
228
- override_context: typing.Optional[
229
- typing.Union["bpy.types.Context", typing.Dict]
230
- ] = None,
231
- execution_context: typing.Optional[typing.Union[int, str]] = None,
232
- undo: typing.Optional[bool] = None,
233
- *,
234
- type: typing.Optional[typing.Any] = "FREE",
202
+ override_context: typing.Union[dict, bpy.types.Context] = None,
203
+ execution_context: typing.Union[str, int] = None,
204
+ undo: bool = None,
205
+ type: typing.Any = "FREE",
235
206
  ):
236
207
  """Set type of handle for selected keyframes
237
208
 
238
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
239
- :type execution_context: typing.Optional[typing.Union[int, str]]
240
- :type undo: typing.Optional[bool]
209
+ :type override_context: typing.Union[dict, bpy.types.Context]
210
+ :type execution_context: typing.Union[str, int]
211
+ :type undo: bool
241
212
  :param type: Type
242
- :type type: typing.Optional[typing.Any]
213
+ :type type: typing.Any
243
214
  """
244
215
 
245
216
  ...
246
217
 
247
218
  def interpolation_type(
248
- override_context: typing.Optional[
249
- typing.Union["bpy.types.Context", typing.Dict]
250
- ] = None,
251
- execution_context: typing.Optional[typing.Union[int, str]] = None,
252
- undo: typing.Optional[bool] = None,
253
- *,
254
- type: typing.Optional[typing.Any] = "CONSTANT",
219
+ override_context: typing.Union[dict, bpy.types.Context] = None,
220
+ execution_context: typing.Union[str, int] = None,
221
+ undo: bool = None,
222
+ type: typing.Any = "CONSTANT",
255
223
  ):
256
224
  """Set interpolation mode for the F-Curve segments starting from the selected keyframes
257
225
 
258
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
259
- :type execution_context: typing.Optional[typing.Union[int, str]]
260
- :type undo: typing.Optional[bool]
226
+ :type override_context: typing.Union[dict, bpy.types.Context]
227
+ :type execution_context: typing.Union[str, int]
228
+ :type undo: bool
261
229
  :param type: Type
262
- :type type: typing.Optional[typing.Any]
230
+ :type type: typing.Any
263
231
  """
264
232
 
265
233
  ...
266
234
 
267
235
  def keyframe_insert(
268
- override_context: typing.Optional[
269
- typing.Union["bpy.types.Context", typing.Dict]
270
- ] = None,
271
- execution_context: typing.Optional[typing.Union[int, str]] = None,
272
- undo: typing.Optional[bool] = None,
273
- *,
274
- type: typing.Optional[typing.Any] = "ALL",
236
+ override_context: typing.Union[dict, bpy.types.Context] = None,
237
+ execution_context: typing.Union[str, int] = None,
238
+ undo: bool = None,
239
+ type: typing.Any = "ALL",
275
240
  ):
276
241
  """Insert keyframes for the specified channels
277
242
 
278
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
279
- :type execution_context: typing.Optional[typing.Union[int, str]]
280
- :type undo: typing.Optional[bool]
243
+ :type override_context: typing.Union[dict, bpy.types.Context]
244
+ :type execution_context: typing.Union[str, int]
245
+ :type undo: bool
281
246
  :param type: Type
282
- :type type: typing.Optional[typing.Any]
247
+ :type type: typing.Any
283
248
  """
284
249
 
285
250
  ...
286
251
 
287
252
  def keyframe_type(
288
- override_context: typing.Optional[
289
- typing.Union["bpy.types.Context", typing.Dict]
290
- ] = None,
291
- execution_context: typing.Optional[typing.Union[int, str]] = None,
292
- undo: typing.Optional[bool] = None,
293
- *,
294
- type: typing.Optional[typing.Any] = "KEYFRAME",
253
+ override_context: typing.Union[dict, bpy.types.Context] = None,
254
+ execution_context: typing.Union[str, int] = None,
255
+ undo: bool = None,
256
+ type: typing.Any = "KEYFRAME",
295
257
  ):
296
258
  """Set type of keyframe for the selected keyframes
297
259
 
298
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
299
- :type execution_context: typing.Optional[typing.Union[int, str]]
300
- :type undo: typing.Optional[bool]
260
+ :type override_context: typing.Union[dict, bpy.types.Context]
261
+ :type execution_context: typing.Union[str, int]
262
+ :type undo: bool
301
263
  :param type: Type
302
- :type type: typing.Optional[typing.Any]
264
+ :type type: typing.Any
303
265
  """
304
266
 
305
267
  ...
306
268
 
307
269
  def layer_next(
308
- override_context: typing.Optional[
309
- typing.Union["bpy.types.Context", typing.Dict]
310
- ] = None,
311
- execution_context: typing.Optional[typing.Union[int, str]] = None,
312
- undo: typing.Optional[bool] = None,
270
+ override_context: typing.Union[dict, bpy.types.Context] = None,
271
+ execution_context: typing.Union[str, int] = None,
272
+ undo: bool = None,
313
273
  ):
314
274
  """Switch to editing action in animation layer above the current action in the NLA Stack
315
275
 
316
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
317
- :type execution_context: typing.Optional[typing.Union[int, str]]
318
- :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
319
279
  """
320
280
 
321
281
  ...
322
282
 
323
283
  def layer_prev(
324
- override_context: typing.Optional[
325
- typing.Union["bpy.types.Context", typing.Dict]
326
- ] = None,
327
- execution_context: typing.Optional[typing.Union[int, str]] = None,
328
- undo: typing.Optional[bool] = None,
284
+ override_context: typing.Union[dict, bpy.types.Context] = None,
285
+ execution_context: typing.Union[str, int] = None,
286
+ undo: bool = None,
329
287
  ):
330
288
  """Switch to editing action in animation layer below the current action in the NLA Stack
331
289
 
332
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
333
- :type execution_context: typing.Optional[typing.Union[int, str]]
334
- :type undo: typing.Optional[bool]
290
+ :type override_context: typing.Union[dict, bpy.types.Context]
291
+ :type execution_context: typing.Union[str, int]
292
+ :type undo: bool
335
293
  """
336
294
 
337
295
  ...
338
296
 
339
297
  def markers_make_local(
340
- override_context: typing.Optional[
341
- typing.Union["bpy.types.Context", typing.Dict]
342
- ] = None,
343
- execution_context: typing.Optional[typing.Union[int, str]] = None,
344
- undo: typing.Optional[bool] = None,
298
+ override_context: typing.Union[dict, bpy.types.Context] = None,
299
+ execution_context: typing.Union[str, int] = None,
300
+ undo: bool = None,
345
301
  ):
346
302
  """Move selected scene markers to the active Action as local 'pose' markers
347
303
 
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]
304
+ :type override_context: typing.Union[dict, bpy.types.Context]
305
+ :type execution_context: typing.Union[str, int]
306
+ :type undo: bool
351
307
  """
352
308
 
353
309
  ...
354
310
 
355
311
  def mirror(
356
- override_context: typing.Optional[
357
- typing.Union["bpy.types.Context", typing.Dict]
358
- ] = None,
359
- execution_context: typing.Optional[typing.Union[int, str]] = None,
360
- undo: typing.Optional[bool] = None,
361
- *,
362
- type: typing.Optional[typing.Any] = "CFRA",
312
+ override_context: typing.Union[dict, bpy.types.Context] = None,
313
+ execution_context: typing.Union[str, int] = None,
314
+ undo: bool = None,
315
+ type: typing.Any = "CFRA",
363
316
  ):
364
317
  """Flip selected keyframes over the selected mirror line
365
318
 
366
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
367
- :type execution_context: typing.Optional[typing.Union[int, str]]
368
- :type undo: typing.Optional[bool]
319
+ :type override_context: typing.Union[dict, bpy.types.Context]
320
+ :type execution_context: typing.Union[str, int]
321
+ :type undo: bool
369
322
  :param type: Type
370
323
 
371
324
  CFRA
@@ -376,99 +329,87 @@ def mirror(
376
329
 
377
330
  MARKER
378
331
  By Times Over First Selected Marker -- Flip times of selected keyframes using the first selected marker as the reference point.
379
- :type type: typing.Optional[typing.Any]
332
+ :type type: typing.Any
380
333
  """
381
334
 
382
335
  ...
383
336
 
384
337
  def new(
385
- override_context: typing.Optional[
386
- typing.Union["bpy.types.Context", typing.Dict]
387
- ] = None,
388
- execution_context: typing.Optional[typing.Union[int, str]] = None,
389
- undo: typing.Optional[bool] = None,
338
+ override_context: typing.Union[dict, bpy.types.Context] = None,
339
+ execution_context: typing.Union[str, int] = None,
340
+ undo: bool = None,
390
341
  ):
391
342
  """Create new action
392
343
 
393
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
394
- :type execution_context: typing.Optional[typing.Union[int, str]]
395
- :type undo: typing.Optional[bool]
344
+ :type override_context: typing.Union[dict, bpy.types.Context]
345
+ :type execution_context: typing.Union[str, int]
346
+ :type undo: bool
396
347
  """
397
348
 
398
349
  ...
399
350
 
400
351
  def paste(
401
- override_context: typing.Optional[
402
- typing.Union["bpy.types.Context", typing.Dict]
403
- ] = None,
404
- execution_context: typing.Optional[typing.Union[int, str]] = None,
405
- undo: typing.Optional[bool] = None,
406
- *,
407
- offset: typing.Optional[typing.Any] = "START",
408
- merge: typing.Optional[typing.Any] = "MIX",
409
- flipped: typing.Optional[typing.Union[bool, typing.Any]] = False,
352
+ override_context: typing.Union[dict, bpy.types.Context] = None,
353
+ execution_context: typing.Union[str, int] = None,
354
+ undo: bool = None,
355
+ offset: typing.Any = "START",
356
+ merge: typing.Any = "MIX",
357
+ flipped: typing.Union[bool, typing.Any] = False,
410
358
  ):
411
359
  """Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
412
360
 
413
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
414
- :type execution_context: typing.Optional[typing.Union[int, str]]
415
- :type undo: typing.Optional[bool]
361
+ :type override_context: typing.Union[dict, bpy.types.Context]
362
+ :type execution_context: typing.Union[str, int]
363
+ :type undo: bool
416
364
  :param offset: Offset, Paste time offset of keys
417
- :type offset: typing.Optional[typing.Any]
365
+ :type offset: typing.Any
418
366
  :param merge: Type, Method of merging pasted keys and existing
419
- :type merge: typing.Optional[typing.Any]
367
+ :type merge: typing.Any
420
368
  :param flipped: Flipped, Paste keyframes from mirrored bones if they exist
421
- :type flipped: typing.Optional[typing.Union[bool, typing.Any]]
369
+ :type flipped: typing.Union[bool, typing.Any]
422
370
  """
423
371
 
424
372
  ...
425
373
 
426
374
  def previewrange_set(
427
- override_context: typing.Optional[
428
- typing.Union["bpy.types.Context", typing.Dict]
429
- ] = None,
430
- execution_context: typing.Optional[typing.Union[int, str]] = None,
431
- undo: typing.Optional[bool] = None,
375
+ override_context: typing.Union[dict, bpy.types.Context] = None,
376
+ execution_context: typing.Union[str, int] = None,
377
+ undo: bool = None,
432
378
  ):
433
379
  """Set Preview Range based on extents of selected Keyframes
434
380
 
435
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
436
- :type execution_context: typing.Optional[typing.Union[int, str]]
437
- :type undo: typing.Optional[bool]
381
+ :type override_context: typing.Union[dict, bpy.types.Context]
382
+ :type execution_context: typing.Union[str, int]
383
+ :type undo: bool
438
384
  """
439
385
 
440
386
  ...
441
387
 
442
388
  def push_down(
443
- override_context: typing.Optional[
444
- typing.Union["bpy.types.Context", typing.Dict]
445
- ] = None,
446
- execution_context: typing.Optional[typing.Union[int, str]] = None,
447
- undo: typing.Optional[bool] = None,
389
+ override_context: typing.Union[dict, bpy.types.Context] = None,
390
+ execution_context: typing.Union[str, int] = None,
391
+ undo: bool = None,
448
392
  ):
449
393
  """Push action down on to the NLA stack as a new strip
450
394
 
451
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
452
- :type execution_context: typing.Optional[typing.Union[int, str]]
453
- :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
454
398
  """
455
399
 
456
400
  ...
457
401
 
458
402
  def select_all(
459
- override_context: typing.Optional[
460
- typing.Union["bpy.types.Context", typing.Dict]
461
- ] = None,
462
- execution_context: typing.Optional[typing.Union[int, str]] = None,
463
- undo: typing.Optional[bool] = None,
464
- *,
465
- action: typing.Optional[typing.Any] = "TOGGLE",
403
+ override_context: typing.Union[dict, bpy.types.Context] = None,
404
+ execution_context: typing.Union[str, int] = None,
405
+ undo: bool = None,
406
+ action: typing.Any = "TOGGLE",
466
407
  ):
467
408
  """Toggle selection of all keyframes
468
409
 
469
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
470
- :type execution_context: typing.Optional[typing.Union[int, str]]
471
- :type undo: typing.Optional[bool]
410
+ :type override_context: typing.Union[dict, bpy.types.Context]
411
+ :type execution_context: typing.Union[str, int]
412
+ :type undo: bool
472
413
  :param action: Action, Selection action to execute
473
414
 
474
415
  TOGGLE
@@ -482,44 +423,41 @@ def select_all(
482
423
 
483
424
  INVERT
484
425
  Invert -- Invert selection of all elements.
485
- :type action: typing.Optional[typing.Any]
426
+ :type action: typing.Any
486
427
  """
487
428
 
488
429
  ...
489
430
 
490
431
  def select_box(
491
- override_context: typing.Optional[
492
- typing.Union["bpy.types.Context", typing.Dict]
493
- ] = None,
494
- execution_context: typing.Optional[typing.Union[int, str]] = None,
495
- undo: typing.Optional[bool] = None,
496
- *,
497
- axis_range: typing.Optional[typing.Union[bool, typing.Any]] = False,
498
- xmin: typing.Optional[typing.Any] = 0,
499
- xmax: typing.Optional[typing.Any] = 0,
500
- ymin: typing.Optional[typing.Any] = 0,
501
- ymax: typing.Optional[typing.Any] = 0,
502
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
503
- mode: typing.Optional[typing.Any] = "SET",
504
- tweak: typing.Optional[typing.Union[bool, typing.Any]] = False,
432
+ override_context: typing.Union[dict, bpy.types.Context] = None,
433
+ execution_context: typing.Union[str, int] = None,
434
+ undo: bool = None,
435
+ axis_range: typing.Union[bool, typing.Any] = False,
436
+ xmin: typing.Any = 0,
437
+ xmax: typing.Any = 0,
438
+ ymin: typing.Any = 0,
439
+ ymax: typing.Any = 0,
440
+ wait_for_input: typing.Union[bool, typing.Any] = True,
441
+ mode: typing.Any = "SET",
442
+ tweak: typing.Union[bool, typing.Any] = False,
505
443
  ):
506
444
  """Select all keyframes within the specified region
507
445
 
508
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
509
- :type execution_context: typing.Optional[typing.Union[int, str]]
510
- :type undo: typing.Optional[bool]
446
+ :type override_context: typing.Union[dict, bpy.types.Context]
447
+ :type execution_context: typing.Union[str, int]
448
+ :type undo: bool
511
449
  :param axis_range: Axis Range
512
- :type axis_range: typing.Optional[typing.Union[bool, typing.Any]]
450
+ :type axis_range: typing.Union[bool, typing.Any]
513
451
  :param xmin: X Min
514
- :type xmin: typing.Optional[typing.Any]
452
+ :type xmin: typing.Any
515
453
  :param xmax: X Max
516
- :type xmax: typing.Optional[typing.Any]
454
+ :type xmax: typing.Any
517
455
  :param ymin: Y Min
518
- :type ymin: typing.Optional[typing.Any]
456
+ :type ymin: typing.Any
519
457
  :param ymax: Y Max
520
- :type ymax: typing.Optional[typing.Any]
458
+ :type ymax: typing.Any
521
459
  :param wait_for_input: Wait for Input
522
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
460
+ :type wait_for_input: typing.Union[bool, typing.Any]
523
461
  :param mode: Mode
524
462
 
525
463
  SET
@@ -530,39 +468,36 @@ def select_box(
530
468
 
531
469
  SUB
532
470
  Subtract -- Subtract existing selection.
533
- :type mode: typing.Optional[typing.Any]
471
+ :type mode: typing.Any
534
472
  :param tweak: Tweak, Operator has been activated using a click-drag event
535
- :type tweak: typing.Optional[typing.Union[bool, typing.Any]]
473
+ :type tweak: typing.Union[bool, typing.Any]
536
474
  """
537
475
 
538
476
  ...
539
477
 
540
478
  def select_circle(
541
- override_context: typing.Optional[
542
- typing.Union["bpy.types.Context", typing.Dict]
543
- ] = None,
544
- execution_context: typing.Optional[typing.Union[int, str]] = None,
545
- undo: typing.Optional[bool] = None,
546
- *,
547
- x: typing.Optional[typing.Any] = 0,
548
- y: typing.Optional[typing.Any] = 0,
549
- radius: typing.Optional[typing.Any] = 25,
550
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
551
- mode: typing.Optional[typing.Any] = "SET",
479
+ override_context: typing.Union[dict, bpy.types.Context] = None,
480
+ execution_context: typing.Union[str, int] = None,
481
+ undo: bool = None,
482
+ x: typing.Any = 0,
483
+ y: typing.Any = 0,
484
+ radius: typing.Any = 25,
485
+ wait_for_input: typing.Union[bool, typing.Any] = True,
486
+ mode: typing.Any = "SET",
552
487
  ):
553
488
  """Select keyframe points using circle selection
554
489
 
555
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
556
- :type execution_context: typing.Optional[typing.Union[int, str]]
557
- :type undo: typing.Optional[bool]
490
+ :type override_context: typing.Union[dict, bpy.types.Context]
491
+ :type execution_context: typing.Union[str, int]
492
+ :type undo: bool
558
493
  :param x: X
559
- :type x: typing.Optional[typing.Any]
494
+ :type x: typing.Any
560
495
  :param y: Y
561
- :type y: typing.Optional[typing.Any]
496
+ :type y: typing.Any
562
497
  :param radius: Radius
563
- :type radius: typing.Optional[typing.Any]
498
+ :type radius: typing.Any
564
499
  :param wait_for_input: Wait for Input
565
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
500
+ :type wait_for_input: typing.Union[bool, typing.Any]
566
501
  :param mode: Mode
567
502
 
568
503
  SET
@@ -573,50 +508,42 @@ def select_circle(
573
508
 
574
509
  SUB
575
510
  Subtract -- Subtract existing selection.
576
- :type mode: typing.Optional[typing.Any]
511
+ :type mode: typing.Any
577
512
  """
578
513
 
579
514
  ...
580
515
 
581
516
  def select_column(
582
- override_context: typing.Optional[
583
- typing.Union["bpy.types.Context", typing.Dict]
584
- ] = None,
585
- execution_context: typing.Optional[typing.Union[int, str]] = None,
586
- undo: typing.Optional[bool] = None,
587
- *,
588
- mode: typing.Optional[typing.Any] = "KEYS",
517
+ override_context: typing.Union[dict, bpy.types.Context] = None,
518
+ execution_context: typing.Union[str, int] = None,
519
+ undo: bool = None,
520
+ mode: typing.Any = "KEYS",
589
521
  ):
590
522
  """Select all keyframes on the specified frame(s)
591
523
 
592
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
593
- :type execution_context: typing.Optional[typing.Union[int, str]]
594
- :type undo: typing.Optional[bool]
524
+ :type override_context: typing.Union[dict, bpy.types.Context]
525
+ :type execution_context: typing.Union[str, int]
526
+ :type undo: bool
595
527
  :param mode: Mode
596
- :type mode: typing.Optional[typing.Any]
528
+ :type mode: typing.Any
597
529
  """
598
530
 
599
531
  ...
600
532
 
601
533
  def select_lasso(
602
- override_context: typing.Optional[
603
- typing.Union["bpy.types.Context", typing.Dict]
604
- ] = None,
605
- execution_context: typing.Optional[typing.Union[int, str]] = None,
606
- undo: typing.Optional[bool] = None,
607
- *,
608
- path: typing.Optional[
609
- bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
610
- ] = None,
611
- mode: typing.Optional[typing.Any] = "SET",
534
+ override_context: typing.Union[dict, bpy.types.Context] = None,
535
+ execution_context: typing.Union[str, int] = None,
536
+ undo: bool = None,
537
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
538
+ mode: typing.Any = "SET",
612
539
  ):
613
540
  """Select keyframe points using lasso selection
614
541
 
615
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
616
- :type execution_context: typing.Optional[typing.Union[int, str]]
617
- :type undo: typing.Optional[bool]
542
+ :type override_context: typing.Union[dict, bpy.types.Context]
543
+ :type execution_context: typing.Union[str, int]
544
+ :type undo: bool
618
545
  :param path: Path
619
- :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
546
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
620
547
  :param mode: Mode
621
548
 
622
549
  SET
@@ -627,96 +554,84 @@ def select_lasso(
627
554
 
628
555
  SUB
629
556
  Subtract -- Subtract existing selection.
630
- :type mode: typing.Optional[typing.Any]
557
+ :type mode: typing.Any
631
558
  """
632
559
 
633
560
  ...
634
561
 
635
562
  def select_leftright(
636
- override_context: typing.Optional[
637
- typing.Union["bpy.types.Context", typing.Dict]
638
- ] = None,
639
- execution_context: typing.Optional[typing.Union[int, str]] = None,
640
- undo: typing.Optional[bool] = None,
641
- *,
642
- mode: typing.Optional[typing.Any] = "CHECK",
643
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
563
+ override_context: typing.Union[dict, bpy.types.Context] = None,
564
+ execution_context: typing.Union[str, int] = None,
565
+ undo: bool = None,
566
+ mode: typing.Any = "CHECK",
567
+ extend: typing.Union[bool, typing.Any] = False,
644
568
  ):
645
569
  """Select keyframes to the left or the right of the current frame
646
570
 
647
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
648
- :type execution_context: typing.Optional[typing.Union[int, str]]
649
- :type undo: typing.Optional[bool]
571
+ :type override_context: typing.Union[dict, bpy.types.Context]
572
+ :type execution_context: typing.Union[str, int]
573
+ :type undo: bool
650
574
  :param mode: Mode
651
- :type mode: typing.Optional[typing.Any]
575
+ :type mode: typing.Any
652
576
  :param extend: Extend Select
653
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
577
+ :type extend: typing.Union[bool, typing.Any]
654
578
  """
655
579
 
656
580
  ...
657
581
 
658
582
  def select_less(
659
- override_context: typing.Optional[
660
- typing.Union["bpy.types.Context", typing.Dict]
661
- ] = None,
662
- execution_context: typing.Optional[typing.Union[int, str]] = None,
663
- undo: typing.Optional[bool] = None,
583
+ override_context: typing.Union[dict, bpy.types.Context] = None,
584
+ execution_context: typing.Union[str, int] = None,
585
+ undo: bool = None,
664
586
  ):
665
587
  """Deselect keyframes on ends of selection islands
666
588
 
667
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
668
- :type execution_context: typing.Optional[typing.Union[int, str]]
669
- :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
670
592
  """
671
593
 
672
594
  ...
673
595
 
674
596
  def select_linked(
675
- override_context: typing.Optional[
676
- typing.Union["bpy.types.Context", typing.Dict]
677
- ] = None,
678
- execution_context: typing.Optional[typing.Union[int, str]] = None,
679
- undo: typing.Optional[bool] = None,
597
+ override_context: typing.Union[dict, bpy.types.Context] = None,
598
+ execution_context: typing.Union[str, int] = None,
599
+ undo: bool = None,
680
600
  ):
681
601
  """Select keyframes occurring in the same F-Curves as selected ones
682
602
 
683
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
684
- :type execution_context: typing.Optional[typing.Union[int, str]]
685
- :type undo: typing.Optional[bool]
603
+ :type override_context: typing.Union[dict, bpy.types.Context]
604
+ :type execution_context: typing.Union[str, int]
605
+ :type undo: bool
686
606
  """
687
607
 
688
608
  ...
689
609
 
690
610
  def select_more(
691
- override_context: typing.Optional[
692
- typing.Union["bpy.types.Context", typing.Dict]
693
- ] = None,
694
- execution_context: typing.Optional[typing.Union[int, str]] = None,
695
- undo: typing.Optional[bool] = None,
611
+ override_context: typing.Union[dict, bpy.types.Context] = None,
612
+ execution_context: typing.Union[str, int] = None,
613
+ undo: bool = None,
696
614
  ):
697
615
  """Select keyframes beside already selected ones
698
616
 
699
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
700
- :type execution_context: typing.Optional[typing.Union[int, str]]
701
- :type undo: typing.Optional[bool]
617
+ :type override_context: typing.Union[dict, bpy.types.Context]
618
+ :type execution_context: typing.Union[str, int]
619
+ :type undo: bool
702
620
  """
703
621
 
704
622
  ...
705
623
 
706
624
  def snap(
707
- override_context: typing.Optional[
708
- typing.Union["bpy.types.Context", typing.Dict]
709
- ] = None,
710
- execution_context: typing.Optional[typing.Union[int, str]] = None,
711
- undo: typing.Optional[bool] = None,
712
- *,
713
- type: typing.Optional[typing.Any] = "CFRA",
625
+ override_context: typing.Union[dict, bpy.types.Context] = None,
626
+ execution_context: typing.Union[str, int] = None,
627
+ undo: bool = None,
628
+ type: typing.Any = "CFRA",
714
629
  ):
715
630
  """Snap selected keyframes to the times specified
716
631
 
717
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
718
- :type execution_context: typing.Optional[typing.Union[int, str]]
719
- :type undo: typing.Optional[bool]
632
+ :type override_context: typing.Union[dict, bpy.types.Context]
633
+ :type execution_context: typing.Union[str, int]
634
+ :type undo: bool
720
635
  :param type: Type
721
636
 
722
637
  CFRA
@@ -730,111 +645,97 @@ def snap(
730
645
 
731
646
  NEAREST_MARKER
732
647
  Selection to Nearest Marker -- Snap selected keyframes to the nearest marker.
733
- :type type: typing.Optional[typing.Any]
648
+ :type type: typing.Any
734
649
  """
735
650
 
736
651
  ...
737
652
 
738
653
  def stash(
739
- override_context: typing.Optional[
740
- typing.Union["bpy.types.Context", typing.Dict]
741
- ] = None,
742
- execution_context: typing.Optional[typing.Union[int, str]] = None,
743
- undo: typing.Optional[bool] = None,
744
- *,
745
- create_new: typing.Optional[typing.Union[bool, typing.Any]] = True,
654
+ override_context: typing.Union[dict, bpy.types.Context] = None,
655
+ execution_context: typing.Union[str, int] = None,
656
+ undo: bool = None,
657
+ create_new: typing.Union[bool, typing.Any] = True,
746
658
  ):
747
659
  """Store this action in the NLA stack as a non-contributing strip for later use
748
660
 
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]
661
+ :type override_context: typing.Union[dict, bpy.types.Context]
662
+ :type execution_context: typing.Union[str, int]
663
+ :type undo: bool
752
664
  :param create_new: Create New Action, Create a new action once the existing one has been safely stored
753
- :type create_new: typing.Optional[typing.Union[bool, typing.Any]]
665
+ :type create_new: typing.Union[bool, typing.Any]
754
666
  """
755
667
 
756
668
  ...
757
669
 
758
670
  def stash_and_create(
759
- override_context: typing.Optional[
760
- typing.Union["bpy.types.Context", typing.Dict]
761
- ] = None,
762
- execution_context: typing.Optional[typing.Union[int, str]] = None,
763
- undo: typing.Optional[bool] = None,
671
+ override_context: typing.Union[dict, bpy.types.Context] = None,
672
+ execution_context: typing.Union[str, int] = None,
673
+ undo: bool = None,
764
674
  ):
765
675
  """Store this action in the NLA stack as a non-contributing strip for later use, and create a new action
766
676
 
767
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
768
- :type execution_context: typing.Optional[typing.Union[int, str]]
769
- :type undo: typing.Optional[bool]
677
+ :type override_context: typing.Union[dict, bpy.types.Context]
678
+ :type execution_context: typing.Union[str, int]
679
+ :type undo: bool
770
680
  """
771
681
 
772
682
  ...
773
683
 
774
684
  def unlink(
775
- override_context: typing.Optional[
776
- typing.Union["bpy.types.Context", typing.Dict]
777
- ] = None,
778
- execution_context: typing.Optional[typing.Union[int, str]] = None,
779
- undo: typing.Optional[bool] = None,
780
- *,
781
- force_delete: typing.Optional[typing.Union[bool, typing.Any]] = False,
685
+ override_context: typing.Union[dict, bpy.types.Context] = None,
686
+ execution_context: typing.Union[str, int] = None,
687
+ undo: bool = None,
688
+ force_delete: typing.Union[bool, typing.Any] = False,
782
689
  ):
783
690
  """Unlink this action from the active action slot (and/or exit Tweak Mode)
784
691
 
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]
692
+ :type override_context: typing.Union[dict, bpy.types.Context]
693
+ :type execution_context: typing.Union[str, int]
694
+ :type undo: bool
788
695
  :param force_delete: Force Delete, Clear Fake User and remove copy stashed in this data-block's NLA stack
789
- :type force_delete: typing.Optional[typing.Union[bool, typing.Any]]
696
+ :type force_delete: typing.Union[bool, typing.Any]
790
697
  """
791
698
 
792
699
  ...
793
700
 
794
701
  def view_all(
795
- override_context: typing.Optional[
796
- typing.Union["bpy.types.Context", typing.Dict]
797
- ] = None,
798
- execution_context: typing.Optional[typing.Union[int, str]] = None,
799
- undo: typing.Optional[bool] = None,
702
+ override_context: typing.Union[dict, bpy.types.Context] = None,
703
+ execution_context: typing.Union[str, int] = None,
704
+ undo: bool = None,
800
705
  ):
801
706
  """Reset viewable area to show full keyframe range
802
707
 
803
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
804
- :type execution_context: typing.Optional[typing.Union[int, str]]
805
- :type undo: typing.Optional[bool]
708
+ :type override_context: typing.Union[dict, bpy.types.Context]
709
+ :type execution_context: typing.Union[str, int]
710
+ :type undo: bool
806
711
  """
807
712
 
808
713
  ...
809
714
 
810
715
  def view_frame(
811
- override_context: typing.Optional[
812
- typing.Union["bpy.types.Context", typing.Dict]
813
- ] = None,
814
- execution_context: typing.Optional[typing.Union[int, str]] = None,
815
- undo: typing.Optional[bool] = None,
716
+ override_context: typing.Union[dict, bpy.types.Context] = None,
717
+ execution_context: typing.Union[str, int] = None,
718
+ undo: bool = None,
816
719
  ):
817
720
  """Move the view to the current frame
818
721
 
819
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
820
- :type execution_context: typing.Optional[typing.Union[int, str]]
821
- :type undo: typing.Optional[bool]
722
+ :type override_context: typing.Union[dict, bpy.types.Context]
723
+ :type execution_context: typing.Union[str, int]
724
+ :type undo: bool
822
725
  """
823
726
 
824
727
  ...
825
728
 
826
729
  def view_selected(
827
- override_context: typing.Optional[
828
- typing.Union["bpy.types.Context", typing.Dict]
829
- ] = None,
830
- execution_context: typing.Optional[typing.Union[int, str]] = None,
831
- undo: typing.Optional[bool] = None,
730
+ override_context: typing.Union[dict, bpy.types.Context] = None,
731
+ execution_context: typing.Union[str, int] = None,
732
+ undo: bool = None,
832
733
  ):
833
734
  """Reset viewable area to show selected keyframes range
834
735
 
835
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
836
- :type execution_context: typing.Optional[typing.Union[int, str]]
837
- :type undo: typing.Optional[bool]
736
+ :type override_context: typing.Union[dict, bpy.types.Context]
737
+ :type execution_context: typing.Union[str, int]
738
+ :type undo: bool
838
739
  """
839
740
 
840
741
  ...