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
@@ -4,542 +4,594 @@ import bpy.types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  def actionzone(
7
- override_context=None,
8
- execution_context=None,
9
- undo=None,
10
- *,
11
- modifier: typing.Optional[typing.Any] = 0,
7
+ override_context: typing.Union[dict, bpy.types.Context] = None,
8
+ execution_context: typing.Union[str, int] = None,
9
+ undo: bool = None,
10
+ modifier: typing.Any = 0,
12
11
  ):
13
12
  """Handle area action zones for mouse actions/gestures
14
13
 
15
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
16
- :type execution_context: typing.Optional[typing.Union[int, str]]
17
- :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
18
17
  :param modifier: Modifier, Modifier state
19
- :type modifier: typing.Optional[typing.Any]
18
+ :type modifier: typing.Any
20
19
  """
21
20
 
22
21
  ...
23
22
 
24
23
  def animation_cancel(
25
- override_context=None,
26
- execution_context=None,
27
- undo=None,
28
- *,
29
- restore_frame: typing.Optional[typing.Union[bool, typing.Any]] = True,
24
+ override_context: typing.Union[dict, bpy.types.Context] = None,
25
+ execution_context: typing.Union[str, int] = None,
26
+ undo: bool = None,
27
+ restore_frame: typing.Union[bool, typing.Any] = True,
30
28
  ):
31
29
  """Cancel animation, returning to the original frame
32
30
 
33
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
34
- :type execution_context: typing.Optional[typing.Union[int, str]]
35
- :type undo: typing.Optional[bool]
31
+ :type override_context: typing.Union[dict, bpy.types.Context]
32
+ :type execution_context: typing.Union[str, int]
33
+ :type undo: bool
36
34
  :param restore_frame: Restore Frame, Restore the frame when animation was initialized
37
- :type restore_frame: typing.Optional[typing.Union[bool, typing.Any]]
35
+ :type restore_frame: typing.Union[bool, typing.Any]
38
36
  """
39
37
 
40
38
  ...
41
39
 
42
40
  def animation_play(
43
- override_context=None,
44
- execution_context=None,
45
- undo=None,
46
- *,
47
- reverse: typing.Optional[typing.Union[bool, typing.Any]] = False,
48
- sync: typing.Optional[typing.Union[bool, typing.Any]] = False,
41
+ override_context: typing.Union[dict, bpy.types.Context] = None,
42
+ execution_context: typing.Union[str, int] = None,
43
+ undo: bool = None,
44
+ reverse: typing.Union[bool, typing.Any] = False,
45
+ sync: typing.Union[bool, typing.Any] = False,
49
46
  ):
50
47
  """Play animation
51
48
 
52
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
53
- :type execution_context: typing.Optional[typing.Union[int, str]]
54
- :type undo: typing.Optional[bool]
49
+ :type override_context: typing.Union[dict, bpy.types.Context]
50
+ :type execution_context: typing.Union[str, int]
51
+ :type undo: bool
55
52
  :param reverse: Play in Reverse, Animation is played backwards
56
- :type reverse: typing.Optional[typing.Union[bool, typing.Any]]
53
+ :type reverse: typing.Union[bool, typing.Any]
57
54
  :param sync: Sync, Drop frames to maintain framerate
58
- :type sync: typing.Optional[typing.Union[bool, typing.Any]]
55
+ :type sync: typing.Union[bool, typing.Any]
59
56
  """
60
57
 
61
58
  ...
62
59
 
63
- def animation_step(override_context=None, execution_context=None, undo=None):
60
+ def animation_step(
61
+ override_context: typing.Union[dict, bpy.types.Context] = None,
62
+ execution_context: typing.Union[str, int] = None,
63
+ undo: bool = None,
64
+ ):
64
65
  """Step through animation by position
65
66
 
66
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
67
- :type execution_context: typing.Optional[typing.Union[int, str]]
68
- :type undo: typing.Optional[bool]
67
+ :type override_context: typing.Union[dict, bpy.types.Context]
68
+ :type execution_context: typing.Union[str, int]
69
+ :type undo: bool
69
70
  """
70
71
 
71
72
  ...
72
73
 
73
- def area_close(override_context=None, execution_context=None, undo=None):
74
+ def area_close(
75
+ override_context: typing.Union[dict, bpy.types.Context] = None,
76
+ execution_context: typing.Union[str, int] = None,
77
+ undo: bool = None,
78
+ ):
74
79
  """Close selected area
75
80
 
76
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
77
- :type execution_context: typing.Optional[typing.Union[int, str]]
78
- :type undo: typing.Optional[bool]
81
+ :type override_context: typing.Union[dict, bpy.types.Context]
82
+ :type execution_context: typing.Union[str, int]
83
+ :type undo: bool
79
84
  """
80
85
 
81
86
  ...
82
87
 
83
- def area_dupli(override_context=None, execution_context=None, undo=None):
88
+ def area_dupli(
89
+ override_context: typing.Union[dict, bpy.types.Context] = None,
90
+ execution_context: typing.Union[str, int] = None,
91
+ undo: bool = None,
92
+ ):
84
93
  """Duplicate selected area into new window
85
94
 
86
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
87
- :type execution_context: typing.Optional[typing.Union[int, str]]
88
- :type undo: typing.Optional[bool]
95
+ :type override_context: typing.Union[dict, bpy.types.Context]
96
+ :type execution_context: typing.Union[str, int]
97
+ :type undo: bool
89
98
  """
90
99
 
91
100
  ...
92
101
 
