fake-bpy-module 20240210__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 (309) hide show
  1. addon_utils/__init__.pyi +54 -11
  2. animsys_refactor/__init__.pyi +36 -7
  3. aud/__init__.pyi +307 -321
  4. bgl/__init__.pyi +2926 -865
  5. bl_app_override/__init__.pyi +14 -4
  6. bl_app_override/helpers/__init__.pyi +24 -3
  7. bl_app_template_utils/__init__.pyi +19 -5
  8. bl_console_utils/__init__.pyi +0 -1
  9. bl_console_utils/autocomplete/__init__.pyi +2 -3
  10. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -6
  11. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -4
  12. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -6
  13. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -3
  14. bl_i18n_utils/__init__.pyi +2 -3
  15. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -16
  16. bl_i18n_utils/merge_po/__init__.pyi +4 -2
  17. bl_i18n_utils/settings/__init__.pyi +53 -7
  18. bl_i18n_utils/utils/__init__.pyi +332 -45
  19. bl_i18n_utils/utils_cli/__init__.pyi +29 -7
  20. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -2
  21. bl_i18n_utils/utils_rtl/__init__.pyi +9 -3
  22. bl_keymap_utils/__init__.pyi +2 -3
  23. bl_keymap_utils/io/__init__.pyi +44 -10
  24. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -2
  25. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -2
  26. bl_keymap_utils/platform_helpers/__init__.pyi +9 -3
  27. bl_keymap_utils/versioning/__init__.pyi +4 -2
  28. bl_math/__init__.pyi +21 -22
  29. bl_operators/__init__.pyi +30 -24
  30. bl_operators/add_mesh_torus/__init__.pyi +171 -38
  31. bl_operators/anim/__init__.pyi +1065 -227
  32. bl_operators/assets/__init__.pyi +427 -93
  33. bl_operators/bmesh/__init__.pyi +0 -1
  34. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -10
  35. bl_operators/clip/__init__.pyi +1342 -288
  36. bl_operators/console/__init__.pyi +647 -141
  37. bl_operators/constraint/__init__.pyi +524 -113
  38. bl_operators/file/__init__.pyi +396 -85
  39. bl_operators/freestyle/__init__.pyi +532 -114
  40. bl_operators/geometry_nodes/__init__.pyi +2412 -597
  41. bl_operators/image/__init__.pyi +380 -83
  42. bl_operators/mesh/__init__.pyi +401 -86
  43. bl_operators/node/__init__.pyi +1756 -385
  44. bl_operators/object/__init__.pyi +2022 -553
  45. bl_operators/object_align/__init__.pyi +145 -32
  46. bl_operators/object_quick_effects/__init__.pyi +555 -125
  47. bl_operators/object_randomize_transform/__init__.pyi +136 -33
  48. bl_operators/presets/__init__.pyi +3516 -709
  49. bl_operators/rigidbody/__init__.pyi +401 -86
  50. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -30
  51. bl_operators/sequencer/__init__.pyi +731 -150
  52. bl_operators/spreadsheet/__init__.pyi +145 -31
  53. bl_operators/userpref/__init__.pyi +3416 -825
  54. bl_operators/uvcalc_follow_active/__init__.pyi +149 -33
  55. bl_operators/uvcalc_lightmap/__init__.pyi +187 -35
  56. bl_operators/uvcalc_transform/__init__.pyi +344 -74
  57. bl_operators/vertexpaint_dirt/__init__.pyi +140 -31
  58. bl_operators/view3d/__init__.pyi +697 -147
  59. bl_operators/wm/__init__.pyi +6287 -1534
  60. bl_previews_utils/__init__.pyi +0 -1
  61. bl_previews_utils/bl_previews_render/__init__.pyi +34 -8
  62. bl_rna_utils/__init__.pyi +0 -1
  63. bl_rna_utils/data_path/__init__.pyi +12 -3
  64. bl_text_utils/__init__.pyi +0 -1
  65. bl_text_utils/external_editor/__init__.pyi +4 -2
  66. bl_ui/__init__.pyi +567 -170
  67. bl_ui/anim/__init__.pyi +164 -34
  68. bl_ui/asset_shelf/__init__.pyi +146 -32
  69. bl_ui/generic_ui_list/__init__.pyi +471 -100
  70. bl_ui/node_add_menu/__init__.pyi +196 -41
  71. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -622
  72. bl_ui/node_add_menu_geometry/__init__.pyi +8075 -1592
  73. bl_ui/node_add_menu_shader/__init__.pyi +1709 -349
  74. bl_ui/node_add_menu_texture/__init__.pyi +1502 -306
  75. bl_ui/properties_animviz/__init__.pyi +32 -3
  76. bl_ui/properties_collection/__init__.pyi +787 -180
  77. bl_ui/properties_constraint/__init__.pyi +28635 -5524
  78. bl_ui/properties_data_armature/__init__.pyi +1905 -449
  79. bl_ui/properties_data_bone/__init__.pyi +1560 -337
  80. bl_ui/properties_data_camera/__init__.pyi +2269 -495
  81. bl_ui/properties_data_curve/__init__.pyi +2362 -535
  82. bl_ui/properties_data_curves/__init__.pyi +951 -204
  83. bl_ui/properties_data_empty/__init__.pyi +317 -70
  84. bl_ui/properties_data_gpencil/__init__.pyi +2924 -735
  85. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -189
  86. bl_ui/properties_data_lattice/__init__.pyi +472 -105
  87. bl_ui/properties_data_light/__init__.pyi +1570 -338
  88. bl_ui/properties_data_lightprobe/__init__.pyi +938 -209
  89. bl_ui/properties_data_mesh/__init__.pyi +3205 -768
  90. bl_ui/properties_data_metaball/__init__.pyi +774 -171
  91. bl_ui/properties_data_modifier/__init__.pyi +1554 -329
  92. bl_ui/properties_data_pointcloud/__init__.pyi +821 -195
  93. bl_ui/properties_data_shaderfx/__init__.pyi +154 -35
  94. bl_ui/properties_data_speaker/__init__.pyi +782 -169
  95. bl_ui/properties_data_volume/__init__.pyi +1243 -282
  96. bl_ui/properties_freestyle/__init__.pyi +4071 -1031
  97. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -484
  98. bl_ui/properties_mask_common/__init__.pyi +1256 -250
  99. bl_ui/properties_material/__init__.pyi +2351 -543
  100. bl_ui/properties_material_gpencil/__init__.pyi +1590 -366
  101. bl_ui/properties_object/__init__.pyi +2179 -513
  102. bl_ui/properties_output/__init__.pyi +2956 -706
  103. bl_ui/properties_paint_common/__init__.pyi +947 -141
  104. bl_ui/properties_particle/__init__.pyi +8322 -1971
  105. bl_ui/properties_physics_cloth/__init__.pyi +2254 -509
  106. bl_ui/properties_physics_common/__init__.pyi +200 -45
  107. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -966
  108. bl_ui/properties_physics_field/__init__.pyi +1695 -365
  109. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1281
  110. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -33
  111. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -279
  112. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -484
  113. bl_ui/properties_physics_softbody/__init__.pyi +2394 -543
  114. bl_ui/properties_render/__init__.pyi +8312 -1934
  115. bl_ui/properties_scene/__init__.pyi +2211 -540
  116. bl_ui/properties_texture/__init__.pyi +4185 -1014
  117. bl_ui/properties_view_layer/__init__.pyi +2803 -665
  118. bl_ui/properties_workspace/__init__.pyi +626 -149
  119. bl_ui/properties_world/__init__.pyi +1092 -235
  120. bl_ui/space_clip/__init__.pyi +11475 -2806
  121. bl_ui/space_console/__init__.pyi +967 -203
  122. bl_ui/space_dopesheet/__init__.pyi +4260 -967
  123. bl_ui/space_filebrowser/__init__.pyi +4852 -1188
  124. bl_ui/space_graph/__init__.pyi +3251 -703
  125. bl_ui/space_image/__init__.pyi +12218 -2968
  126. bl_ui/space_info/__init__.pyi +964 -201
  127. bl_ui/space_nla/__init__.pyi +2756 -585
  128. bl_ui/space_node/__init__.pyi +5661 -1266
  129. bl_ui/space_outliner/__init__.pyi +2294 -479
  130. bl_ui/space_properties/__init__.pyi +417 -93
  131. bl_ui/space_sequencer/__init__.pyi +12436 -3010
  132. bl_ui/space_spreadsheet/__init__.pyi +184 -37
  133. bl_ui/space_statusbar/__init__.pyi +135 -31
  134. bl_ui/space_text/__init__.pyi +2556 -543
  135. bl_ui/space_time/__init__.pyi +1151 -244
  136. bl_ui/space_toolsystem_common/__init__.pyi +368 -67
  137. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -229
  138. bl_ui/space_topbar/__init__.pyi +4214 -888
  139. bl_ui/space_userpref/__init__.pyi +13920 -3468
  140. bl_ui/space_view3d/__init__.pyi +42751 -9613
  141. bl_ui/space_view3d_toolbar/__init__.pyi +16379 -3860
  142. bl_ui/utils/__init__.pyi +42 -5
  143. bl_ui_utils/__init__.pyi +0 -1
  144. bl_ui_utils/bug_report_url/__init__.pyi +4 -2
  145. bl_ui_utils/layout/__init__.pyi +4 -2
  146. blend_render_info/__init__.pyi +13 -4
  147. blf/__init__.pyi +15 -18
  148. bmesh/__init__.pyi +18 -18
  149. bmesh/geometry/__init__.pyi +5 -6
  150. bmesh/ops/__init__.pyi +1337 -1158
  151. bmesh/types/__init__.pyi +464 -374
  152. bmesh/utils/__init__.pyi +64 -70
  153. bpy/__init__.pyi +6 -7
  154. bpy/app/__init__.pyi +36 -38
  155. bpy/app/handlers/__init__.pyi +37 -38
  156. bpy/app/icons/__init__.pyi +8 -11
  157. bpy/app/timers/__init__.pyi +18 -17
  158. bpy/app/translations/__init__.pyi +32 -30
  159. bpy/msgbus/__init__.pyi +25 -20
  160. bpy/ops/__init__.pyi +63 -64
  161. bpy/ops/action/__init__.pyi +408 -436
  162. bpy/ops/anim/__init__.pyi +459 -577
  163. bpy/ops/armature/__init__.pyi +396 -498
  164. bpy/ops/asset/__init__.pyi +187 -213
  165. bpy/ops/boid/__init__.pyi +50 -68
  166. bpy/ops/brush/__init__.pyi +72 -97
  167. bpy/ops/buttons/__init__.pyi +202 -193
  168. bpy/ops/cachefile/__init__.pyi +198 -188
  169. bpy/ops/camera/__init__.pyi +24 -31
  170. bpy/ops/clip/__init__.pyi +1021 -1082
  171. bpy/ops/cloth/__init__.pyi +11 -15
  172. bpy/ops/collection/__init__.pyi +36 -51
  173. bpy/ops/console/__init__.pyi +155 -209
  174. bpy/ops/constraint/__init__.pyi +286 -254
  175. bpy/ops/curve/__init__.pyi +597 -659
  176. bpy/ops/curves/__init__.pyi +191 -225
  177. bpy/ops/cycles/__init__.pyi +21 -30
  178. bpy/ops/dpaint/__init__.pyi +34 -47
  179. bpy/ops/ed/__init__.pyi +160 -176
  180. bpy/ops/export_anim/__init__.pyi +51 -34
  181. bpy/ops/export_mesh/__init__.pyi +47 -45
  182. bpy/ops/export_scene/__init__.pyi +659 -504
  183. bpy/ops/file/__init__.pyi +469 -474
  184. bpy/ops/fluid/__init__.pyi +89 -119
  185. bpy/ops/font/__init__.pyi +325 -361
  186. bpy/ops/geometry/__init__.pyi +86 -114
  187. bpy/ops/gizmogroup/__init__.pyi +22 -28
  188. bpy/ops/gpencil/__init__.pyi +1900 -1976
  189. bpy/ops/graph/__init__.pyi +875 -894
  190. bpy/ops/grease_pencil/__init__.pyi +572 -508
  191. bpy/ops/image/__init__.pyi +805 -855
  192. bpy/ops/import_anim/__init__.pyi +66 -46
  193. bpy/ops/import_curve/__init__.pyi +7 -11
  194. bpy/ops/import_mesh/__init__.pyi +19 -25
  195. bpy/ops/import_scene/__init__.pyi +164 -147
  196. bpy/ops/info/__init__.pyi +88 -85
  197. bpy/ops/lattice/__init__.pyi +86 -90
  198. bpy/ops/marker/__init__.pyi +135 -146
  199. bpy/ops/mask/__init__.pyi +372 -436
  200. bpy/ops/material/__init__.pyi +18 -25
  201. bpy/ops/mball/__init__.pyi +93 -99
  202. bpy/ops/mesh/__init__.pyi +2525 -2664
  203. bpy/ops/nla/__init__.pyi +398 -455
  204. bpy/ops/node/__init__.pyi +1015 -1207
  205. bpy/ops/object/__init__.pyi +3423 -3390
  206. bpy/ops/outliner/__init__.pyi +667 -685
  207. bpy/ops/paint/__init__.pyi +719 -672
  208. bpy/ops/paintcurve/__init__.pyi +64 -85
  209. bpy/ops/palette/__init__.pyi +48 -67
  210. bpy/ops/particle/__init__.pyi +323 -367
  211. bpy/ops/pose/__init__.pyi +569 -474
  212. bpy/ops/poselib/__init__.pyi +77 -100
  213. bpy/ops/preferences/__init__.pyi +460 -512
  214. bpy/ops/ptcache/__init__.pyi +46 -63
  215. bpy/ops/render/__init__.pyi +121 -155
  216. bpy/ops/rigidbody/__init__.pyi +148 -143
  217. bpy/ops/scene/__init__.pyi +336 -380
  218. bpy/ops/screen/__init__.pyi +454 -530
  219. bpy/ops/script/__init__.pyi +19 -28
  220. bpy/ops/sculpt/__init__.pyi +734 -587
  221. bpy/ops/sculpt_curves/__init__.pyi +51 -56
  222. bpy/ops/sequencer/__init__.pyi +1617 -1500
  223. bpy/ops/sound/__init__.pyi +392 -315
  224. bpy/ops/spreadsheet/__init__.pyi +31 -42
  225. bpy/ops/surface/__init__.pyi +198 -163
  226. bpy/ops/text/__init__.pyi +479 -545
  227. bpy/ops/text_editor/__init__.pyi +11 -15
  228. bpy/ops/texture/__init__.pyi +26 -36
  229. bpy/ops/transform/__init__.pyi +825 -941
  230. bpy/ops/ui/__init__.pyi +246 -295
  231. bpy/ops/uilist/__init__.pyi +34 -38
  232. bpy/ops/uv/__init__.pyi +912 -824
  233. bpy/ops/view2d/__init__.pyi +157 -197
  234. bpy/ops/view3d/__init__.pyi +777 -878
  235. bpy/ops/wm/__init__.pyi +4102 -3595
  236. bpy/ops/workspace/__init__.pyi +42 -58
  237. bpy/ops/world/__init__.pyi +6 -9
  238. bpy/path/__init__.pyi +166 -109
  239. bpy/props/__init__.pyi +478 -395
  240. bpy/types/__init__.pyi +87194 -81467
  241. bpy/utils/__init__.pyi +325 -169
  242. bpy/utils/previews/__init__.pyi +108 -21
  243. bpy/utils/units/__init__.pyi +37 -39
  244. bpy_extras/__init__.pyi +4 -9
  245. bpy_extras/anim_utils/__init__.pyi +25 -55
  246. bpy_extras/asset_utils/__init__.pyi +3 -13
  247. bpy_extras/id_map_utils/__init__.pyi +1 -4
  248. bpy_extras/image_utils/__init__.pyi +33 -23
  249. bpy_extras/io_utils/__init__.pyi +116 -66
  250. bpy_extras/keyconfig_utils/__init__.pyi +5 -3
  251. bpy_extras/mesh_utils/__init__.pyi +42 -34
  252. bpy_extras/node_utils/__init__.pyi +4 -4
  253. bpy_extras/object_utils/__init__.pyi +58 -43
  254. bpy_extras/view3d_utils/__init__.pyi +64 -63
  255. bpy_restrict_state/__init__.pyi +14 -2
  256. bpy_types/__init__.pyi +3873 -998
  257. console_python/__init__.pyi +41 -8
  258. console_shell/__init__.pyi +24 -6
  259. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  260. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  261. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  262. freestyle/__init__.pyi +4 -5
  263. freestyle/chainingiterators/__init__.pyi +229 -73
  264. freestyle/functions/__init__.pyi +624 -402
  265. freestyle/predicates/__init__.pyi +381 -169
  266. freestyle/shaders/__init__.pyi +424 -155
  267. freestyle/types/__init__.pyi +1572 -726
  268. freestyle/utils/ContextFunctions/__init__.pyi +54 -43
  269. freestyle/utils/__init__.pyi +67 -31
  270. gpu/__init__.pyi +3 -4
  271. gpu/capabilities/__init__.pyi +57 -37
  272. gpu/matrix/__init__.pyi +14 -17
  273. gpu/platform/__init__.pyi +5 -6
  274. gpu/select/__init__.pyi +2 -5
  275. gpu/shader/__init__.pyi +14 -12
  276. gpu/state/__init__.pyi +48 -62
  277. gpu/texture/__init__.pyi +7 -7
  278. gpu/types/__init__.pyi +670 -229
  279. gpu_extras/__init__.pyi +1 -2
  280. gpu_extras/batch/__init__.pyi +27 -6
  281. gpu_extras/presets/__init__.pyi +67 -27
  282. graphviz_export/__init__.pyi +9 -3
  283. idprop/__init__.pyi +0 -1
  284. idprop/types/__init__.pyi +42 -13
  285. imbuf/__init__.pyi +6 -10
  286. imbuf/types/__init__.pyi +8 -16
  287. keyingsets_builtins/__init__.pyi +3149 -702
  288. keyingsets_utils/__init__.pyi +69 -15
  289. mathutils/__init__.pyi +951 -876
  290. mathutils/bvhtree/__init__.pyi +47 -48
  291. mathutils/geometry/__init__.pyi +237 -242
  292. mathutils/interpolate/__init__.pyi +3 -6
  293. mathutils/kdtree/__init__.pyi +23 -26
  294. mathutils/noise/__init__.pyi +50 -51
  295. nodeitems_builtins/__init__.pyi +50 -11
  296. nodeitems_utils/__init__.pyi +58 -11
  297. rna_info/__init__.pyi +230 -27
  298. rna_keymap_ui/__init__.pyi +29 -7
  299. rna_prop_ui/__init__.pyi +69 -13
  300. rna_xml/__init__.pyi +29 -7
  301. sys_info/__init__.pyi +4 -2
  302. bpy_extras/bmesh_utils/__init__.pyi +0 -7
  303. bpy_extras/extensions/__init__.pyi +0 -5
  304. bpy_extras/extensions/junction_module/__init__.pyi +0 -13
  305. bpy_extras/node_shader_utils/__init__.pyi +0 -132
  306. bpy_extras/wm_utils/__init__.pyi +0 -5
  307. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -30
  308. fake_bpy_module-20240210.dist-info/RECORD +0 -349
  309. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
bpy/ops/file/__init__.pyi CHANGED
@@ -1,640 +1,648 @@
1
- import sys
2
1
  import typing
3
2
  import bpy.types
4
3
 
5
4
  GenericType = typing.TypeVar("GenericType")
6
5
 
7
6
  def autopack_toggle(
8
- override_context: typing.Optional[
9
- typing.Union[typing.Dict, "bpy.types.Context"]
10
- ] = None,
11
- execution_context: typing.Optional[typing.Union[str, int]] = None,
12
- undo: typing.Optional[bool] = None,
7
+ override_context: typing.Union[dict, bpy.types.Context] = None,
8
+ execution_context: typing.Union[str, int] = None,
9
+ undo: bool = None,
13
10
  ):
14
11
  """Automatically pack all external files into the .blend file
15
12
 
16
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
17
- :type execution_context: typing.Optional[typing.Union[str, int]]
18
- :type undo: typing.Optional[bool]
13
+ :type override_context: typing.Union[dict, bpy.types.Context]
14
+ :type execution_context: typing.Union[str, int]
15
+ :type undo: bool
19
16
  """
20
17
 
21
18
  ...
22
19
 
23
20
  def bookmark_add(
24
- override_context: typing.Optional[
25
- typing.Union[typing.Dict, "bpy.types.Context"]
26
- ] = None,
27
- execution_context: typing.Optional[typing.Union[str, int]] = None,
28
- undo: typing.Optional[bool] = None,
21
+ override_context: typing.Union[dict, bpy.types.Context] = None,
22
+ execution_context: typing.Union[str, int] = None,
23
+ undo: bool = None,
29
24
  ):