93
102
  def area_join(
94
- override_context=None,
95
- execution_context=None,
96
- undo=None,
97
- *,
98
- cursor: typing.Optional[typing.Any] = (0, 0),
103
+ override_context: typing.Union[dict, bpy.types.Context] = None,
104
+ execution_context: typing.Union[str, int] = None,
105
+ undo: bool = None,
106
+ cursor: typing.Any = (0, 0),
99
107
  ):
100
108
  """Join selected areas into new window
101
109
 
102
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
103
- :type execution_context: typing.Optional[typing.Union[int, str]]
104
- :type undo: typing.Optional[bool]
110
+ :type override_context: typing.Union[dict, bpy.types.Context]
111
+ :type execution_context: typing.Union[str, int]
112
+ :type undo: bool
105
113
  :param cursor: Cursor
106
- :type cursor: typing.Optional[typing.Any]
114
+ :type cursor: typing.Any
107
115
  """
108
116
 
109
117
  ...
110
118
 
111
119
  def area_move(
112
- override_context=None,
113
- execution_context=None,
114
- undo=None,
115
- *,
116
- x: typing.Optional[typing.Any] = 0,
117
- y: typing.Optional[typing.Any] = 0,
118
- delta: typing.Optional[typing.Any] = 0,
120
+ override_context: typing.Union[dict, bpy.types.Context] = None,
121
+ execution_context: typing.Union[str, int] = None,
122
+ undo: bool = None,
123
+ x: typing.Any = 0,
124
+ y: typing.Any = 0,
125
+ delta: typing.Any = 0,
119
126
  ):
120
127
  """Move selected area edges
121
128
 
122
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
123
- :type execution_context: typing.Optional[typing.Union[int, str]]
124
- :type undo: typing.Optional[bool]
129
+ :type override_context: typing.Union[dict, bpy.types.Context]
130
+ :type execution_context: typing.Union[str, int]
131
+ :type undo: bool
125
132
  :param x: X
126
- :type x: typing.Optional[typing.Any]
133
+ :type x: typing.Any
127
134
  :param y: Y
128
- :type y: typing.Optional[typing.Any]
135
+ :type y: typing.Any
129
136
  :param delta: Delta
130
- :type delta: typing.Optional[typing.Any]
137
+ :type delta: typing.Any
131
138
  """
132
139
 
133
140
  ...
134
141
 
135
- def area_options(override_context=None, execution_context=None, undo=None):
142
+ def area_options(
143
+ override_context: typing.Union[dict, bpy.types.Context] = None,
144
+ execution_context: typing.Union[str, int] = None,
145
+ undo: bool = None,
146
+ ):
136
147
  """Operations for splitting and merging
137
148
 
138
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
139
- :type execution_context: typing.Optional[typing.Union[int, str]]
140
- :type undo: typing.Optional[bool]
149
+ :type override_context: typing.Union[dict, bpy.types.Context]
150
+ :type execution_context: typing.Union[str, int]
151
+ :type undo: bool
141
152
  """
142
153
 
143
154
  ...
144
155
 
145
156
  def area_split(
146
- override_context=None,
147
- execution_context=None,
148
- undo=None,
149
- *,
150
- direction: typing.Optional[typing.Any] = "HORIZONTAL",
151
- factor: typing.Optional[typing.Any] = 0.5,
152
- cursor: typing.Optional[typing.Any] = (0, 0),
157
+ override_context: typing.Union[dict, bpy.types.Context] = None,
158
+ execution_context: typing.Union[str, int] = None,
159
+ undo: bool = None,
160
+ direction: typing.Any = "HORIZONTAL",
161
+ factor: typing.Any = 0.5,
162
+ cursor: typing.Any = (0, 0),
153
163
  ):
154
164
  """Split selected area into new windows
155
165
 
156
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
157
- :type execution_context: typing.Optional[typing.Union[int, str]]
158
- :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
159
169
  :param direction: Direction
160
- :type direction: typing.Optional[typing.Any]
170
+ :type direction: typing.Any
161
171
  :param factor: Factor
162
- :type factor: typing.Optional[typing.Any]
172
+ :type factor: typing.Any
163
173
  :param cursor: Cursor
164
- :type cursor: typing.Optional[typing.Any]
174
+ :type cursor: typing.Any
165
175
  """
166
176
 
167
177
  ...
168
178
 
169
179
  def area_swap(
170
- override_context=None,
171
- execution_context=None,
172
- undo=None,
173
- *,
174
- cursor: typing.Optional[typing.Any] = (0, 0),
180
+ override_context: typing.Union[dict, bpy.types.Context] = None,
181
+ execution_context: typing.Union[str, int] = None,
182
+ undo: bool = None,
183
+ cursor: typing.Any = (0, 0),
175
184
  ):
176
185
  """Swap selected areas screen positions
177
186
 
178
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
179
- :type execution_context: typing.Optional[typing.Union[int, str]]
180
- :type undo: typing.Optional[bool]
187
+ :type override_context: typing.Union[dict, bpy.types.Context]
188
+ :type execution_context: typing.Union[str, int]
189
+ :type undo: bool
181
190
  :param cursor: Cursor
182
- :type cursor: typing.Optional[typing.Any]
191
+ :type cursor: typing.Any
183
192
  """
184
193
 
185
194
  ...
186
195
 
187
- def back_to_previous(override_context=None, execution_context=None, undo=None):
196
+ def back_to_previous(
197
+ override_context: typing.Union[dict, bpy.types.Context] = None,
198
+ execution_context: typing.Union[str, int] = None,
199
+ undo: bool = None,
200
+ ):
188
201
  """Revert back to the original screen layout, before fullscreen area overlay
189
202
 
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]
203
+ :type override_context: typing.Union[dict, bpy.types.Context]
204
+ :type execution_context: typing.Union[str, int]
205
+ :type undo: bool
193
206
  """
194
207
 
195
208
  ...
196
209
 
197
- def delete(override_context=None, execution_context=None, undo=None):
210
+ def delete(
211
+ override_context: typing.Union[dict, bpy.types.Context] = None,
212
+ execution_context: typing.Union[str, int] = None,
213
+ undo: bool = None,
214
+ ):
198
215
  """Delete active screen
199
216
 
200
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
201
- :type execution_context: typing.Optional[typing.Union[int, str]]
202
- :type undo: typing.Optional[bool]
217
+ :type override_context: typing.Union[dict, bpy.types.Context]
218
+ :type execution_context: typing.Union[str, int]
219
+ :type undo: bool
203
220
  """
204
221
 
205
222
  ...
206
223
 
207
- def drivers_editor_show(override_context=None, execution_context=None, undo=None):
224
+ def drivers_editor_show(
225
+ override_context: typing.Union[dict, bpy.types.Context] = None,
226
+ execution_context: typing.Union[str, int] = None,
227
+ undo: bool = None,
228
+ ):
208
229
  """Show drivers editor in a separate window
209
230
 
210
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
211
- :type execution_context: typing.Optional[typing.Union[int, str]]
212
- :type undo: typing.Optional[bool]
231
+ :type override_context: typing.Union[dict, bpy.types.Context]
232
+ :type execution_context: typing.Union[str, int]
233
+ :type undo: bool
213
234
  """
214
235
 
215
236
  ...
216
237
 
217
238
  def frame_jump(
218
- override_context=None,
219
- execution_context=None,
220
- undo=None,
221
- *,
222
- end: typing.Optional[typing.Union[bool, typing.Any]] = False,
239
+ override_context: typing.Union[dict, bpy.types.Context] = None,
240
+ execution_context: typing.Union[str, int] = None,
241
+ undo: bool = None,
242
+ end: typing.Union[bool, typing.Any] = False,
223
243
  ):
224
244
  """Jump to first/last frame in frame range
225
245
 
226
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
227
- :type execution_context: typing.Optional[typing.Union[int, str]]
228
- :type undo: typing.Optional[bool]
246
+ :type override_context: typing.Union[dict, bpy.types.Context]
247
+ :type execution_context: typing.Union[str, int]
248
+ :type undo: bool
229
249
  :param end: Last Frame, Jump to the last frame of the frame range
230
- :type end: typing.Optional[typing.Union[bool, typing.Any]]
250
+ :type end: typing.Union[bool, typing.Any]
231
251
  """
232
252
 
233
253
  ...
234
254
 
235
255
  def frame_offset(
236
- override_context=None,
237
- execution_context=None,
238
- undo=None,
239
- *,
240
- delta: typing.Optional[typing.Any] = 0,
256
+ override_context: typing.Union[dict, bpy.types.Context] = None,
257
+ execution_context: typing.Union[str, int] = None,
258
+ undo: bool = None,
259
+ delta: typing.Any = 0,
241
260
  ):
242
261
  """Move current frame forward/backward by a given number
243
262
 
244
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
245
- :type execution_context: typing.Optional[typing.Union[int, str]]
246
- :type undo: typing.Optional[bool]
263
+ :type override_context: typing.Union[dict, bpy.types.Context]
264
+ :type execution_context: typing.Union[str, int]
265
+ :type undo: bool
247
266
  :param delta: Delta
248
- :type delta: typing.Optional[typing.Any]
267
+ :type delta: typing.Any
249
268
  """
250
269
 
251
270
  ...
252
271
 
253
- def header_toggle_menus(override_context=None, execution_context=None, undo=None):
272
+ def header_toggle_menus(
273
+ override_context: typing.Union[dict, bpy.types.Context] = None,
274
+ execution_context: typing.Union[str, int] = None,
275
+ undo: bool = None,
276
+ ):
254
277
  """Expand or collapse the header pulldown menus
255
278
 
256
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
257
- :type execution_context: typing.Optional[typing.Union[int, str]]
258
- :type undo: typing.Optional[bool]
279
+ :type override_context: typing.Union[dict, bpy.types.Context]
280
+ :type execution_context: typing.Union[str, int]
281
+ :type undo: bool
259
282
  """
260
283
 
261
284
  ...
262
285
 
263
- def info_log_show(override_context=None, execution_context=None, undo=None):
286
+ def info_log_show(
287
+ override_context: typing.Union[dict, bpy.types.Context] = None,
288
+ execution_context: typing.Union[str, int] = None,
289
+ undo: bool = None,
290
+ ):
264
291
  """Show info log in a separate window
265
292
 
266
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
267
- :type execution_context: typing.Optional[typing.Union[int, str]]
268
- :type undo: typing.Optional[bool]
293
+ :type override_context: typing.Union[dict, bpy.types.Context]
294
+ :type execution_context: typing.Union[str, int]
295
+ :type undo: bool
269
296
  """
270
297
 
271
298
  ...
272
299
 
273
300
  def keyframe_jump(
274
- override_context=None,
275
- execution_context=None,
276
- undo=None,
277
- *,
278
- next: typing.Optional[typing.Union[bool, typing.Any]] = True,
301
+ override_context: typing.Union[dict, bpy.types.Context] = None,
302
+ execution_context: typing.Union[str, int] = None,
303
+ undo: bool = None,
304
+ next: typing.Union[bool, typing.Any] = True,
279
305
  ):