30
25
  """Add a bookmark for the selected/active directory
31
26
 
32
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
33
- :type execution_context: typing.Optional[typing.Union[str, int]]
34
- :type undo: typing.Optional[bool]
27
+ :type override_context: typing.Union[dict, bpy.types.Context]
28
+ :type execution_context: typing.Union[str, int]
29
+ :type undo: bool
35
30
  """
36
31
 
37
32
  ...
38
33
 
39
34
  def bookmark_cleanup(
40
- override_context: typing.Optional[
41
- typing.Union[typing.Dict, "bpy.types.Context"]
42
- ] = None,
43
- execution_context: typing.Optional[typing.Union[str, int]] = None,
44
- undo: typing.Optional[bool] = None,
35
+ override_context: typing.Union[dict, bpy.types.Context] = None,
36
+ execution_context: typing.Union[str, int] = None,
37
+ undo: bool = None,
45
38
  ):
46
39
  """Delete all invalid bookmarks
47
40
 
48
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
49
- :type execution_context: typing.Optional[typing.Union[str, int]]
50
- :type undo: typing.Optional[bool]
41
+ :type override_context: typing.Union[dict, bpy.types.Context]
42
+ :type execution_context: typing.Union[str, int]
43
+ :type undo: bool
51
44
  """
52
45
 
53
46
  ...
54
47
 
55
48
  def bookmark_delete(
56
- override_context: typing.Optional[
57
- typing.Union[typing.Dict, "bpy.types.Context"]
58
- ] = None,
59
- execution_context: typing.Optional[typing.Union[str, int]] = None,
60
- undo: typing.Optional[bool] = None,
61
- *,
62
- index: typing.Optional[typing.Any] = -1,
49
+ override_context: typing.Union[dict, bpy.types.Context] = None,
50
+ execution_context: typing.Union[str, int] = None,
51
+ undo: bool = None,
52
+ index: typing.Any = -1,
63
53
  ):
64
54
  """Delete selected bookmark
65
55
 
66
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
67
- :type execution_context: typing.Optional[typing.Union[str, int]]
68
- :type undo: typing.Optional[bool]
56
+ :type override_context: typing.Union[dict, bpy.types.Context]
57
+ :type execution_context: typing.Union[str, int]
58
+ :type undo: bool
69
59
  :param index: Index
70
- :type index: typing.Optional[typing.Any]
60
+ :type index: typing.Any
71
61
  """
72
62
 
73
63
  ...
74
64
 
75
65
  def bookmark_move(
76
- override_context: typing.Optional[
77
- typing.Union[typing.Dict, "bpy.types.Context"]
78
- ] = None,
79
- execution_context: typing.Optional[typing.Union[str, int]] = None,
80
- undo: typing.Optional[bool] = None,
81
- *,
82
- direction: typing.Optional[typing.Any] = "TOP",
66
+ override_context: typing.Union[dict, bpy.types.Context] = None,
67
+ execution_context: typing.Union[str, int] = None,
68
+ undo: bool = None,
69
+ direction: typing.Any = "TOP",
83
70
  ):
84
71
  """Move the active bookmark up/down in the list
85
72
 
86
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
87
- :type execution_context: typing.Optional[typing.Union[str, int]]
88
- :type undo: typing.Optional[bool]
89
- :param direction: Direction, Direction to move the active bookmark towards * ``TOP`` Top -- Top of the list. * ``UP`` Up. * ``DOWN`` Down. * ``BOTTOM`` Bottom -- Bottom of the list.
90
- :type direction: typing.Optional[typing.Any]
73
+ :type override_context: typing.Union[dict, bpy.types.Context]
74
+ :type execution_context: typing.Union[str, int]
75
+ :type undo: bool
76
+ :param direction: Direction, Direction to move the active bookmark towards
77
+
78
+ TOP
79
+ Top -- Top of the list.
80
+
81
+ UP
82
+ Up.
83
+
84
+ DOWN
85
+ Down.
86
+
87
+ BOTTOM
88
+ Bottom -- Bottom of the list.
89
+ :type direction: typing.Any
91
90
  """
92
91
 
93
92
  ...
94
93
 
95
94
  def cancel(
96
- override_context: typing.Optional[
97
- typing.Union[typing.Dict, "bpy.types.Context"]
98
- ] = None,
99
- execution_context: typing.Optional[typing.Union[str, int]] = None,
100
- undo: typing.Optional[bool] = None,
95
+ override_context: typing.Union[dict, bpy.types.Context] = None,
96
+ execution_context: typing.Union[str, int] = None,
97
+ undo: bool = None,
101
98
  ):
102
99
  """Cancel loading of selected file
103
100
 
104
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
105
- :type execution_context: typing.Optional[typing.Union[str, int]]
106
- :type undo: typing.Optional[bool]
101
+ :type override_context: typing.Union[dict, bpy.types.Context]
102
+ :type execution_context: typing.Union[str, int]
103
+ :type undo: bool
107
104
  """
108
105
 
109
106
  ...
110
107
 
111
108
  def delete(
112
- override_context: typing.Optional[
113
- typing.Union[typing.Dict, "bpy.types.Context"]
114
- ] = None,
115
- execution_context: typing.Optional[typing.Union[str, int]] = None,
116
- undo: typing.Optional[bool] = None,
109
+ override_context: typing.Union[dict, bpy.types.Context] = None,
110
+ execution_context: typing.Union[str, int] = None,
111
+ undo: bool = None,
117
112
  ):
118
113
  """Move selected files to the trash or recycle bin
119
114
 
120
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
121
- :type execution_context: typing.Optional[typing.Union[str, int]]
122
- :type undo: typing.Optional[bool]
115
+ :type override_context: typing.Union[dict, bpy.types.Context]
116
+ :type execution_context: typing.Union[str, int]
117
+ :type undo: bool
123
118
  """
124
119
 
125
120
  ...
126
121
 
127
122
  def directory_new(
128
- override_context: typing.Optional[
129
- typing.Union[typing.Dict, "bpy.types.Context"]
130
- ] = None,
131
- execution_context: typing.Optional[typing.Union[str, int]] = None,
132
- undo: typing.Optional[bool] = None,
133
- *,
123
+ override_context: typing.Union[dict, bpy.types.Context] = None,
124
+ execution_context: typing.Union[str, int] = None,
125
+ undo: bool = None,
134
126
  directory: typing.Union[str, typing.Any] = "",
135
- open: typing.Optional[typing.Union[bool, typing.Any]] = False,
136
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
127
+ open: typing.Union[bool, typing.Any] = False,
128
+ confirm: typing.Union[bool, typing.Any] = True,
137
129
  ):