280
306
  """Jump to previous/next keyframe
281
307
 
282
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
283
- :type execution_context: typing.Optional[typing.Union[int, str]]
284
- :type undo: typing.Optional[bool]
308
+ :type override_context: typing.Union[dict, bpy.types.Context]
309
+ :type execution_context: typing.Union[str, int]
310
+ :type undo: bool
285
311
  :param next: Next Keyframe
286
- :type next: typing.Optional[typing.Union[bool, typing.Any]]
312
+ :type next: typing.Union[bool, typing.Any]
287
313
  """
288
314
 
289
315
  ...
290
316
 
291
317
  def marker_jump(
292
- override_context=None,
293
- execution_context=None,
294
- undo=None,
295
- *,
296
- next: typing.Optional[typing.Union[bool, typing.Any]] = True,
318
+ override_context: typing.Union[dict, bpy.types.Context] = None,
319
+ execution_context: typing.Union[str, int] = None,
320
+ undo: bool = None,
321
+ next: typing.Union[bool, typing.Any] = True,
297
322
  ):
298
323
  """Jump to previous/next marker
299
324
 
300
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
301
- :type execution_context: typing.Optional[typing.Union[int, str]]
302
- :type undo: typing.Optional[bool]
325
+ :type override_context: typing.Union[dict, bpy.types.Context]
326
+ :type execution_context: typing.Union[str, int]
327
+ :type undo: bool
303
328
  :param next: Next Marker
304
- :type next: typing.Optional[typing.Union[bool, typing.Any]]
329
+ :type next: typing.Union[bool, typing.Any]
305
330
  """
306
331
 
307
332
  ...
308
333
 
309
- def new(override_context=None, execution_context=None, undo=None):
334
+ def new(
335
+ override_context: typing.Union[dict, bpy.types.Context] = None,
336
+ execution_context: typing.Union[str, int] = None,
337
+ undo: bool = None,
338
+ ):
310
339
  """Add a new screen
311
340
 
312
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
313
- :type execution_context: typing.Optional[typing.Union[int, str]]
314
- :type undo: typing.Optional[bool]
341
+ :type override_context: typing.Union[dict, bpy.types.Context]
342
+ :type execution_context: typing.Union[str, int]
343
+ :type undo: bool
315
344
  """
316
345
 
317
346
  ...
318
347
 
319
- def redo_last(override_context=None, execution_context=None, undo=None):
348
+ def redo_last(
349
+ override_context: typing.Union[dict, bpy.types.Context] = None,
350
+ execution_context: typing.Union[str, int] = None,
351
+ undo: bool = None,
352
+ ):
320
353
  """Display parameters for last action performed
321
354
 
322
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
323
- :type execution_context: typing.Optional[typing.Union[int, str]]
324
- :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
325
358
  """
326
359
 
327
360
  ...
328
361
 
329
- def region_blend(override_context=None, execution_context=None, undo=None):
362
+ def region_blend(
363
+ override_context: typing.Union[dict, bpy.types.Context] = None,
364
+ execution_context: typing.Union[str, int] = None,
365
+ undo: bool = None,
366
+ ):
330
367
  """Blend in and out overlapping region
331
368
 
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]
369
+ :type override_context: typing.Union[dict, bpy.types.Context]
370
+ :type execution_context: typing.Union[str, int]
371
+ :type undo: bool
335
372
  """
336
373
 
337
374
  ...
338
375
 
339
- def region_context_menu(override_context=None, execution_context=None, undo=None):
376
+ def region_context_menu(
377
+ override_context: typing.Union[dict, bpy.types.Context] = None,
378
+ execution_context: typing.Union[str, int] = None,
379
+ undo: bool = None,
380
+ ):
340
381
  """Display region context menu
341
382
 
342
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
343
- :type execution_context: typing.Optional[typing.Union[int, str]]
344
- :type undo: typing.Optional[bool]
383
+ :type override_context: typing.Union[dict, bpy.types.Context]
384
+ :type execution_context: typing.Union[str, int]
385
+ :type undo: bool
345
386
  """
346
387
 
347
388
  ...
348
389
 
349
- def region_flip(override_context=None, execution_context=None, undo=None):
390
+ def region_flip(
391
+ override_context: typing.Union[dict, bpy.types.Context] = None,
392
+ execution_context: typing.Union[str, int] = None,
393
+ undo: bool = None,
394
+ ):
350
395
  """Toggle the region's alignment (left/right or top/bottom)
351
396
 
352
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
353
- :type execution_context: typing.Optional[typing.Union[int, str]]
354
- :type undo: typing.Optional[bool]
397
+ :type override_context: typing.Union[dict, bpy.types.Context]
398
+ :type execution_context: typing.Union[str, int]
399
+ :type undo: bool
355
400
  """
356
401
 
357
402
  ...
358
403
 
359
- def region_quadview(override_context=None, execution_context=None, undo=None):
404
+ def region_quadview(
405
+ override_context: typing.Union[dict, bpy.types.Context] = None,
406
+ execution_context: typing.Union[str, int] = None,
407
+ undo: bool = None,
408
+ ):
360
409
  """Split selected area into camera, front, right, and top views
361
410
 
362
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
363
- :type execution_context: typing.Optional[typing.Union[int, str]]
364
- :type undo: typing.Optional[bool]
411
+ :type override_context: typing.Union[dict, bpy.types.Context]
412
+ :type execution_context: typing.Union[str, int]
413
+ :type undo: bool
365
414
  """
366
415
 
367
416
  ...
368
417
 
369
- def region_scale(override_context=None, execution_context=None, undo=None):
418
+ def region_scale(
419
+ override_context: typing.Union[dict, bpy.types.Context] = None,
420
+ execution_context: typing.Union[str, int] = None,
421
+ undo: bool = None,
422
+ ):
370
423
  """Scale selected area
371
424
 
372
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
373
- :type execution_context: typing.Optional[typing.Union[int, str]]
374
- :type undo: typing.Optional[bool]
425
+ :type override_context: typing.Union[dict, bpy.types.Context]
426
+ :type execution_context: typing.Union[str, int]
427
+ :type undo: bool
375
428
  """
376
429
 
377
430
  ...
378
431
 
379
432
  def region_toggle(
380
- override_context=None,
381
- execution_context=None,
382
- undo=None,
383
- *,
384
- region_type: typing.Optional[typing.Any] = "WINDOW",
433
+ override_context: typing.Union[dict, bpy.types.Context] = None,
434
+ execution_context: typing.Union[str, int] = None,
435
+ undo: bool = None,
436
+ region_type: typing.Any = "WINDOW",
385
437
  ):
386
438
  """Hide or unhide the region
387
439
 
388
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
389
- :type execution_context: typing.Optional[typing.Union[int, str]]
390
- :type undo: typing.Optional[bool]
440
+ :type override_context: typing.Union[dict, bpy.types.Context]
441
+ :type execution_context: typing.Union[str, int]
442
+ :type undo: bool
391
443
  :param region_type: Region Type, Type of the region to toggle
392
- :type region_type: typing.Optional[typing.Any]
444
+ :type region_type: typing.Any
393
445
  """
394
446
 
395
447
  ...
396
448
 
397
449
  def repeat_history(
398
- override_context=None,
399
- execution_context=None,
400
- undo=None,
401
- *,
402
- index: typing.Optional[typing.Any] = 0,
450
+ override_context: typing.Union[dict, bpy.types.Context] = None,
451
+ execution_context: typing.Union[str, int] = None,
452
+ undo: bool = None,
453
+ index: typing.Any = 0,
403
454
  ):
404
455
  """Display menu for previous actions performed
405
456
 
406
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
407
- :type execution_context: typing.Optional[typing.Union[int, str]]
408
- :type undo: typing.Optional[bool]
457
+ :type override_context: typing.Union[dict, bpy.types.Context]
458
+ :type execution_context: typing.Union[str, int]
459
+ :type undo: bool
409
460
  :param index: Index
410
- :type index: typing.Optional[typing.Any]
461
+ :type index: typing.Any
411
462
  """
412
463
 
413
464
  ...
414
465
 
415
- def repeat_last(override_context=None, execution_context=None, undo=None):
466
+ def repeat_last(
467
+ override_context: typing.Union[dict, bpy.types.Context] = None,
468
+ execution_context: typing.Union[str, int] = None,
469
+ undo: bool = None,
470
+ ):
416
471
  """Repeat last action
417
472
 
418
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
419
- :type execution_context: typing.Optional[typing.Union[int, str]]
420
- :type undo: typing.Optional[bool]
473
+ :type override_context: typing.Union[dict, bpy.types.Context]
474
+ :type execution_context: typing.Union[str, int]
475
+ :type undo: bool
421
476
  """
422
477
 
423
478
  ...
424
479
 
425
480
  def screen_full_area(
426
- override_context=None,
427
- execution_context=None,
428
- undo=None,
429
- *,
430
- use_hide_panels: typing.Optional[typing.Union[bool, typing.Any]] = False,
481
+ override_context: typing.Union[dict, bpy.types.Context] = None,
482
+ execution_context: typing.Union[str, int] = None,
483
+ undo: bool = None,
484
+ use_hide_panels: typing.Union[bool, typing.Any] = False,
431
485
  ):
432
486
  """Toggle display selected area as fullscreen/maximized
433
487
 
434
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
435
- :type execution_context: typing.Optional[typing.Union[int, str]]
436
- :type undo: typing.Optional[bool]
488
+ :type override_context: typing.Union[dict, bpy.types.Context]
489
+ :type execution_context: typing.Union[str, int]
490
+ :type undo: bool
437
491
  :param use_hide_panels: Hide Panels, Hide all the panels
438
- :type use_hide_panels: typing.Optional[typing.Union[bool, typing.Any]]
492
+ :type use_hide_panels: typing.Union[bool, typing.Any]
439
493
  """
440
494
 
441
495
  ...
442
496
 
443
497
  def screen_set(
444
- override_context=None,
445
- execution_context=None,
446
- undo=None,
447
- *,
448
- delta: typing.Optional[typing.Any] = 1,
498
+ override_context: typing.Union[dict, bpy.types.Context] = None,
499
+ execution_context: typing.Union[str, int] = None,
500
+ undo: bool = None,
501
+ delta: typing.Any = 1,
449
502
  ):
450
503
  """Cycle through available screens
451
504
 
452
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
453
- :type execution_context: typing.Optional[typing.Union[int, str]]
454
- :type undo: typing.Optional[bool]
505
+ :type override_context: typing.Union[dict, bpy.types.Context]
506
+ :type execution_context: typing.Union[str, int]
507
+ :type undo: bool
455
508
  :param delta: Delta
456
- :type delta: typing.Optional[typing.Any]
509
+ :type delta: typing.Any
457
510
  """
458
511
 
459
512
  ...
460
513
 