138
130
  """Create a new directory
139
131
 
140
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
141
- :type execution_context: typing.Optional[typing.Union[str, int]]
142
- :type undo: typing.Optional[bool]
132
+ :type override_context: typing.Union[dict, bpy.types.Context]
133
+ :type execution_context: typing.Union[str, int]
134
+ :type undo: bool
143
135
  :param directory: Directory, Name of new directory
144
136
  :type directory: typing.Union[str, typing.Any]
145
137
  :param open: Open, Open new directory
146
- :type open: typing.Optional[typing.Union[bool, typing.Any]]
138
+ :type open: typing.Union[bool, typing.Any]
147
139
  :param confirm: Confirm, Prompt for confirmation
148
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
140
+ :type confirm: typing.Union[bool, typing.Any]
149
141
  """
150
142
 
151
143
  ...
152
144
 
153
145
  def edit_directory_path(
154
- override_context: typing.Optional[
155
- typing.Union[typing.Dict, "bpy.types.Context"]
156
- ] = None,
157
- execution_context: typing.Optional[typing.Union[str, int]] = None,
158
- undo: typing.Optional[bool] = None,
146
+ override_context: typing.Union[dict, bpy.types.Context] = None,
147
+ execution_context: typing.Union[str, int] = None,
148
+ undo: bool = None,
159
149
  ):
160
150
  """Start editing directory field
161
151
 
162
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
163
- :type execution_context: typing.Optional[typing.Union[str, int]]
164
- :type undo: typing.Optional[bool]
152
+ :type override_context: typing.Union[dict, bpy.types.Context]
153
+ :type execution_context: typing.Union[str, int]
154
+ :type undo: bool
165
155
  """
166
156
 
167
157
  ...
168
158
 
169
159
  def execute(
170
- override_context: typing.Optional[
171
- typing.Union[typing.Dict, "bpy.types.Context"]
172
- ] = None,
173
- execution_context: typing.Optional[typing.Union[str, int]] = None,
174
- undo: typing.Optional[bool] = None,
160
+ override_context: typing.Union[dict, bpy.types.Context] = None,
161
+ execution_context: typing.Union[str, int] = None,
162
+ undo: bool = None,
175
163
  ):
176
164
  """Execute selected file
177
165
 
178
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
179
- :type execution_context: typing.Optional[typing.Union[str, int]]
180
- :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
181
169
  """
182
170
 
183
171
  ...
184
172
 
185
173
  def external_operation(
186
- override_context: typing.Optional[
187
- typing.Union[typing.Dict, "bpy.types.Context"]
188
- ] = None,
189
- execution_context: typing.Optional[typing.Union[str, int]] = None,
190
- undo: typing.Optional[bool] = None,
191
- *,
174
+ override_context: typing.Union[dict, bpy.types.Context] = None,
175
+ execution_context: typing.Union[str, int] = None,
176
+ undo: bool = None,
192
177
  filepath: typing.Union[str, typing.Any] = "",
193
- operation: typing.Optional[typing.Any] = "OPEN",
178
+ operation: typing.Any = "OPEN",
194
179
  ):
195
180
  """Perform external operation on a file or folder
196
181
 
197
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
198
- :type execution_context: typing.Optional[typing.Union[str, int]]
199
- :type undo: typing.Optional[bool]
200
- :param filepath: File or folder path
201
- :type filepath: typing.Union[str, typing.Any]
202
- :param operation: Operation, Operation to perform on the file or path * ``OPEN`` Open -- Open the file. * ``FOLDER_OPEN`` Open Folder -- Open the folder. * ``EDIT`` Edit -- Edit the file. * ``NEW`` New -- Create a new file of this type. * ``FIND`` Find File -- Search for files of this type. * ``SHOW`` Show -- Show this file. * ``PLAY`` Play -- Play this file. * ``BROWSE`` Browse -- Browse this file. * ``PREVIEW`` Preview -- Preview this file. * ``PRINT`` Print -- Print this file. * ``INSTALL`` Install -- Install this file. * ``RUNAS`` Run As User -- Run as specific user. * ``PROPERTIES`` Properties -- Show OS Properties for this item. * ``FOLDER_FIND`` Find in Folder -- Search for items in this folder. * ``CMD`` Command Prompt Here -- Open a command prompt here.
203
- :type operation: typing.Optional[typing.Any]
182
+ :type override_context: typing.Union[dict, bpy.types.Context]
183
+ :type execution_context: typing.Union[str, int]
184
+ :type undo: bool
185
+ :param filepath: File or folder path
186
+ :type filepath: typing.Union[str, typing.Any]
187
+ :param operation: Operation, Operation to perform on the file or path
188
+
189
+ OPEN
190
+ Open -- Open the file.
191
+
192
+ FOLDER_OPEN
193
+ Open Folder -- Open the folder.
194
+
195
+ EDIT
196
+ Edit -- Edit the file.
197
+
198
+ NEW
199
+ New -- Create a new file of this type.
200
+
201
+ FIND
202
+ Find File -- Search for files of this type.
203
+
204
+ SHOW
205
+ Show -- Show this file.
206
+
207
+ PLAY
208
+ Play -- Play this file.
209
+
210
+ BROWSE
211
+ Browse -- Browse this file.
212
+
213
+ PREVIEW
214
+ Preview -- Preview this file.
215
+
216
+ PRINT
217
+ Print -- Print this file.
218
+
219
+ INSTALL
220
+ Install -- Install this file.
221
+
222
+ RUNAS
223
+ Run As User -- Run as specific user.
224
+
225
+ PROPERTIES
226
+ Properties -- Show OS Properties for this item.
227
+
228
+ FOLDER_FIND
229
+ Find in Folder -- Search for items in this folder.
230
+
231
+ CMD
232
+ Command Prompt Here -- Open a command prompt here.
233
+ :type operation: typing.Any
204
234
  """
205
235
 
206
236
  ...
207
237
 
208
238
  def filenum(
209
- override_context: typing.Optional[
210
- typing.Union[typing.Dict, "bpy.types.Context"]
211
- ] = None,
212
- execution_context: typing.Optional[typing.Union[str, int]] = None,
213
- undo: typing.Optional[bool] = None,
214
- *,
215
- increment: typing.Optional[typing.Any] = 1,
239
+ override_context: typing.Union[dict, bpy.types.Context] = None,
240
+ execution_context: typing.Union[str, int] = None,
241
+ undo: bool = None,
242
+ increment: typing.Any = 1,
216
243
  ):
217
244
  """Increment number in filename
218
245
 
219
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
220
- :type execution_context: typing.Optional[typing.Union[str, int]]
221
- :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
222
249
  :param increment: Increment
223
- :type increment: typing.Optional[typing.Any]
250
+ :type increment: typing.Any
224
251
  """
225
252
 
226
253
  ...
227
254
 
228
255
  def filepath_drop(
229
- override_context: typing.Optional[
230
- typing.Union[typing.Dict, "bpy.types.Context"]
231
- ] = None,
232
- execution_context: typing.Optional[typing.Union[str, int]] = None,
233
- undo: typing.Optional[bool] = None,
234
- *,
256
+ override_context: typing.Union[dict, bpy.types.Context] = None,
257
+ execution_context: typing.Union[str, int] = None,
258
+ undo: bool = None,
235
259
  filepath: typing.Union[str, typing.Any] = "Path",
236
260
  ):
237
- """Undocumented, consider `contributing <https://developer.blender.org/>`__.
261
+ """Undocumented, consider contributing.
238
262
 
239
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
240
- :type execution_context: typing.Optional[typing.Union[str, int]]
241
- :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
242
266
  :type filepath: typing.Union[str, typing.Any]
243
267
  """
244
268
 
245
269
  ...
246
270
 
247
271
  def find_missing_files(
248
- override_context: typing.Optional[
249
- typing.Union[typing.Dict, "bpy.types.Context"]
250
- ] = None,
251
- execution_context: typing.Optional[typing.Union[str, int]] = None,
252
- undo: typing.Optional[bool] = None,
253
- *,
254
- find_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
272
+ override_context: typing.Union[dict, bpy.types.Context] = None,
273
+ execution_context: typing.Union[str, int] = None,
274
+ undo: bool = None,
275
+ find_all: typing.Union[bool, typing.Any] = False,
255
276
  directory: typing.Union[str, typing.Any] = "",
256
- hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
257
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
258
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
259
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
260
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
261
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
262
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
263
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
264
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
265
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
266
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
267
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
268
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
269
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
270
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
271
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
272
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
273
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = False,
274
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
275
- filemode: typing.Optional[typing.Any] = 9,
276
- display_type: typing.Optional[typing.Any] = "DEFAULT",
277
- sort_method: typing.Optional[typing.Union[str, int, typing.Any]] = "",
277
+ hide_props_region: typing.Union[bool, typing.Any] = True,
278
+ check_existing: typing.Union[bool, typing.Any] = False,
279
+ filter_blender: typing.Union[bool, typing.Any] = False,
280
+ filter_backup: typing.Union[bool, typing.Any] = False,
281
+ filter_image: typing.Union[bool, typing.Any] = False,
282
+ filter_movie: typing.Union[bool, typing.Any] = False,
283
+ filter_python: typing.Union[bool, typing.Any] = False,
284
+ filter_font: typing.Union[bool, typing.Any] = False,
285
+ filter_sound: typing.Union[bool, typing.Any] = False,
286
+ filter_text: typing.Union[bool, typing.Any] = False,
287
+ filter_archive: typing.Union[bool, typing.Any] = False,
288
+ filter_btx: typing.Union[bool, typing.Any] = False,
289
+ filter_collada: typing.Union[bool, typing.Any] = False,
290
+ filter_alembic: typing.Union[bool, typing.Any] = False,
291
+ filter_usd: typing.Union[bool, typing.Any] = False,
292
+ filter_obj: typing.Union[bool, typing.Any] = False,
293
+ filter_volume: typing.Union[bool, typing.Any] = False,
294
+ filter_folder: typing.Union[bool, typing.Any] = False,
295
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
296
+ filemode: typing.Any = 9,
297
+ display_type: typing.Any = "DEFAULT",
298
+ sort_method: typing.Union[str, int, typing.Any] = "",
278
299
  ):
279
300
  """Try to find missing external files