461
514
  def screenshot(
462
- override_context=None,
463
- execution_context=None,
464
- undo=None,
465
- *,
515
+ override_context: typing.Union[dict, bpy.types.Context] = None,
516
+ execution_context: typing.Union[str, int] = None,
517
+ undo: bool = None,
466
518
  filepath: typing.Union[str, typing.Any] = "",
467
- hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
468
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = True,
469
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
470
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
471
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = True,
472
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
473
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
474
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
475
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
476
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
477
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
478
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
479
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
480
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
481
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
482
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
483
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
484
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
485
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
486
- filemode: typing.Optional[typing.Any] = 9,
487
- show_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
488
- use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
489
- display_type: typing.Optional[typing.Any] = "DEFAULT",
490
- sort_method: typing.Optional[typing.Union[int, str, typing.Any]] = "",
519
+ hide_props_region: typing.Union[bool, typing.Any] = True,
520
+ check_existing: typing.Union[bool, typing.Any] = True,
521
+ filter_blender: typing.Union[bool, typing.Any] = False,
522
+ filter_backup: typing.Union[bool, typing.Any] = False,
523
+ filter_image: typing.Union[bool, typing.Any] = True,
524
+ filter_movie: typing.Union[bool, typing.Any] = False,
525
+ filter_python: typing.Union[bool, typing.Any] = False,
526
+ filter_font: typing.Union[bool, typing.Any] = False,
527
+ filter_sound: typing.Union[bool, typing.Any] = False,
528
+ filter_text: typing.Union[bool, typing.Any] = False,
529
+ filter_archive: typing.Union[bool, typing.Any] = False,
530
+ filter_btx: typing.Union[bool, typing.Any] = False,
531
+ filter_collada: typing.Union[bool, typing.Any] = False,
532
+ filter_alembic: typing.Union[bool, typing.Any] = False,
533
+ filter_usd: typing.Union[bool, typing.Any] = False,
534
+ filter_obj: typing.Union[bool, typing.Any] = False,
535
+ filter_volume: typing.Union[bool, typing.Any] = False,
536
+ filter_folder: typing.Union[bool, typing.Any] = True,
537
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
538
+ filemode: typing.Any = 9,
539
+ show_multiview: typing.Union[bool, typing.Any] = False,
540
+ use_multiview: typing.Union[bool, typing.Any] = False,
541
+ display_type: typing.Any = "DEFAULT",
542
+ sort_method: typing.Union[str, int, typing.Any] = "",
491
543
  ):
492
544
  """Capture a picture of the whole Blender window
493
545
 
494
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
495
- :type execution_context: typing.Optional[typing.Union[int, str]]
496
- :type undo: typing.Optional[bool]
546
+ :type override_context: typing.Union[dict, bpy.types.Context]
547
+ :type execution_context: typing.Union[str, int]
548
+ :type undo: bool
497
549
  :param filepath: File Path, Path to file
498
550
  :type filepath: typing.Union[str, typing.Any]
499
551
  :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
500
- :type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
552
+ :type hide_props_region: typing.Union[bool, typing.Any]
501
553
  :param check_existing: Check Existing, Check and warn on overwriting existing files
502
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
554
+ :type check_existing: typing.Union[bool, typing.Any]
503
555
  :param filter_blender: Filter .blend files
504
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
556
+ :type filter_blender: typing.Union[bool, typing.Any]
505
557
  :param filter_backup: Filter .blend files
506
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
558
+ :type filter_backup: typing.Union[bool, typing.Any]
507
559
  :param filter_image: Filter image files
508
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
560
+ :type filter_image: typing.Union[bool, typing.Any]
509
561
  :param filter_movie: Filter movie files
510
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
562
+ :type filter_movie: typing.Union[bool, typing.Any]
511
563
  :param filter_python: Filter Python files
512
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
564
+ :type filter_python: typing.Union[bool, typing.Any]
513
565
  :param filter_font: Filter font files
514
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
566
+ :type filter_font: typing.Union[bool, typing.Any]
515
567
  :param filter_sound: Filter sound files
516
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
568
+ :type filter_sound: typing.Union[bool, typing.Any]
517
569
  :param filter_text: Filter text files
518
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
570
+ :type filter_text: typing.Union[bool, typing.Any]
519
571
  :param filter_archive: Filter archive files
520
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
572
+ :type filter_archive: typing.Union[bool, typing.Any]
521
573
  :param filter_btx: Filter btx files
522
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
574
+ :type filter_btx: typing.Union[bool, typing.Any]
523
575
  :param filter_collada: Filter COLLADA files
524
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
576
+ :type filter_collada: typing.Union[bool, typing.Any]
525
577
  :param filter_alembic: Filter Alembic files
526
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
578
+ :type filter_alembic: typing.Union[bool, typing.Any]
527
579
  :param filter_usd: Filter USD files
528
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
580
+ :type filter_usd: typing.Union[bool, typing.Any]
529
581
  :param filter_obj: Filter OBJ files
530
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
582
+ :type filter_obj: typing.Union[bool, typing.Any]
531
583
  :param filter_volume: Filter OpenVDB volume files
532
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
584
+ :type filter_volume: typing.Union[bool, typing.Any]
533
585
  :param filter_folder: Filter folders
534
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
586
+ :type filter_folder: typing.Union[bool, typing.Any]
535
587
  :param filter_blenlib: Filter Blender IDs
536
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
588
+ :type filter_blenlib: typing.Union[bool, typing.Any]
537
589
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
538
- :type filemode: typing.Optional[typing.Any]
590
+ :type filemode: typing.Any
539
591
  :param show_multiview: Enable Multi-View
540
- :type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
592
+ :type show_multiview: typing.Union[bool, typing.Any]
541
593
  :param use_multiview: Use Multi-View
542
- :type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
594
+ :type use_multiview: typing.Union[bool, typing.Any]
543
595
  :param display_type: Display Type
544
596
 
545
597
  DEFAULT
@@ -553,95 +605,94 @@ def screenshot(
553
605
 
554
606
  THUMBNAIL
555
607
  Thumbnails -- Display files as thumbnails.
556
- :type display_type: typing.Optional[typing.Any]
608
+ :type display_type: typing.Any
557
609
  :param sort_method: File sorting mode
558
- :type sort_method: typing.Optional[typing.Union[int, str, typing.Any]]
610
+ :type sort_method: typing.Union[str, int, typing.Any]
559
611
  """