280
301
 
281
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
282
- :type execution_context: typing.Optional[typing.Union[str, int]]
283
- :type undo: typing.Optional[bool]
284
- :param find_all: Find All, Find all files in the search path (not just missing)
285
- :type find_all: typing.Optional[typing.Union[bool, typing.Any]]
286
- :param directory: Directory, Directory of the file
287
- :type directory: typing.Union[str, typing.Any]
288
- :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
289
- :type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
290
- :param check_existing: Check Existing, Check and warn on overwriting existing files
291
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
292
- :param filter_blender: Filter .blend files
293
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
294
- :param filter_backup: Filter .blend files
295
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
296
- :param filter_image: Filter image files
297
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
298
- :param filter_movie: Filter movie files
299
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
300
- :param filter_python: Filter Python files
301
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
302
- :param filter_font: Filter font files
303
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
304
- :param filter_sound: Filter sound files
305
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
306
- :param filter_text: Filter text files
307
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
308
- :param filter_archive: Filter archive files
309
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
310
- :param filter_btx: Filter btx files
311
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
312
- :param filter_collada: Filter COLLADA files
313
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
314
- :param filter_alembic: Filter Alembic files
315
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
316
- :param filter_usd: Filter USD files
317
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
318
- :param filter_obj: Filter OBJ files
319
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
320
- :param filter_volume: Filter OpenVDB volume files
321
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
322
- :param filter_folder: Filter folders
323
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
324
- :param filter_blenlib: Filter Blender IDs
325
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
326
- :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
327
- :type filemode: typing.Optional[typing.Any]
328
- :param display_type: Display Type * ``DEFAULT`` Default -- Automatically determine display type for files. * ``LIST_VERTICAL`` Short List -- Display files as short list. * ``LIST_HORIZONTAL`` Long List -- Display files as a detailed list. * ``THUMBNAIL`` Thumbnails -- Display files as thumbnails.
329
- :type display_type: typing.Optional[typing.Any]
330
- :param sort_method: File sorting mode
331
- :type sort_method: typing.Optional[typing.Union[str, int, typing.Any]]
302
+ :type override_context: typing.Union[dict, bpy.types.Context]
303
+ :type execution_context: typing.Union[str, int]
304
+ :type undo: bool
305
+ :param find_all: Find All, Find all files in the search path (not just missing)
306
+ :type find_all: typing.Union[bool, typing.Any]
307
+ :param directory: Directory, Directory of the file
308
+ :type directory: typing.Union[str, typing.Any]
309
+ :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
310
+ :type hide_props_region: typing.Union[bool, typing.Any]
311
+ :param check_existing: Check Existing, Check and warn on overwriting existing files
312
+ :type check_existing: typing.Union[bool, typing.Any]
313
+ :param filter_blender: Filter .blend files
314
+ :type filter_blender: typing.Union[bool, typing.Any]
315
+ :param filter_backup: Filter .blend files
316
+ :type filter_backup: typing.Union[bool, typing.Any]
317
+ :param filter_image: Filter image files
318
+ :type filter_image: typing.Union[bool, typing.Any]
319
+ :param filter_movie: Filter movie files
320
+ :type filter_movie: typing.Union[bool, typing.Any]
321
+ :param filter_python: Filter Python files
322
+ :type filter_python: typing.Union[bool, typing.Any]
323
+ :param filter_font: Filter font files
324
+ :type filter_font: typing.Union[bool, typing.Any]
325
+ :param filter_sound: Filter sound files
326
+ :type filter_sound: typing.Union[bool, typing.Any]
327
+ :param filter_text: Filter text files
328
+ :type filter_text: typing.Union[bool, typing.Any]
329
+ :param filter_archive: Filter archive files
330
+ :type filter_archive: typing.Union[bool, typing.Any]
331
+ :param filter_btx: Filter btx files
332
+ :type filter_btx: typing.Union[bool, typing.Any]
333
+ :param filter_collada: Filter COLLADA files
334
+ :type filter_collada: typing.Union[bool, typing.Any]
335
+ :param filter_alembic: Filter Alembic files
336
+ :type filter_alembic: typing.Union[bool, typing.Any]
337
+ :param filter_usd: Filter USD files
338
+ :type filter_usd: typing.Union[bool, typing.Any]
339
+ :param filter_obj: Filter OBJ files
340
+ :type filter_obj: typing.Union[bool, typing.Any]
341
+ :param filter_volume: Filter OpenVDB volume files
342
+ :type filter_volume: typing.Union[bool, typing.Any]
343
+ :param filter_folder: Filter folders
344
+ :type filter_folder: typing.Union[bool, typing.Any]
345
+ :param filter_blenlib: Filter Blender IDs
346
+ :type filter_blenlib: typing.Union[bool, typing.Any]
347
+ :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
348
+ :type filemode: typing.Any
349
+ :param display_type: Display Type
350
+
351
+ DEFAULT
352
+ Default -- Automatically determine display type for files.
353
+
354
+ LIST_VERTICAL
355
+ Short List -- Display files as short list.
356
+
357
+ LIST_HORIZONTAL
358
+ Long List -- Display files as a detailed list.
359
+
360
+ THUMBNAIL
361
+ Thumbnails -- Display files as thumbnails.
362
+ :type display_type: typing.Any
363
+ :param sort_method: File sorting mode
364
+ :type sort_method: typing.Union[str, int, typing.Any]
332
365
  """
333
366
 
334
367
  ...
335
368
 
336
369
  def hidedot(
337
- override_context: typing.Optional[
338
- typing.Union[typing.Dict, "bpy.types.Context"]
339
- ] = None,
340
- execution_context: typing.Optional[typing.Union[str, int]] = None,
341
- undo: typing.Optional[bool] = None,
370
+ override_context: typing.Union[dict, bpy.types.Context] = None,
371
+ execution_context: typing.Union[str, int] = None,
372
+ undo: bool = None,
342
373
  ):
343
374
  """Toggle hide hidden dot files
344
375
 
345
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
346
- :type execution_context: typing.Optional[typing.Union[str, int]]
347
- :type undo: typing.Optional[bool]
376
+ :type override_context: typing.Union[dict, bpy.types.Context]
377
+ :type execution_context: typing.Union[str, int]
378
+ :type undo: bool
348
379
  """
349
380
 
350
381
  ...
351
382
 
352
383
  def highlight(
353
- override_context: typing.Optional[
354
- typing.Union[typing.Dict, "bpy.types.Context"]
355
- ] = None,
356
- execution_context: typing.Optional[typing.Union[str, int]] = None,
357
- undo: typing.Optional[bool] = None,
384
+ override_context: typing.Union[dict, bpy.types.Context] = None,
385
+ execution_context: typing.Union[str, int] = None,
386
+ undo: bool = None,
358
387
  ):
359
388
  """Highlight selected file(s)
360
389
 
361
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
362
- :type execution_context: typing.Optional[typing.Union[str, int]]
363
- :type undo: typing.Optional[bool]
390
+ :type override_context: typing.Union[dict, bpy.types.Context]
391
+ :type execution_context: typing.Union[str, int]
392
+ :type undo: bool
364
393
  """
365
394
 
366
395
  ...
367
396
 
368
397
  def make_paths_absolute(
369
- override_context: typing.Optional[
370
- typing.Union[typing.Dict, "bpy.types.Context"]
371
- ] = None,
372
- execution_context: typing.Optional[typing.Union[str, int]] = None,
373
- undo: typing.Optional[bool] = None,
398
+ override_context: typing.Union[dict, bpy.types.Context] = None,
399
+ execution_context: typing.Union[str, int] = None,
400
+ undo: bool = None,
374
401
  ):
375
402
  """Make all paths to external files absolute
376
403
 
377
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
378
- :type execution_context: typing.Optional[typing.Union[str, int]]
379
- :type undo: typing.Optional[bool]
404
+ :type override_context: typing.Union[dict, bpy.types.Context]
405
+ :type execution_context: typing.Union[str, int]
406
+ :type undo: bool
380
407
  """
381
408
 
382
409
  ...
383
410
 
384
411
  def make_paths_relative(
385
- override_context: typing.Optional[
386
- typing.Union[typing.Dict, "bpy.types.Context"]
387
- ] = None,
388
- execution_context: typing.Optional[typing.Union[str, int]] = None,
389
- undo: typing.Optional[bool] = None,
412
+ override_context: typing.Union[dict, bpy.types.Context] = None,
413
+ execution_context: typing.Union[str, int] = None,
414
+ undo: bool = None,
390
415
  ):
391
416
  """Make all paths to external files relative to current .blend
392
417
 
393
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
394
- :type execution_context: typing.Optional[typing.Union[str, int]]
395
- :type undo: typing.Optional[bool]
418
+ :type override_context: typing.Union[dict, bpy.types.Context]
419
+ :type execution_context: typing.Union[str, int]
420
+ :type undo: bool
396
421
  """
397
422
 
398
423
  ...
399
424
 
400
425
  def mouse_execute(
401
- override_context: typing.Optional[
402
- typing.Union[typing.Dict, "bpy.types.Context"]
403
- ] = None,
404
- execution_context: typing.Optional[typing.Union[str, int]] = None,
405
- undo: typing.Optional[bool] = None,
426
+ override_context: typing.Union[dict, bpy.types.Context] = None,
427
+ execution_context: typing.Union[str, int] = None,
428
+ undo: bool = None,
406
429
  ):
407
430
  """Perform the current execute action for the file under the cursor (e.g. open the file)
408
431
 
409
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
410
- :type execution_context: typing.Optional[typing.Union[str, int]]
411
- :type undo: typing.Optional[bool]
432
+ :type override_context: typing.Union[dict, bpy.types.Context]
433
+ :type execution_context: typing.Union[str, int]
434
+ :type undo: bool
412
435
  """
413
436
 
414
437
  ...
415
438
 
416
439
  def next(
417
- override_context: typing.Optional[
418
- typing.Union[typing.Dict, "bpy.types.Context"]
419
- ] = None,
420
- execution_context: typing.Optional[typing.Union[str, int]] = None,
421
- undo: typing.Optional[bool] = None,
440
+ override_context: typing.Union[dict, bpy.types.Context] = None,
441
+ execution_context: typing.Union[str, int] = None,
442
+ undo: bool = None,
422
443
  ):
423
444
  """Move to next folder
424
445
 
425
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
426
- :type execution_context: typing.Optional[typing.Union[str, int]]
427
- :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
428
449
  """
429
450
 
430
451
  ...
431
452
 
432
453
  def pack_all(
433
- override_context: typing.Optional[
434
- typing.Union[typing.Dict, "bpy.types.Context"]
435
- ] = None,
436
- execution_context: typing.Optional[typing.Union[str, int]] = None,
437
- undo: typing.Optional[bool] = None,
454
+ override_context: typing.Union[dict, bpy.types.Context] = None,
455
+ execution_context: typing.Union[str, int] = None,
456
+ undo: bool = None,
438
457
  ):
439
458
  """Pack all used external files into this .blend
440
459
 
441
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
442
- :type execution_context: typing.Optional[typing.Union[str, int]]
443
- :type undo: typing.Optional[bool]
460
+ :type override_context: typing.Union[dict, bpy.types.Context]
461
+ :type execution_context: typing.Union[str, int]
462
+ :type undo: bool
444
463
  """
445
464
 
446
465
  ...
447
466
 
448
467
  def pack_libraries(
449
- override_context: typing.Optional[
450
- typing.Union[typing.Dict, "bpy.types.Context"]
451
- ] = None,
452
- execution_context: typing.Optional[typing.Union[str, int]] = None,
453
- undo: typing.Optional[bool] = None,
468
+ override_context: typing.Union[dict, bpy.types.Context] = None,
469
+ execution_context: typing.Union[str, int] = None,
470
+ undo: bool = None,
454
471
  ):
455
472
  """Store all data-blocks linked from other .blend files in the current .blend file. Library references are preserved so the linked data-blocks can be unpacked again
456
473
 
457
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
458
- :type execution_context: typing.Optional[typing.Union[str, int]]
459
- :type undo: typing.Optional[bool]
474
+ :type override_context: typing.Union[dict, bpy.types.Context]
475
+ :type execution_context: typing.Union[str, int]
476
+ :type undo: bool
460
477
  """
461
478
 
462
479
  ...
463
480
 
464
481
  def parent(
465
- override_context: typing.Optional[
466
- typing.Union[typing.Dict, "bpy.types.Context"]
467
- ] = None,
468
- execution_context: typing.Optional[typing.Union[str, int]] = None,
469
- undo: typing.Optional[bool] = None,
482
+ override_context: typing.Union[dict, bpy.types.Context] = None,
483
+ execution_context: typing.Union[str, int] = None,
484
+ undo: bool = None,
470
485
  ):
471
486
  """Move to parent directory
472
487
 
473
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
474
- :type execution_context: typing.Optional[typing.Union[str, int]]
475
- :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
476
491
  """
477
492
 
478
493
  ...
479
494
 
480
495
  def previous(
481
- override_context: typing.Optional[
482
- typing.Union[typing.Dict, "bpy.types.Context"]
483
- ] = None,
484
- execution_context: typing.Optional[typing.Union[str, int]] = None,
485
- undo: typing.Optional[bool] = None,
496
+ override_context: typing.Union[dict, bpy.types.Context] = None,
497
+ execution_context: typing.Union[str, int] = None,
498
+ undo: bool = None,
486
499
  ):
487
500
  """Move to previous folder
488
501
 
489
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
490
- :type execution_context: typing.Optional[typing.Union[str, int]]
491
- :type undo: typing.Optional[bool]
502
+ :type override_context: typing.Union[dict, bpy.types.Context]
503
+ :type execution_context: typing.Union[str, int]
504
+ :type undo: bool
492
505
  """
493
506
 
494
507
  ...
495
508
 
496
509
  def refresh(
497
- override_context: typing.Optional[
498
- typing.Union[typing.Dict, "bpy.types.Context"]
499
- ] = None,
500
- execution_context: typing.Optional[typing.Union[str, int]] = None,
501
- undo: typing.Optional[bool] = None,
510
+ override_context: typing.Union[dict, bpy.types.Context] = None,
511
+ execution_context: typing.Union[str, int] = None,
512
+ undo: bool = None,
502
513
  ):
503
514
  """Refresh the file list
504
515
 
505
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
506
- :type execution_context: typing.Optional[typing.Union[str, int]]
507
- :type undo: typing.Optional[bool]
516
+ :type override_context: typing.Union[dict, bpy.types.Context]
517
+ :type execution_context: typing.Union[str, int]
518
+ :type undo: bool
508
519
  """
509
520
 
510
521
  ...
511
522
 
512
523
  def rename(
513
- override_context: typing.Optional[
514
- typing.Union[typing.Dict, "bpy.types.Context"]
515
- ] = None,
516
- execution_context: typing.Optional[typing.Union[str, int]] = None,
517
- undo: typing.Optional[bool] = None,
524
+ override_context: typing.Union[dict, bpy.types.Context] = None,
525
+ execution_context: typing.Union[str, int] = None,
526
+ undo: bool = None,
518
527
  ):
519
528
  """Rename file or file directory
520
529
 
521
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
522
- :type execution_context: typing.Optional[typing.Union[str, int]]
523
- :type undo: typing.Optional[bool]
530
+ :type override_context: typing.Union[dict, bpy.types.Context]
531
+ :type execution_context: typing.Union[str, int]
532
+ :type undo: bool
524
533
  """
525
534
 
526
535
  ...
527
536
 
528
537
  def report_missing_files(
529
- override_context: typing.Optional[
530
- typing.Union[typing.Dict, "bpy.types.Context"]
531
- ] = None,
532
- execution_context: typing.Optional[typing.Union[str, int]] = None,
533
- undo: typing.Optional[bool] = None,
538
+ override_context: typing.Union[dict, bpy.types.Context] = None,
539
+ execution_context: typing.Union[str, int] = None,
540
+ undo: bool = None,
534
541
  ):
535
542
  """Report all missing external files
536
543
 
537
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
538
- :type execution_context: typing.Optional[typing.Union[str, int]]
539
- :type undo: typing.Optional[bool]
544
+ :type override_context: typing.Union[dict, bpy.types.Context]
545
+ :type execution_context: typing.Union[str, int]
546
+ :type undo: bool
540
547
  """
541
548
 
542
549
  ...
543
550
 
544
551
  def reset_recent(
545
- override_context: typing.Optional[
546
- typing.Union[typing.Dict, "bpy.types.Context"]
547
- ] = None,
548
- execution_context: typing.Optional[typing.Union[str, int]] = None,
549
- undo: typing.Optional[bool] = None,
552
+ override_context: typing.Union[dict, bpy.types.Context] = None,
553
+ execution_context: typing.Union[str, int] = None,
554
+ undo: bool = None,
550
555
  ):
551
556
  """Reset recent files
552
557
 