560
612
 
561
613
  ...
562
614
 
563
615
  def screenshot_area(
564
- override_context=None,
565
- execution_context=None,
566
- undo=None,
567
- *,
616
+ override_context: typing.Union[dict, bpy.types.Context] = None,
617
+ execution_context: typing.Union[str, int] = None,
618
+ undo: bool = None,
568
619
  filepath: typing.Union[str, typing.Any] = "",
569
- hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
570
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = True,
571
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
572
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
573
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = True,
574
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
575
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
576
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
577
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
578
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
579
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
580
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
581
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
582
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
583
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
584
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
585
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
586
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
587
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
588
- filemode: typing.Optional[typing.Any] = 9,
589
- show_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
590
- use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
591
- display_type: typing.Optional[typing.Any] = "DEFAULT",
592
- sort_method: typing.Optional[typing.Union[int, str, typing.Any]] = "",
620
+ hide_props_region: typing.Union[bool, typing.Any] = True,
621
+ check_existing: typing.Union[bool, typing.Any] = True,
622
+ filter_blender: typing.Union[bool, typing.Any] = False,
623
+ filter_backup: typing.Union[bool, typing.Any] = False,
624
+ filter_image: typing.Union[bool, typing.Any] = True,
625
+ filter_movie: typing.Union[bool, typing.Any] = False,
626
+ filter_python: typing.Union[bool, typing.Any] = False,
627
+ filter_font: typing.Union[bool, typing.Any] = False,
628
+ filter_sound: typing.Union[bool, typing.Any] = False,
629
+ filter_text: typing.Union[bool, typing.Any] = False,
630
+ filter_archive: typing.Union[bool, typing.Any] = False,
631
+ filter_btx: typing.Union[bool, typing.Any] = False,
632
+ filter_collada: typing.Union[bool, typing.Any] = False,
633
+ filter_alembic: typing.Union[bool, typing.Any] = False,
634
+ filter_usd: typing.Union[bool, typing.Any] = False,
635
+ filter_obj: typing.Union[bool, typing.Any] = False,
636
+ filter_volume: typing.Union[bool, typing.Any] = False,
637
+ filter_folder: typing.Union[bool, typing.Any] = True,
638
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
639
+ filemode: typing.Any = 9,
640
+ show_multiview: typing.Union[bool, typing.Any] = False,
641
+ use_multiview: typing.Union[bool, typing.Any] = False,
642
+ display_type: typing.Any = "DEFAULT",
643
+ sort_method: typing.Union[str, int, typing.Any] = "",
593
644
  ):
594
645
  """Capture a picture of an editor
595
646
 
596
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
597
- :type execution_context: typing.Optional[typing.Union[int, str]]
598
- :type undo: typing.Optional[bool]
647
+ :type override_context: typing.Union[dict, bpy.types.Context]
648
+ :type execution_context: typing.Union[str, int]
649
+ :type undo: bool
599
650
  :param filepath: File Path, Path to file
600
651
  :type filepath: typing.Union[str, typing.Any]
601
652
  :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
602
- :type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
653
+ :type hide_props_region: typing.Union[bool, typing.Any]
603
654
  :param check_existing: Check Existing, Check and warn on overwriting existing files
604
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
655
+ :type check_existing: typing.Union[bool, typing.Any]
605
656
  :param filter_blender: Filter .blend files
606
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
657
+ :type filter_blender: typing.Union[bool, typing.Any]
607
658
  :param filter_backup: Filter .blend files
608
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
659
+ :type filter_backup: typing.Union[bool, typing.Any]
609
660
  :param filter_image: Filter image files
610
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
661
+ :type filter_image: typing.Union[bool, typing.Any]
611
662
  :param filter_movie: Filter movie files
612
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
663
+ :type filter_movie: typing.Union[bool, typing.Any]
613
664
  :param filter_python: Filter Python files
614
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
665
+ :type filter_python: typing.Union[bool, typing.Any]
615
666
  :param filter_font: Filter font files
616
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
667
+ :type filter_font: typing.Union[bool, typing.Any]
617
668
  :param filter_sound: Filter sound files
618
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
669
+ :type filter_sound: typing.Union[bool, typing.Any]
619
670
  :param filter_text: Filter text files
620
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
671
+ :type filter_text: typing.Union[bool, typing.Any]
621
672
  :param filter_archive: Filter archive files
622
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
673
+ :type filter_archive: typing.Union[bool, typing.Any]
623
674
  :param filter_btx: Filter btx files
624
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
675
+ :type filter_btx: typing.Union[bool, typing.Any]
625
676
  :param filter_collada: Filter COLLADA files
626
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
677
+ :type filter_collada: typing.Union[bool, typing.Any]
627
678
  :param filter_alembic: Filter Alembic files
628
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
679
+ :type filter_alembic: typing.Union[bool, typing.Any]
629
680
  :param filter_usd: Filter USD files
630
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
681
+ :type filter_usd: typing.Union[bool, typing.Any]
631
682
  :param filter_obj: Filter OBJ files
632
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
683
+ :type filter_obj: typing.Union[bool, typing.Any]
633
684
  :param filter_volume: Filter OpenVDB volume files
634
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
685
+ :type filter_volume: typing.Union[bool, typing.Any]
635
686
  :param filter_folder: Filter folders
636
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
687
+ :type filter_folder: typing.Union[bool, typing.Any]
637
688
  :param filter_blenlib: Filter Blender IDs
638
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
689
+ :type filter_blenlib: typing.Union[bool, typing.Any]
639
690
  :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
640
- :type filemode: typing.Optional[typing.Any]
691
+ :type filemode: typing.Any
641
692
  :param show_multiview: Enable Multi-View
642
- :type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
693
+ :type show_multiview: typing.Union[bool, typing.Any]
643
694
  :param use_multiview: Use Multi-View
644
- :type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
695
+ :type use_multiview: typing.Union[bool, typing.Any]
645
696
  :param display_type: Display Type
646
697
 
647
698
  DEFAULT
@@ -655,91 +706,91 @@ def screenshot_area(
655
706
 
656
707
  THUMBNAIL
657
708
  Thumbnails -- Display files as thumbnails.
658
- :type display_type: typing.Optional[typing.Any]
709
+ :type display_type: typing.Any
659
710
  :param sort_method: File sorting mode
660
- :type sort_method: typing.Optional[typing.Union[int, str, typing.Any]]
711
+ :type sort_method: typing.Union[str, int, typing.Any]
661
712
  """