553
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
554
- :type execution_context: typing.Optional[typing.Union[str, int]]
555
- :type undo: typing.Optional[bool]
558
+ :type override_context: typing.Union[dict, bpy.types.Context]
559
+ :type execution_context: typing.Union[str, int]
560
+ :type undo: bool
556
561
  """
557
562
 
558
563
  ...
559
564
 
560
565
  def select(
561
- override_context: typing.Optional[
562
- typing.Union[typing.Dict, "bpy.types.Context"]
563
- ] = None,
564
- execution_context: typing.Optional[typing.Union[str, int]] = None,
565
- undo: typing.Optional[bool] = None,
566
- *,
567
- wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]] = False,
568
- mouse_x: typing.Optional[typing.Any] = 0,
569
- mouse_y: typing.Optional[typing.Any] = 0,
570
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
571
- fill: typing.Optional[typing.Union[bool, typing.Any]] = False,
572
- open: typing.Optional[typing.Union[bool, typing.Any]] = True,
573
- deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
574
- only_activate_if_selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
575
- pass_through: typing.Optional[typing.Union[bool, typing.Any]] = False,
566
+ override_context: typing.Union[dict, bpy.types.Context] = None,
567
+ execution_context: typing.Union[str, int] = None,
568
+ undo: bool = None,
569
+ wait_to_deselect_others: typing.Union[bool, typing.Any] = False,
570
+ mouse_x: typing.Any = 0,
571
+ mouse_y: typing.Any = 0,
572
+ extend: typing.Union[bool, typing.Any] = False,
573
+ fill: typing.Union[bool, typing.Any] = False,
574
+ open: typing.Union[bool, typing.Any] = True,
575
+ deselect_all: typing.Union[bool, typing.Any] = False,
576
+ only_activate_if_selected: typing.Union[bool, typing.Any] = False,
577
+ pass_through: typing.Union[bool, typing.Any] = False,
576
578
  ):
577
579
  """Handle mouse clicks to select and activate items
578
580
 
579
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
580
- :type execution_context: typing.Optional[typing.Union[str, int]]
581
- :type undo: typing.Optional[bool]
581
+ :type override_context: typing.Union[dict, bpy.types.Context]
582
+ :type execution_context: typing.Union[str, int]
583
+ :type undo: bool
582
584
  :param wait_to_deselect_others: Wait to Deselect Others
583
- :type wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]]
585
+ :type wait_to_deselect_others: typing.Union[bool, typing.Any]
584
586
  :param mouse_x: Mouse X
585
- :type mouse_x: typing.Optional[typing.Any]
587
+ :type mouse_x: typing.Any
586
588
  :param mouse_y: Mouse Y
587
- :type mouse_y: typing.Optional[typing.Any]
589
+ :type mouse_y: typing.Any
588
590
  :param extend: Extend, Extend selection instead of deselecting everything first
589
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
591
+ :type extend: typing.Union[bool, typing.Any]
590
592
  :param fill: Fill, Select everything beginning with the last selection
591
- :type fill: typing.Optional[typing.Union[bool, typing.Any]]
593
+ :type fill: typing.Union[bool, typing.Any]
592
594
  :param open: Open, Open a directory when selecting it
593
- :type open: typing.Optional[typing.Union[bool, typing.Any]]
595
+ :type open: typing.Union[bool, typing.Any]
594
596
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
595
- :type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
597
+ :type deselect_all: typing.Union[bool, typing.Any]
596
598
  :param only_activate_if_selected: Only Activate if Selected, Do not change selection if the item under the cursor is already selected, only activate it
597
- :type only_activate_if_selected: typing.Optional[typing.Union[bool, typing.Any]]
599
+ :type only_activate_if_selected: typing.Union[bool, typing.Any]
598
600
  :param pass_through: Pass Through, Even on successful execution, pass the event on so other operators can execute on it as well
599
- :type pass_through: typing.Optional[typing.Union[bool, typing.Any]]
601
+ :type pass_through: typing.Union[bool, typing.Any]
600
602
  """
601
603
 
602
604
  ...
603
605
 
604
606
  def select_all(
605
- override_context: typing.Optional[
606
- typing.Union[typing.Dict, "bpy.types.Context"]
607
- ] = None,
608
- execution_context: typing.Optional[typing.Union[str, int]] = None,
609
- undo: typing.Optional[bool] = None,
610
- *,
611
- action: typing.Optional[typing.Any] = "TOGGLE",
607
+ override_context: typing.Union[dict, bpy.types.Context] = None,
608
+ execution_context: typing.Union[str, int] = None,
609
+ undo: bool = None,
610
+ action: typing.Any = "TOGGLE",
612
611
  ):
613
612
  """Select or deselect all files
614
613
 
615
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
616
- :type execution_context: typing.Optional[typing.Union[str, int]]
617
- :type undo: typing.Optional[bool]
618
- :param action: Action, Selection action to execute * ``TOGGLE`` Toggle -- Toggle selection for all elements. * ``SELECT`` Select -- Select all elements. * ``DESELECT`` Deselect -- Deselect all elements. * ``INVERT`` Invert -- Invert selection of all elements.
619
- :type action: typing.Optional[typing.Any]
614
+ :type override_context: typing.Union[dict, bpy.types.Context]
615
+ :type execution_context: typing.Union[str, int]
616
+ :type undo: bool
617
+ :param action: Action, Selection action to execute
618
+
619
+ TOGGLE
620
+ Toggle -- Toggle selection for all elements.
621
+
622
+ SELECT
623
+ Select -- Select all elements.
624
+
625
+ DESELECT
626
+ Deselect -- Deselect all elements.
627
+
628
+ INVERT
629
+ Invert -- Invert selection of all elements.
630
+ :type action: typing.Any
620
631
  """
621
632
 
622
633
  ...
623
634
 
624
635
  def select_bookmark(
625
- override_context: typing.Optional[
626
- typing.Union[typing.Dict, "bpy.types.Context"]
627
- ] = None,
628
- execution_context: typing.Optional[typing.Union[str, int]] = None,
629
- undo: typing.Optional[bool] = None,
630
- *,
636
+ override_context: typing.Union[dict, bpy.types.Context] = None,
637
+ execution_context: typing.Union[str, int] = None,
638
+ undo: bool = None,
631
639
  dir: typing.Union[str, typing.Any] = "",
632
640
  ):
633
641
  """Select a bookmarked directory
634
642
 
635
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
636
- :type execution_context: typing.Optional[typing.Union[str, int]]
637
- :type undo: typing.Optional[bool]
643
+ :type override_context: typing.Union[dict, bpy.types.Context]
644
+ :type execution_context: typing.Union[str, int]
645
+ :type undo: bool
638
646
  :param dir: Directory
639
647
  :type dir: typing.Union[str, typing.Any]
640
648
  """
@@ -642,188 +650,175 @@ def select_bookmark(
642
650
  ...
643
651
 
644
652
  def select_box(
645
- override_context: typing.Optional[
646
- typing.Union[typing.Dict, "bpy.types.Context"]
647
- ] = None,
648
- execution_context: typing.Optional[typing.Union[str, int]] = None,
649
- undo: typing.Optional[bool] = None,
650
- *,
651
- xmin: typing.Optional[typing.Any] = 0,
652
- xmax: typing.Optional[typing.Any] = 0,
653
- ymin: typing.Optional[typing.Any] = 0,
654
- ymax: typing.Optional[typing.Any] = 0,
655
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
656
- mode: typing.Optional[typing.Any] = "SET",
653
+ override_context: typing.Union[dict, bpy.types.Context] = None,
654
+ execution_context: typing.Union[str, int] = None,
655
+ undo: bool = None,
656
+ xmin: typing.Any = 0,
657
+ xmax: typing.Any = 0,
658
+ ymin: typing.Any = 0,
659
+ ymax: typing.Any = 0,
660
+ wait_for_input: typing.Union[bool, typing.Any] = True,
661
+ mode: typing.Any = "SET",
657
662
  ):
658
663
  """Activate/select the file(s) contained in the border
659
664
 
660
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
661
- :type execution_context: typing.Optional[typing.Union[str, int]]
662
- :type undo: typing.Optional[bool]
663
- :param xmin: X Min
664
- :type xmin: typing.Optional[typing.Any]
665
- :param xmax: X Max
666
- :type xmax: typing.Optional[typing.Any]
667
- :param ymin: Y Min
668
- :type ymin: typing.Optional[typing.Any]
669
- :param ymax: Y Max
670
- :type ymax: typing.Optional[typing.Any]
671
- :param wait_for_input: Wait for Input
672
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
673
- :param mode: Mode * ``SET`` Set -- Set a new selection. * ``ADD`` Extend -- Extend existing selection. * ``SUB`` Subtract -- Subtract existing selection.
674
- :type mode: typing.Optional[typing.Any]
665
+ :type override_context: typing.Union[dict, bpy.types.Context]
666
+ :type execution_context: typing.Union[str, int]
667
+ :type undo: bool
668
+ :param xmin: X Min
669
+ :type xmin: typing.Any
670
+ :param xmax: X Max
671
+ :type xmax: typing.Any
672
+ :param ymin: Y Min
673
+ :type ymin: typing.Any
674
+ :param ymax: Y Max
675
+ :type ymax: typing.Any
676
+ :param wait_for_input: Wait for Input
677
+ :type wait_for_input: typing.Union[bool, typing.Any]
678
+ :param mode: Mode
679
+
680
+ SET
681
+ Set -- Set a new selection.
682
+
683
+ ADD
684
+ Extend -- Extend existing selection.
685
+
686
+ SUB
687
+ Subtract -- Subtract existing selection.
688
+ :type mode: typing.Any
675
689
  """
676
690
 
677
691
  ...
678
692
 
679
693
  def select_walk(
680
- override_context: typing.Optional[
681
- typing.Union[typing.Dict, "bpy.types.Context"]
682
- ] = None,
683
- execution_context: typing.Optional[typing.Union[str, int]] = None,
684
- undo: typing.Optional[bool] = None,
685
- *,
686
- direction: typing.Optional[typing.Any] = "UP",
687
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
688
- fill: typing.Optional[typing.Union[bool, typing.Any]] = False,
694
+ override_context: typing.Union[dict, bpy.types.Context] = None,
695
+ execution_context: typing.Union[str, int] = None,
696
+ undo: bool = None,
697
+ direction: typing.Any = "UP",
698
+ extend: typing.Union[bool, typing.Any] = False,
699
+ fill: typing.Union[bool, typing.Any] = False,
689
700
  ):
690
701
  """Select/Deselect files by walking through them