662
713
 
663
714
  ...
664
715
 
665
716
  def space_context_cycle(
666
- override_context=None,
667
- execution_context=None,
668
- undo=None,
669
- *,
670
- direction: typing.Optional[typing.Any] = "NEXT",
717
+ override_context: typing.Union[dict, bpy.types.Context] = None,
718
+ execution_context: typing.Union[str, int] = None,
719
+ undo: bool = None,
720
+ direction: typing.Any = "NEXT",
671
721
  ):
672
722
  """Cycle through the editor context by activating the next/previous one
673
723
 
674
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
675
- :type execution_context: typing.Optional[typing.Union[int, str]]
676
- :type undo: typing.Optional[bool]
724
+ :type override_context: typing.Union[dict, bpy.types.Context]
725
+ :type execution_context: typing.Union[str, int]
726
+ :type undo: bool
677
727
  :param direction: Direction, Direction to cycle through
678
- :type direction: typing.Optional[typing.Any]
728
+ :type direction: typing.Any
679
729
  """
680
730
 
681
731
  ...
682
732
 
683
733
  def space_type_set_or_cycle(
684
- override_context=None,
685
- execution_context=None,
686
- undo=None,
687
- *,
688
- space_type: typing.Optional[typing.Any] = "EMPTY",
734
+ override_context: typing.Union[dict, bpy.types.Context] = None,
735
+ execution_context: typing.Union[str, int] = None,
736
+ undo: bool = None,
737
+ space_type: typing.Any = "EMPTY",
689
738
  ):
690
739
  """Set the space type or cycle subtype
691
740
 
692
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
693
- :type execution_context: typing.Optional[typing.Union[int, str]]
694
- :type undo: typing.Optional[bool]
741
+ :type override_context: typing.Union[dict, bpy.types.Context]
742
+ :type execution_context: typing.Union[str, int]
743
+ :type undo: bool
695
744
  :param space_type: Type
696
- :type space_type: typing.Optional[typing.Any]
745
+ :type space_type: typing.Any
697
746
  """
698
747
 
699
748
  ...
700
749
 
701
- def spacedata_cleanup(override_context=None, execution_context=None, undo=None):
750
+ def spacedata_cleanup(
751
+ override_context: typing.Union[dict, bpy.types.Context] = None,
752
+ execution_context: typing.Union[str, int] = None,
753
+ undo: bool = None,
754
+ ):
702
755
  """Remove unused settings for invisible editors
703
756
 
704
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
705
- :type execution_context: typing.Optional[typing.Union[int, str]]
706
- :type undo: typing.Optional[bool]
757
+ :type override_context: typing.Union[dict, bpy.types.Context]
758
+ :type execution_context: typing.Union[str, int]
759
+ :type undo: bool
707
760
  """
708
761
 
709
762
  ...
710
763
 
711
764
  def userpref_show(
712
- override_context=None,
713
- execution_context=None,
714
- undo=None,
715
- *,
716
- section: typing.Optional[typing.Any] = "INTERFACE",
765
+ override_context: typing.Union[dict, bpy.types.Context] = None,
766
+ execution_context: typing.Union[str, int] = None,
767
+ undo: bool = None,
768
+ section: typing.Any = "INTERFACE",
717
769
  ):
718
770
  """Edit user preferences and system settings
719
771
 
720
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
721
- :type execution_context: typing.Optional[typing.Union[int, str]]
722
- :type undo: typing.Optional[bool]
772
+ :type override_context: typing.Union[dict, bpy.types.Context]
773
+ :type execution_context: typing.Union[str, int]
774
+ :type undo: bool
723
775
  :param section: Section to activate in the Preferences
724
- :type section: typing.Optional[typing.Any]
776
+ :type section: typing.Any
725
777
  """
726
778
 
727
779
  ...
728
780
 
729
781
  def workspace_cycle(
730
- override_context=None,
731
- execution_context=None,
732
- undo=None,
733
- *,
734
- direction: typing.Optional[typing.Any] = "NEXT",
782
+ override_context: typing.Union[dict, bpy.types.Context] = None,
783
+ execution_context: typing.Union[str, int] = None,
784
+ undo: bool = None,
785
+ direction: typing.Any = "NEXT",
735
786
  ):
736
787
  """Cycle through workspaces
737
788
 
738
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
739
- :type execution_context: typing.Optional[typing.Union[int, str]]
740
- :type undo: typing.Optional[bool]
789
+ :type override_context: typing.Union[dict, bpy.types.Context]
790
+ :type execution_context: typing.Union[str, int]
791
+ :type undo: bool
741
792
  :param direction: Direction, Direction to cycle through
742
- :type direction: typing.Optional[typing.Any]
793
+ :type direction: typing.Any
743
794
  """
744
795
 
745
796
  ...