691
702
 
692
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
693
- :type execution_context: typing.Optional[typing.Union[str, int]]
694
- :type undo: typing.Optional[bool]
703
+ :type override_context: typing.Union[dict, bpy.types.Context]
704
+ :type execution_context: typing.Union[str, int]
705
+ :type undo: bool
695
706
  :param direction: Walk Direction, Select/Deselect element in this direction
696
- :type direction: typing.Optional[typing.Any]
707
+ :type direction: typing.Any
697
708
  :param extend: Extend, Extend selection instead of deselecting everything first
698
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
709
+ :type extend: typing.Union[bool, typing.Any]
699
710
  :param fill: Fill, Select everything beginning with the last selection
700
- :type fill: typing.Optional[typing.Union[bool, typing.Any]]
711
+ :type fill: typing.Union[bool, typing.Any]
701
712
  """
702
713
 
703
714
  ...
704
715
 
705
716
  def smoothscroll(
706
- override_context: typing.Optional[
707
- typing.Union[typing.Dict, "bpy.types.Context"]
708
- ] = None,
709
- execution_context: typing.Optional[typing.Union[str, int]] = None,
710
- undo: typing.Optional[bool] = None,
717
+ override_context: typing.Union[dict, bpy.types.Context] = None,
718
+ execution_context: typing.Union[str, int] = None,
719
+ undo: bool = None,
711
720
  ):
712
721
  """Smooth scroll to make editable file visible
713
722
 
714
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
715
- :type execution_context: typing.Optional[typing.Union[str, int]]
716
- :type undo: typing.Optional[bool]
723
+ :type override_context: typing.Union[dict, bpy.types.Context]
724
+ :type execution_context: typing.Union[str, int]
725
+ :type undo: bool
717
726
  """
718
727
 
719
728
  ...
720
729
 
721
730
  def sort_column_ui_context(
722
- override_context: typing.Optional[
723
- typing.Union[typing.Dict, "bpy.types.Context"]
724
- ] = None,
725
- execution_context: typing.Optional[typing.Union[str, int]] = None,
726
- undo: typing.Optional[bool] = None,
731
+ override_context: typing.Union[dict, bpy.types.Context] = None,
732
+ execution_context: typing.Union[str, int] = None,
733
+ undo: bool = None,
727
734
  ):
728
735
  """Change sorting to use column under cursor
729
736
 
730
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
731
- :type execution_context: typing.Optional[typing.Union[str, int]]
732
- :type undo: typing.Optional[bool]
737
+ :type override_context: typing.Union[dict, bpy.types.Context]
738
+ :type execution_context: typing.Union[str, int]
739
+ :type undo: bool
733
740
  """
734
741
 
735
742
  ...
736
743
 
737
744
  def start_filter(
738
- override_context: typing.Optional[
739
- typing.Union[typing.Dict, "bpy.types.Context"]
740
- ] = None,
741
- execution_context: typing.Optional[typing.Union[str, int]] = None,
742
- undo: typing.Optional[bool] = None,
745
+ override_context: typing.Union[dict, bpy.types.Context] = None,
746
+ execution_context: typing.Union[str, int] = None,
747
+ undo: bool = None,
743
748
  ):
744
749
  """Start entering filter text
745
750
 
746
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
747
- :type execution_context: typing.Optional[typing.Union[str, int]]
748
- :type undo: typing.Optional[bool]
751
+ :type override_context: typing.Union[dict, bpy.types.Context]
752
+ :type execution_context: typing.Union[str, int]
753
+ :type undo: bool
749
754
  """
750
755
 
751
756
  ...
752
757
 
753
758
  def unpack_all(
754
- override_context: typing.Optional[
755
- typing.Union[typing.Dict, "bpy.types.Context"]
756
- ] = None,
757
- execution_context: typing.Optional[typing.Union[str, int]] = None,
758
- undo: typing.Optional[bool] = None,
759
- *,
760
- method: typing.Optional[typing.Any] = "USE_LOCAL",
759
+ override_context: typing.Union[dict, bpy.types.Context] = None,
760
+ execution_context: typing.Union[str, int] = None,
761
+ undo: bool = None,
762
+ method: typing.Any = "USE_LOCAL",
761
763
  ):
762
764
  """Unpack all files packed into this .blend to external ones
763
765
 
764
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
765
- :type execution_context: typing.Optional[typing.Union[str, int]]
766
- :type undo: typing.Optional[bool]
766
+ :type override_context: typing.Union[dict, bpy.types.Context]
767
+ :type execution_context: typing.Union[str, int]
768
+ :type undo: bool
767
769
  :param method: Method, How to unpack
768
- :type method: typing.Optional[typing.Any]
770
+ :type method: typing.Any
769
771
  """
770
772
 
771
773
  ...
772
774
 
773
775
  def unpack_item(
774
- override_context: typing.Optional[
775
- typing.Union[typing.Dict, "bpy.types.Context"]
776
- ] = None,
777
- execution_context: typing.Optional[typing.Union[str, int]] = None,
778
- undo: typing.Optional[bool] = None,
779
- *,
780
- method: typing.Optional[typing.Any] = "USE_LOCAL",
776
+ override_context: typing.Union[dict, bpy.types.Context] = None,
777
+ execution_context: typing.Union[str, int] = None,
778
+ undo: bool = None,
779
+ method: typing.Any = "USE_LOCAL",
781
780
  id_name: typing.Union[str, typing.Any] = "",
782
- id_type: typing.Optional[typing.Any] = 19785,
781
+ id_type: typing.Any = 19785,
783
782
  ):
784
783
  """Unpack this file to an external file
785
784
 
786
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
787
- :type execution_context: typing.Optional[typing.Union[str, int]]
788
- :type undo: typing.Optional[bool]
785
+ :type override_context: typing.Union[dict, bpy.types.Context]
786
+ :type execution_context: typing.Union[str, int]
787
+ :type undo: bool
789
788
  :param method: Method, How to unpack
790
- :type method: typing.Optional[typing.Any]
789
+ :type method: typing.Any
791
790
  :param id_name: ID Name, Name of ID block to unpack
792
791
  :type id_name: typing.Union[str, typing.Any]
793
792
  :param id_type: ID Type, Identifier type of ID block
794
- :type id_type: typing.Optional[typing.Any]
793
+ :type id_type: typing.Any
795
794
  """
796
795
 
797
796
  ...
798
797
 
799
798
  def unpack_libraries(
800
- override_context: typing.Optional[
801
- typing.Union[typing.Dict, "bpy.types.Context"]
802
- ] = None,
803
- execution_context: typing.Optional[typing.Union[str, int]] = None,
804
- undo: typing.Optional[bool] = None,
799
+ override_context: typing.Union[dict, bpy.types.Context] = None,
800
+ execution_context: typing.Union[str, int] = None,
801
+ undo: bool = None,
805
802
  ):
806
803
  """Restore all packed linked data-blocks to their original locations
807
804
 
808
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
809
- :type execution_context: typing.Optional[typing.Union[str, int]]
810
- :type undo: typing.Optional[bool]
805
+ :type override_context: typing.Union[dict, bpy.types.Context]
806
+ :type execution_context: typing.Union[str, int]
807
+ :type undo: bool
811
808
  """
812
809
 
813
810
  ...
814
811
 
815
812
  def view_selected(
816
- override_context: typing.Optional[
817
- typing.Union[typing.Dict, "bpy.types.Context"]
818
- ] = None,
819
- execution_context: typing.Optional[typing.Union[str, int]] = None,
820
- undo: typing.Optional[bool] = None,
813
+ override_context: typing.Union[dict, bpy.types.Context] = None,
814
+ execution_context: typing.Union[str, int] = None,
815
+ undo: bool = None,
821
816
  ):
822
817
  """Scroll the selected files into view
823
818
 
824
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
825
- :type execution_context: typing.Optional[typing.Union[str, int]]
826
- :type undo: typing.Optional[bool]
819
+ :type override_context: typing.Union[dict, bpy.types.Context]
820
+ :type execution_context: typing.Union[str, int]
821
+ :type undo: bool
827
822
  """
828
823
 
829
824
  ...