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/text/__init__.pyi CHANGED
@@ -1,234 +1,202 @@
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 autocomplete(
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
  """Show a list of used text in the open document
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 comment_toggle(
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,
29
- *,
30
- type: typing.Optional[typing.Any] = "TOGGLE",
31
- ):
32
- """Undocumented, consider `contributing <https://developer.blender.org/>`__.
33
-
34
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
35
- :type execution_context: typing.Optional[typing.Union[str, int]]
36
- :type undo: typing.Optional[bool]
21
+ override_context: typing.Union[dict, bpy.types.Context] = None,
22
+ execution_context: typing.Union[str, int] = None,
23
+ undo: bool = None,
24
+ type: typing.Any = "TOGGLE",
25
+ ):
26
+ """Undocumented, consider contributing.
27
+
28
+ :type override_context: typing.Union[dict, bpy.types.Context]
29
+ :type execution_context: typing.Union[str, int]
30
+ :type undo: bool
37
31
  :param type: Type, Add or remove comments
38
- :type type: typing.Optional[typing.Any]
32
+ :type type: typing.Any
39
33
  """
40
34
 
41
35
  ...
42
36
 
43
37
  def convert_whitespace(
44
- override_context: typing.Optional[
45
- typing.Union[typing.Dict, "bpy.types.Context"]
46
- ] = None,
47
- execution_context: typing.Optional[typing.Union[str, int]] = None,
48
- undo: typing.Optional[bool] = None,
49
- *,
50
- type: typing.Optional[typing.Any] = "SPACES",
38
+ override_context: typing.Union[dict, bpy.types.Context] = None,
39
+ execution_context: typing.Union[str, int] = None,
40
+ undo: bool = None,
41
+ type: typing.Any = "SPACES",
51
42
  ):
52
43
  """Convert whitespaces by type
53
44
 
54
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
55
- :type execution_context: typing.Optional[typing.Union[str, int]]
56
- :type undo: typing.Optional[bool]
45
+ :type override_context: typing.Union[dict, bpy.types.Context]
46
+ :type execution_context: typing.Union[str, int]
47
+ :type undo: bool
57
48
  :param type: Type, Type of whitespace to convert to
58
- :type type: typing.Optional[typing.Any]
49
+ :type type: typing.Any
59
50
  """
60
51
 
61
52
  ...
62
53
 
63
54
  def copy(
64
- override_context: typing.Optional[
65
- typing.Union[typing.Dict, "bpy.types.Context"]
66
- ] = None,
67
- execution_context: typing.Optional[typing.Union[str, int]] = None,
68
- undo: typing.Optional[bool] = None,
55
+ override_context: typing.Union[dict, bpy.types.Context] = None,
56
+ execution_context: typing.Union[str, int] = None,
57
+ undo: bool = None,
69
58
  ):
70
59
  """Copy selected text to clipboard
71
60
 
72
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
73
- :type execution_context: typing.Optional[typing.Union[str, int]]
74
- :type undo: typing.Optional[bool]
61
+ :type override_context: typing.Union[dict, bpy.types.Context]
62
+ :type execution_context: typing.Union[str, int]
63
+ :type undo: bool
75
64
  """
76
65
 
77
66
  ...
78
67
 
79
68
  def cursor_set(
80
- override_context: typing.Optional[
81
- typing.Union[typing.Dict, "bpy.types.Context"]
82
- ] = None,
83
- execution_context: typing.Optional[typing.Union[str, int]] = None,
84
- undo: typing.Optional[bool] = None,
85
- *,
86
- x: typing.Optional[typing.Any] = 0,
87
- y: typing.Optional[typing.Any] = 0,
69
+ override_context: typing.Union[dict, bpy.types.Context] = None,
70
+ execution_context: typing.Union[str, int] = None,
71
+ undo: bool = None,
72
+ x: typing.Any = 0,
73
+ y: typing.Any = 0,
88
74
  ):
89
75
  """Set cursor position
90
76
 
91
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
92
- :type execution_context: typing.Optional[typing.Union[str, int]]
93
- :type undo: typing.Optional[bool]
77
+ :type override_context: typing.Union[dict, bpy.types.Context]
78
+ :type execution_context: typing.Union[str, int]
79
+ :type undo: bool
94
80
  :param x: X
95
- :type x: typing.Optional[typing.Any]
81
+ :type x: typing.Any
96
82
  :param y: Y
97
- :type y: typing.Optional[typing.Any]
83
+ :type y: typing.Any
98
84
  """
99
85
 
100
86
  ...
101
87
 
102
88
  def cut(
103
- override_context: typing.Optional[
104
- typing.Union[typing.Dict, "bpy.types.Context"]
105
- ] = None,
106
- execution_context: typing.Optional[typing.Union[str, int]] = None,
107
- undo: typing.Optional[bool] = None,
89
+ override_context: typing.Union[dict, bpy.types.Context] = None,
90
+ execution_context: typing.Union[str, int] = None,
91
+ undo: bool = None,
108
92
  ):
109
93
  """Cut selected text to clipboard
110
94
 
111
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
112
- :type execution_context: typing.Optional[typing.Union[str, int]]
113
- :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
114
98
  """
115
99
 
116
100
  ...
117
101
 
118
102
  def delete(
119
- override_context: typing.Optional[
120
- typing.Union[typing.Dict, "bpy.types.Context"]
121
- ] = None,
122
- execution_context: typing.Optional[typing.Union[str, int]] = None,
123
- undo: typing.Optional[bool] = None,
124
- *,
125
- type: typing.Optional[typing.Any] = "NEXT_CHARACTER",
103
+ override_context: typing.Union[dict, bpy.types.Context] = None,
104
+ execution_context: typing.Union[str, int] = None,
105
+ undo: bool = None,
106
+ type: typing.Any = "NEXT_CHARACTER",
126
107
  ):
127
108
  """Delete text by cursor position
128
109
 
129
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
130
- :type execution_context: typing.Optional[typing.Union[str, int]]
131
- :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
132
113
  :param type: Type, Which part of the text to delete
133
- :type type: typing.Optional[typing.Any]
114
+ :type type: typing.Any
134
115
  """
135
116
 
136
117
  ...
137
118
 
138
119
  def duplicate_line(
139
- override_context: typing.Optional[
140
- typing.Union[typing.Dict, "bpy.types.Context"]
141
- ] = None,
142
- execution_context: typing.Optional[typing.Union[str, int]] = None,
143
- undo: typing.Optional[bool] = None,
120
+ override_context: typing.Union[dict, bpy.types.Context] = None,
121
+ execution_context: typing.Union[str, int] = None,
122
+ undo: bool = None,
144
123
  ):
145
124
  """Duplicate the current line
146
125
 
147
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
148
- :type execution_context: typing.Optional[typing.Union[str, int]]
149
- :type undo: typing.Optional[bool]
126
+ :type override_context: typing.Union[dict, bpy.types.Context]
127
+ :type execution_context: typing.Union[str, int]
128
+ :type undo: bool
150
129
  """
151
130
 
152
131
  ...
153
132
 
154
133
  def find(
155
- override_context: typing.Optional[
156
- typing.Union[typing.Dict, "bpy.types.Context"]
157
- ] = None,
158
- execution_context: typing.Optional[typing.Union[str, int]] = None,
159
- undo: typing.Optional[bool] = None,
134
+ override_context: typing.Union[dict, bpy.types.Context] = None,
135
+ execution_context: typing.Union[str, int] = None,
136
+ undo: bool = None,
160
137
  ):
161
138
  """Find specified text
162
139
 
163
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
164
- :type execution_context: typing.Optional[typing.Union[str, int]]
165
- :type undo: typing.Optional[bool]
140
+ :type override_context: typing.Union[dict, bpy.types.Context]
141
+ :type execution_context: typing.Union[str, int]
142
+ :type undo: bool
166
143
  """
167
144
 
168
145
  ...
169
146
 
170
147
  def find_set_selected(
171
- override_context: typing.Optional[
172
- typing.Union[typing.Dict, "bpy.types.Context"]
173
- ] = None,
174
- execution_context: typing.Optional[typing.Union[str, int]] = None,
175
- undo: typing.Optional[bool] = None,
148
+ override_context: typing.Union[dict, bpy.types.Context] = None,
149
+ execution_context: typing.Union[str, int] = None,
150
+ undo: bool = None,
176
151
  ):
177
152
  """Find specified text and set as selected
178
153
 
179
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
180
- :type execution_context: typing.Optional[typing.Union[str, int]]
181
- :type undo: typing.Optional[bool]
154
+ :type override_context: typing.Union[dict, bpy.types.Context]
155
+ :type execution_context: typing.Union[str, int]
156
+ :type undo: bool
182
157
  """
183
158
 
184
159
  ...
185
160
 
186
161
  def indent(
187
- override_context: typing.Optional[
188
- typing.Union[typing.Dict, "bpy.types.Context"]
189
- ] = None,
190
- execution_context: typing.Optional[typing.Union[str, int]] = None,
191
- undo: typing.Optional[bool] = None,
162
+ override_context: typing.Union[dict, bpy.types.Context] = None,
163
+ execution_context: typing.Union[str, int] = None,
164
+ undo: bool = None,
192
165
  ):
193
166
  """Indent selected text
194
167
 
195
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
196
- :type execution_context: typing.Optional[typing.Union[str, int]]
197
- :type undo: typing.Optional[bool]
168
+ :type override_context: typing.Union[dict, bpy.types.Context]
169
+ :type execution_context: typing.Union[str, int]
170
+ :type undo: bool
198
171
  """
199
172
 
200
173
  ...
201
174
 
202
175
  def indent_or_autocomplete(
203
- override_context: typing.Optional[
204
- typing.Union[typing.Dict, "bpy.types.Context"]
205
- ] = None,
206
- execution_context: typing.Optional[typing.Union[str, int]] = None,
207
- undo: typing.Optional[bool] = None,
176
+ override_context: typing.Union[dict, bpy.types.Context] = None,
177
+ execution_context: typing.Union[str, int] = None,
178
+ undo: bool = None,
208
179
  ):
209
180
  """Indent selected text or autocomplete
210
181
 
211
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
212
- :type execution_context: typing.Optional[typing.Union[str, int]]
213
- :type undo: typing.Optional[bool]
182
+ :type override_context: typing.Union[dict, bpy.types.Context]
183
+ :type execution_context: typing.Union[str, int]
184
+ :type undo: bool
214
185
  """
215
186
 
216
187
  ...
217
188
 
218
189
  def insert(
219
- override_context: typing.Optional[
220
- typing.Union[typing.Dict, "bpy.types.Context"]
221
- ] = None,
222
- execution_context: typing.Optional[typing.Union[str, int]] = None,
223
- undo: typing.Optional[bool] = None,
224
- *,
190
+ override_context: typing.Union[dict, bpy.types.Context] = None,
191
+ execution_context: typing.Union[str, int] = None,
192
+ undo: bool = None,
225
193
  text: typing.Union[str, typing.Any] = "",
226
194
  ):
227
195
  """Insert text at cursor position
228
196
 
229
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
230
- :type execution_context: typing.Optional[typing.Union[str, int]]
231
- :type undo: typing.Optional[bool]
197
+ :type override_context: typing.Union[dict, bpy.types.Context]
198
+ :type execution_context: typing.Union[str, int]
199
+ :type undo: bool
232
200
  :param text: Text, Text to insert at the cursor position
233
201
  :type text: typing.Union[str, typing.Any]
234
202
  """
@@ -236,674 +204,640 @@ def insert(
236
204
  ...
237
205
 
238
206
  def jump(
239
- override_context: typing.Optional[
240
- typing.Union[typing.Dict, "bpy.types.Context"]
241
- ] = None,
242
- execution_context: typing.Optional[typing.Union[str, int]] = None,
243
- undo: typing.Optional[bool] = None,
244
- *,
245
- line: typing.Optional[typing.Any] = 1,
207
+ override_context: typing.Union[dict, bpy.types.Context] = None,
208
+ execution_context: typing.Union[str, int] = None,
209
+ undo: bool = None,
210
+ line: typing.Any = 1,
246
211
  ):
247
212
  """Jump cursor to line
248
213
 
249
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
250
- :type execution_context: typing.Optional[typing.Union[str, int]]
251
- :type undo: typing.Optional[bool]
214
+ :type override_context: typing.Union[dict, bpy.types.Context]
215
+ :type execution_context: typing.Union[str, int]
216
+ :type undo: bool
252
217
  :param line: Line, Line number to jump to
253
- :type line: typing.Optional[typing.Any]
218
+ :type line: typing.Any
254
219
  """
255
220
 
256
221
  ...
257
222
 
258
223
  def jump_to_file_at_point(
259
- override_context: typing.Optional[
260
- typing.Union[typing.Dict, "bpy.types.Context"]
261
- ] = None,
262
- execution_context: typing.Optional[typing.Union[str, int]] = None,
263
- undo: typing.Optional[bool] = None,
264
- *,
224
+ override_context: typing.Union[dict, bpy.types.Context] = None,
225
+ execution_context: typing.Union[str, int] = None,
226
+ undo: bool = None,
265
227
  filepath: typing.Union[str, typing.Any] = "",
266
- line: typing.Optional[typing.Any] = 0,
267
- column: typing.Optional[typing.Any] = 0,
228
+ line: typing.Any = 0,
229
+ column: typing.Any = 0,
268
230
  ):
269
231
  """Jump to a file for the text editor
270
232
 
271
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
272
- :type execution_context: typing.Optional[typing.Union[str, int]]
273
- :type undo: typing.Optional[bool]
233
+ :type override_context: typing.Union[dict, bpy.types.Context]
234
+ :type execution_context: typing.Union[str, int]
235
+ :type undo: bool
274
236
  :param filepath: Filepath
275
237
  :type filepath: typing.Union[str, typing.Any]
276
238
  :param line: Line, Line to jump to
277
- :type line: typing.Optional[typing.Any]
239
+ :type line: typing.Any
278
240
  :param column: Column, Column to jump to
279
- :type column: typing.Optional[typing.Any]
241
+ :type column: typing.Any
280
242
  """
281
243
 
282
244
  ...
283
245
 
284
246
  def line_break(
285
- override_context: typing.Optional[
286
- typing.Union[typing.Dict, "bpy.types.Context"]
287
- ] = None,
288
- execution_context: typing.Optional[typing.Union[str, int]] = None,
289
- undo: typing.Optional[bool] = None,
247
+ override_context: typing.Union[dict, bpy.types.Context] = None,
248
+ execution_context: typing.Union[str, int] = None,
249
+ undo: bool = None,
290
250
  ):
291
251
  """Insert line break at cursor position
292
252
 
293
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
294
- :type execution_context: typing.Optional[typing.Union[str, int]]
295
- :type undo: typing.Optional[bool]
253
+ :type override_context: typing.Union[dict, bpy.types.Context]
254
+ :type execution_context: typing.Union[str, int]
255
+ :type undo: bool
296
256
  """
297
257
 
298
258
  ...
299
259
 
300
260
  def line_number(
301
- override_context: typing.Optional[
302
- typing.Union[typing.Dict, "bpy.types.Context"]
303
- ] = None,
304
- execution_context: typing.Optional[typing.Union[str, int]] = None,
305
- undo: typing.Optional[bool] = None,
261
+ override_context: typing.Union[dict, bpy.types.Context] = None,
262
+ execution_context: typing.Union[str, int] = None,
263
+ undo: bool = None,
306
264
  ):
307
265
  """The current line number
308
266
 
309
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
310
- :type execution_context: typing.Optional[typing.Union[str, int]]
311
- :type undo: typing.Optional[bool]
267
+ :type override_context: typing.Union[dict, bpy.types.Context]
268
+ :type execution_context: typing.Union[str, int]
269
+ :type undo: bool
312
270
  """
313
271
 
314
272
  ...
315
273
 
316
274
  def make_internal(
317
- override_context: typing.Optional[
318
- typing.Union[typing.Dict, "bpy.types.Context"]
319
- ] = None,
320
- execution_context: typing.Optional[typing.Union[str, int]] = None,
321
- undo: typing.Optional[bool] = None,
275
+ override_context: typing.Union[dict, bpy.types.Context] = None,
276
+ execution_context: typing.Union[str, int] = None,
277
+ undo: bool = None,
322
278
  ):
323
279
  """Make active text file internal
324
280
 
325
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
326
- :type execution_context: typing.Optional[typing.Union[str, int]]
327
- :type undo: typing.Optional[bool]
281
+ :type override_context: typing.Union[dict, bpy.types.Context]
282
+ :type execution_context: typing.Union[str, int]
283
+ :type undo: bool
328
284
  """
329
285
 
330
286
  ...
331
287
 
332
288
  def move(
333
- override_context: typing.Optional[
334
- typing.Union[typing.Dict, "bpy.types.Context"]
335
- ] = None,
336
- execution_context: typing.Optional[typing.Union[str, int]] = None,
337
- undo: typing.Optional[bool] = None,
338
- *,
339
- type: typing.Optional[typing.Any] = "LINE_BEGIN",
289
+ override_context: typing.Union[dict, bpy.types.Context] = None,
290
+ execution_context: typing.Union[str, int] = None,
291
+ undo: bool = None,
292
+ type: typing.Any = "LINE_BEGIN",
340
293
  ):
341
294
  """Move cursor to position type
342
295
 
343
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
344
- :type execution_context: typing.Optional[typing.Union[str, int]]
345
- :type undo: typing.Optional[bool]
296
+ :type override_context: typing.Union[dict, bpy.types.Context]
297
+ :type execution_context: typing.Union[str, int]
298
+ :type undo: bool
346
299
  :param type: Type, Where to move cursor to
347
- :type type: typing.Optional[typing.Any]
300
+ :type type: typing.Any
348
301
  """
349
302
 
350
303
  ...
351
304
 
352
305
  def move_lines(
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,
358
- *,
359
- direction: typing.Optional[typing.Any] = "DOWN",
306
+ override_context: typing.Union[dict, bpy.types.Context] = None,
307
+ execution_context: typing.Union[str, int] = None,
308
+ undo: bool = None,
309
+ direction: typing.Any = "DOWN",
360
310
  ):
361
311
  """Move the currently selected line(s) up/down
362
312
 
363
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
364
- :type execution_context: typing.Optional[typing.Union[str, int]]
365
- :type undo: typing.Optional[bool]
313
+ :type override_context: typing.Union[dict, bpy.types.Context]
314
+ :type execution_context: typing.Union[str, int]
315
+ :type undo: bool
366
316
  :param direction: Direction
367
- :type direction: typing.Optional[typing.Any]
317
+ :type direction: typing.Any
368
318
  """
369
319
 
370
320
  ...
371
321
 
372
322
  def move_select(
373
- override_context: typing.Optional[
374
- typing.Union[typing.Dict, "bpy.types.Context"]
375
- ] = None,
376
- execution_context: typing.Optional[typing.Union[str, int]] = None,
377
- undo: typing.Optional[bool] = None,
378
- *,
379
- type: typing.Optional[typing.Any] = "LINE_BEGIN",
323
+ override_context: typing.Union[dict, bpy.types.Context] = None,
324
+ execution_context: typing.Union[str, int] = None,
325
+ undo: bool = None,
326
+ type: typing.Any = "LINE_BEGIN",
380
327
  ):
381
328
  """Move the cursor while selecting
382
329
 
383
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
384
- :type execution_context: typing.Optional[typing.Union[str, int]]
385
- :type undo: typing.Optional[bool]
330
+ :type override_context: typing.Union[dict, bpy.types.Context]
331
+ :type execution_context: typing.Union[str, int]
332
+ :type undo: bool
386
333
  :param type: Type, Where to move cursor to, to make a selection
387
- :type type: typing.Optional[typing.Any]
334
+ :type type: typing.Any
388
335
  """
389
336
 
390
337
  ...
391
338
 
392
339
  def new(
393
- override_context: typing.Optional[
394
- typing.Union[typing.Dict, "bpy.types.Context"]
395
- ] = None,
396
- execution_context: typing.Optional[typing.Union[str, int]] = None,
397
- undo: typing.Optional[bool] = None,
340
+ override_context: typing.Union[dict, bpy.types.Context] = None,
341
+ execution_context: typing.Union[str, int] = None,
342
+ undo: bool = None,
398
343
  ):
399
344
  """Create a new text data-block
400
345
 
401
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
402
- :type execution_context: typing.Optional[typing.Union[str, int]]
403
- :type undo: typing.Optional[bool]
346
+ :type override_context: typing.Union[dict, bpy.types.Context]
347
+ :type execution_context: typing.Union[str, int]
348
+ :type undo: bool
404
349
  """
405
350
 
406
351
  ...
407
352
 
408
353
  def open(
409
- override_context: typing.Optional[
410
- typing.Union[typing.Dict, "bpy.types.Context"]
411
- ] = None,
412
- execution_context: typing.Optional[typing.Union[str, int]] = None,
413
- undo: typing.Optional[bool] = None,
414
- *,
354
+ override_context: typing.Union[dict, bpy.types.Context] = None,
355
+ execution_context: typing.Union[str, int] = None,
356
+ undo: bool = None,
415
357
  filepath: typing.Union[str, typing.Any] = "",
416
- hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
417
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
418
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
419
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
420
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
421
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
422
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = True,
423
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
424
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
425
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = True,
426
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
427
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
428
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
429
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
430
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
431
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
432
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
433
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
434
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
435
- filemode: typing.Optional[typing.Any] = 9,
436
- display_type: typing.Optional[typing.Any] = "DEFAULT",
437
- sort_method: typing.Optional[typing.Any] = "",
438
- internal: typing.Optional[typing.Union[bool, typing.Any]] = False,
358
+ hide_props_region: typing.Union[bool, typing.Any] = True,
359
+ check_existing: typing.Union[bool, typing.Any] = False,
360
+ filter_blender: typing.Union[bool, typing.Any] = False,
361
+ filter_backup: typing.Union[bool, typing.Any] = False,
362
+ filter_image: typing.Union[bool, typing.Any] = False,
363
+ filter_movie: typing.Union[bool, typing.Any] = False,
364
+ filter_python: typing.Union[bool, typing.Any] = True,
365
+ filter_font: typing.Union[bool, typing.Any] = False,
366
+ filter_sound: typing.Union[bool, typing.Any] = False,
367
+ filter_text: typing.Union[bool, typing.Any] = True,
368
+ filter_archive: typing.Union[bool, typing.Any] = False,
369
+ filter_btx: typing.Union[bool, typing.Any] = False,
370
+ filter_collada: typing.Union[bool, typing.Any] = False,
371
+ filter_alembic: typing.Union[bool, typing.Any] = False,
372
+ filter_usd: typing.Union[bool, typing.Any] = False,
373
+ filter_obj: typing.Union[bool, typing.Any] = False,
374
+ filter_volume: typing.Union[bool, typing.Any] = False,
375
+ filter_folder: typing.Union[bool, typing.Any] = True,
376
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
377
+ filemode: typing.Any = 9,
378
+ display_type: typing.Any = "DEFAULT",
379
+ sort_method: typing.Any = "",
380
+ internal: typing.Union[bool, typing.Any] = False,
439
381
  ):
440
382
  """Open a new text data-block
441
383
 
442
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
443
- :type execution_context: typing.Optional[typing.Union[str, int]]
444
- :type undo: typing.Optional[bool]
445
- :param filepath: File Path, Path to file
446
- :type filepath: typing.Union[str, typing.Any]
447
- :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
448
- :type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
449
- :param check_existing: Check Existing, Check and warn on overwriting existing files
450
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
451
- :param filter_blender: Filter .blend files
452
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
453
- :param filter_backup: Filter .blend files
454
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
455
- :param filter_image: Filter image files
456
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
457
- :param filter_movie: Filter movie files
458
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
459
- :param filter_python: Filter Python files
460
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
461
- :param filter_font: Filter font files
462
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
463
- :param filter_sound: Filter sound files
464
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
465
- :param filter_text: Filter text files
466
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
467
- :param filter_archive: Filter archive files
468
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
469
- :param filter_btx: Filter btx files
470
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
471
- :param filter_collada: Filter COLLADA files
472
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
473
- :param filter_alembic: Filter Alembic files
474
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
475
- :param filter_usd: Filter USD files
476
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
477
- :param filter_obj: Filter OBJ files
478
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
479
- :param filter_volume: Filter OpenVDB volume files
480
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
481
- :param filter_folder: Filter folders
482
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
483
- :param filter_blenlib: Filter Blender IDs
484
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
485
- :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
486
- :type filemode: typing.Optional[typing.Any]
487
- :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.
488
- :type display_type: typing.Optional[typing.Any]
489
- :param sort_method: File sorting mode * ``DEFAULT`` Default -- Automatically determine sort method for files. * ``FILE_SORT_ALPHA`` Name -- Sort the file list alphabetically. * ``FILE_SORT_EXTENSION`` Extension -- Sort the file list by extension/type. * ``FILE_SORT_TIME`` Modified Date -- Sort files by modification time. * ``FILE_SORT_SIZE`` Size -- Sort files by size.
490
- :type sort_method: typing.Optional[typing.Any]
491
- :param internal: Make Internal, Make text file internal after loading
492
- :type internal: typing.Optional[typing.Union[bool, typing.Any]]
384
+ :type override_context: typing.Union[dict, bpy.types.Context]
385
+ :type execution_context: typing.Union[str, int]
386
+ :type undo: bool
387
+ :param filepath: File Path, Path to file
388
+ :type filepath: typing.Union[str, typing.Any]
389
+ :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
390
+ :type hide_props_region: typing.Union[bool, typing.Any]
391
+ :param check_existing: Check Existing, Check and warn on overwriting existing files
392
+ :type check_existing: typing.Union[bool, typing.Any]
393
+ :param filter_blender: Filter .blend files
394
+ :type filter_blender: typing.Union[bool, typing.Any]
395
+ :param filter_backup: Filter .blend files
396
+ :type filter_backup: typing.Union[bool, typing.Any]
397
+ :param filter_image: Filter image files
398
+ :type filter_image: typing.Union[bool, typing.Any]
399
+ :param filter_movie: Filter movie files
400
+ :type filter_movie: typing.Union[bool, typing.Any]
401
+ :param filter_python: Filter Python files
402
+ :type filter_python: typing.Union[bool, typing.Any]
403
+ :param filter_font: Filter font files
404
+ :type filter_font: typing.Union[bool, typing.Any]
405
+ :param filter_sound: Filter sound files
406
+ :type filter_sound: typing.Union[bool, typing.Any]
407
+ :param filter_text: Filter text files
408
+ :type filter_text: typing.Union[bool, typing.Any]
409
+ :param filter_archive: Filter archive files
410
+ :type filter_archive: typing.Union[bool, typing.Any]
411
+ :param filter_btx: Filter btx files
412
+ :type filter_btx: typing.Union[bool, typing.Any]
413
+ :param filter_collada: Filter COLLADA files
414
+ :type filter_collada: typing.Union[bool, typing.Any]
415
+ :param filter_alembic: Filter Alembic files
416
+ :type filter_alembic: typing.Union[bool, typing.Any]
417
+ :param filter_usd: Filter USD files
418
+ :type filter_usd: typing.Union[bool, typing.Any]
419
+ :param filter_obj: Filter OBJ files
420
+ :type filter_obj: typing.Union[bool, typing.Any]
421
+ :param filter_volume: Filter OpenVDB volume files
422
+ :type filter_volume: typing.Union[bool, typing.Any]
423
+ :param filter_folder: Filter folders
424
+ :type filter_folder: typing.Union[bool, typing.Any]
425
+ :param filter_blenlib: Filter Blender IDs
426
+ :type filter_blenlib: typing.Union[bool, typing.Any]
427
+ :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
428
+ :type filemode: typing.Any
429
+ :param display_type: Display Type
430
+
431
+ DEFAULT
432
+ Default -- Automatically determine display type for files.
433
+
434
+ LIST_VERTICAL
435
+ Short List -- Display files as short list.
436
+
437
+ LIST_HORIZONTAL
438
+ Long List -- Display files as a detailed list.
439
+
440
+ THUMBNAIL
441
+ Thumbnails -- Display files as thumbnails.
442
+ :type display_type: typing.Any
443
+ :param sort_method: File sorting mode
444
+
445
+ DEFAULT
446
+ Default -- Automatically determine sort method for files.
447
+
448
+ FILE_SORT_ALPHA
449
+ Name -- Sort the file list alphabetically.
450
+
451
+ FILE_SORT_EXTENSION
452
+ Extension -- Sort the file list by extension/type.
453
+
454
+ FILE_SORT_TIME
455
+ Modified Date -- Sort files by modification time.
456
+
457
+ FILE_SORT_SIZE
458
+ Size -- Sort files by size.
459
+ :type sort_method: typing.Any
460
+ :param internal: Make Internal, Make text file internal after loading
461
+ :type internal: typing.Union[bool, typing.Any]
493
462
  """
494
463
 
495
464
  ...
496
465
 
497
466
  def overwrite_toggle(
498
- override_context: typing.Optional[
499
- typing.Union[typing.Dict, "bpy.types.Context"]
500
- ] = None,
501
- execution_context: typing.Optional[typing.Union[str, int]] = None,
502
- undo: typing.Optional[bool] = None,
467
+ override_context: typing.Union[dict, bpy.types.Context] = None,
468
+ execution_context: typing.Union[str, int] = None,
469
+ undo: bool = None,
503
470
  ):
504
471
  """Toggle overwrite while typing
505
472
 
506
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
507
- :type execution_context: typing.Optional[typing.Union[str, int]]
508
- :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
509
476
  """
510
477
 
511
478
  ...
512
479
 
513
480
  def paste(
514
- override_context: typing.Optional[
515
- typing.Union[typing.Dict, "bpy.types.Context"]
516
- ] = None,
517
- execution_context: typing.Optional[typing.Union[str, int]] = None,
518
- undo: typing.Optional[bool] = None,
519
- *,
520
- selection: 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
+ selection: typing.Union[bool, typing.Any] = False,
521
485
  ):
522
486
  """Paste text from clipboard
523
487
 
524
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
525
- :type execution_context: typing.Optional[typing.Union[str, int]]
526
- :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
527
491
  :param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
528
- :type selection: typing.Optional[typing.Union[bool, typing.Any]]
492
+ :type selection: typing.Union[bool, typing.Any]
529
493
  """
530
494
 
531
495
  ...
532
496
 
533
497
  def refresh_pyconstraints(
534
- override_context: typing.Optional[
535
- typing.Union[typing.Dict, "bpy.types.Context"]
536
- ] = None,
537
- execution_context: typing.Optional[typing.Union[str, int]] = None,
538
- undo: typing.Optional[bool] = None,
498
+ override_context: typing.Union[dict, bpy.types.Context] = None,
499
+ execution_context: typing.Union[str, int] = None,
500
+ undo: bool = None,
539
501
  ):
540
502
  """Refresh all pyconstraints
541
503
 
542
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
543
- :type execution_context: typing.Optional[typing.Union[str, int]]
544
- :type undo: typing.Optional[bool]
504
+ :type override_context: typing.Union[dict, bpy.types.Context]
505
+ :type execution_context: typing.Union[str, int]
506
+ :type undo: bool
545
507
  """
546
508
 
547
509
  ...
548
510
 
549
511
  def reload(
550
- override_context: typing.Optional[
551
- typing.Union[typing.Dict, "bpy.types.Context"]
552
- ] = None,
553
- execution_context: typing.Optional[typing.Union[str, int]] = None,
554
- undo: typing.Optional[bool] = None,
512
+ override_context: typing.Union[dict, bpy.types.Context] = None,
513
+ execution_context: typing.Union[str, int] = None,
514
+ undo: bool = None,
555
515
  ):
556
516
  """Reload active text data-block from its file
557
517
 
558
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
559
- :type execution_context: typing.Optional[typing.Union[str, int]]
560
- :type undo: typing.Optional[bool]
518
+ :type override_context: typing.Union[dict, bpy.types.Context]
519
+ :type execution_context: typing.Union[str, int]
520
+ :type undo: bool
561
521
  """
562
522
 
563
523
  ...
564
524
 
565
525
  def replace(
566
- override_context: typing.Optional[
567
- typing.Union[typing.Dict, "bpy.types.Context"]
568
- ] = None,
569
- execution_context: typing.Optional[typing.Union[str, int]] = None,
570
- undo: typing.Optional[bool] = None,
571
- *,
572
- all: typing.Optional[typing.Union[bool, typing.Any]] = False,
526
+ override_context: typing.Union[dict, bpy.types.Context] = None,
527
+ execution_context: typing.Union[str, int] = None,
528
+ undo: bool = None,
529
+ all: typing.Union[bool, typing.Any] = False,
573
530
  ):
574
531
  """Replace text with the specified text
575
532
 
576
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
577
- :type execution_context: typing.Optional[typing.Union[str, int]]
578
- :type undo: typing.Optional[bool]
533
+ :type override_context: typing.Union[dict, bpy.types.Context]
534
+ :type execution_context: typing.Union[str, int]
535
+ :type undo: bool
579
536
  :param all: Replace All, Replace all occurrences
580
- :type all: typing.Optional[typing.Union[bool, typing.Any]]
537
+ :type all: typing.Union[bool, typing.Any]
581
538
  """
582
539
 
583
540
  ...
584
541
 
585
542
  def replace_set_selected(
586
- override_context: typing.Optional[
587
- typing.Union[typing.Dict, "bpy.types.Context"]
588
- ] = None,
589
- execution_context: typing.Optional[typing.Union[str, int]] = None,
590
- undo: typing.Optional[bool] = None,
543
+ override_context: typing.Union[dict, bpy.types.Context] = None,
544
+ execution_context: typing.Union[str, int] = None,
545
+ undo: bool = None,
591
546
  ):
592
547
  """Replace text with specified text and set as selected
593
548
 
594
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
595
- :type execution_context: typing.Optional[typing.Union[str, int]]
596
- :type undo: typing.Optional[bool]
549
+ :type override_context: typing.Union[dict, bpy.types.Context]
550
+ :type execution_context: typing.Union[str, int]
551
+ :type undo: bool
597
552
  """
598
553
 
599
554
  ...
600
555
 
601
556
  def resolve_conflict(
602
- override_context: typing.Optional[
603
- typing.Union[typing.Dict, "bpy.types.Context"]
604
- ] = None,
605
- execution_context: typing.Optional[typing.Union[str, int]] = None,
606
- undo: typing.Optional[bool] = None,
607
- *,
608
- resolution: typing.Optional[typing.Any] = "IGNORE",
557
+ override_context: typing.Union[dict, bpy.types.Context] = None,
558
+ execution_context: typing.Union[str, int] = None,
559
+ undo: bool = None,
560
+ resolution: typing.Any = "IGNORE",
609
561
  ):
610
562
  """When external text is out of sync, resolve the conflict
611
563
 
612
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
613
- :type execution_context: typing.Optional[typing.Union[str, int]]
614
- :type undo: typing.Optional[bool]
564
+ :type override_context: typing.Union[dict, bpy.types.Context]
565
+ :type execution_context: typing.Union[str, int]
566
+ :type undo: bool
615
567
  :param resolution: Resolution, How to solve conflict due to differences in internal and external text
616
- :type resolution: typing.Optional[typing.Any]
568
+ :type resolution: typing.Any
617
569
  """
618
570
 
619
571
  ...
620
572
 
621
573
  def run_script(
622
- override_context: typing.Optional[
623
- typing.Union[typing.Dict, "bpy.types.Context"]
624
- ] = None,
625
- execution_context: typing.Optional[typing.Union[str, int]] = None,
626
- undo: typing.Optional[bool] = None,
574
+ override_context: typing.Union[dict, bpy.types.Context] = None,
575
+ execution_context: typing.Union[str, int] = None,
576
+ undo: bool = None,
627
577
  ):
628
578
  """Run active script
629
579
 
630
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
631
- :type execution_context: typing.Optional[typing.Union[str, int]]
632
- :type undo: typing.Optional[bool]
580
+ :type override_context: typing.Union[dict, bpy.types.Context]
581
+ :type execution_context: typing.Union[str, int]
582
+ :type undo: bool
633
583
  """
634
584
 
635
585
  ...
636
586
 
637
587
  def save(
638
- override_context: typing.Optional[
639
- typing.Union[typing.Dict, "bpy.types.Context"]
640
- ] = None,
641
- execution_context: typing.Optional[typing.Union[str, int]] = None,
642
- undo: typing.Optional[bool] = None,
588
+ override_context: typing.Union[dict, bpy.types.Context] = None,
589
+ execution_context: typing.Union[str, int] = None,
590
+ undo: bool = None,
643
591
  ):
644
592
  """Save active text data-block
645
593
 
646
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
647
- :type execution_context: typing.Optional[typing.Union[str, int]]
648
- :type undo: typing.Optional[bool]
594
+ :type override_context: typing.Union[dict, bpy.types.Context]
595
+ :type execution_context: typing.Union[str, int]
596
+ :type undo: bool
649
597
  """
650
598
 
651
599
  ...
652
600
 
653
601
  def save_as(
654
- override_context: typing.Optional[
655
- typing.Union[typing.Dict, "bpy.types.Context"]
656
- ] = None,
657
- execution_context: typing.Optional[typing.Union[str, int]] = None,
658
- undo: typing.Optional[bool] = None,
659
- *,
602
+ override_context: typing.Union[dict, bpy.types.Context] = None,
603
+ execution_context: typing.Union[str, int] = None,
604
+ undo: bool = None,
660
605
  filepath: typing.Union[str, typing.Any] = "",
661
- hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
662
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = True,
663
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
664
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
665
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = False,
666
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = False,
667
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = True,
668
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
669
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
670
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = True,
671
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
672
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
673
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
674
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
675
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
676
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
677
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
678
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
679
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
680
- filemode: typing.Optional[typing.Any] = 9,
681
- display_type: typing.Optional[typing.Any] = "DEFAULT",
682
- sort_method: typing.Optional[typing.Union[str, int, typing.Any]] = "",
606
+ hide_props_region: typing.Union[bool, typing.Any] = True,
607
+ check_existing: typing.Union[bool, typing.Any] = True,
608
+ filter_blender: typing.Union[bool, typing.Any] = False,
609
+ filter_backup: typing.Union[bool, typing.Any] = False,
610
+ filter_image: typing.Union[bool, typing.Any] = False,
611
+ filter_movie: typing.Union[bool, typing.Any] = False,
612
+ filter_python: typing.Union[bool, typing.Any] = True,
613
+ filter_font: typing.Union[bool, typing.Any] = False,
614
+ filter_sound: typing.Union[bool, typing.Any] = False,
615
+ filter_text: typing.Union[bool, typing.Any] = True,
616
+ filter_archive: typing.Union[bool, typing.Any] = False,
617
+ filter_btx: typing.Union[bool, typing.Any] = False,
618
+ filter_collada: typing.Union[bool, typing.Any] = False,
619
+ filter_alembic: typing.Union[bool, typing.Any] = False,
620
+ filter_usd: typing.Union[bool, typing.Any] = False,
621
+ filter_obj: typing.Union[bool, typing.Any] = False,
622
+ filter_volume: typing.Union[bool, typing.Any] = False,
623
+ filter_folder: typing.Union[bool, typing.Any] = True,
624
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
625
+ filemode: typing.Any = 9,
626
+ display_type: typing.Any = "DEFAULT",
627
+ sort_method: typing.Union[str, int, typing.Any] = "",
683
628
  ):
684
629
  """Save active text file with options
685
630
 
686
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
687
- :type execution_context: typing.Optional[typing.Union[str, int]]
688
- :type undo: typing.Optional[bool]
689
- :param filepath: File Path, Path to file
690
- :type filepath: typing.Union[str, typing.Any]
691
- :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
692
- :type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
693
- :param check_existing: Check Existing, Check and warn on overwriting existing files
694
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
695
- :param filter_blender: Filter .blend files
696
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
697
- :param filter_backup: Filter .blend files
698
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
699
- :param filter_image: Filter image files
700
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
701
- :param filter_movie: Filter movie files
702
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
703
- :param filter_python: Filter Python files
704
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
705
- :param filter_font: Filter font files
706
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
707
- :param filter_sound: Filter sound files
708
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
709
- :param filter_text: Filter text files
710
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
711
- :param filter_archive: Filter archive files
712
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
713
- :param filter_btx: Filter btx files
714
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
715
- :param filter_collada: Filter COLLADA files
716
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
717
- :param filter_alembic: Filter Alembic files
718
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
719
- :param filter_usd: Filter USD files
720
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
721
- :param filter_obj: Filter OBJ files
722
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
723
- :param filter_volume: Filter OpenVDB volume files
724
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
725
- :param filter_folder: Filter folders
726
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
727
- :param filter_blenlib: Filter Blender IDs
728
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
729
- :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
730
- :type filemode: typing.Optional[typing.Any]
731
- :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.
732
- :type display_type: typing.Optional[typing.Any]
733
- :param sort_method: File sorting mode
734
- :type sort_method: typing.Optional[typing.Union[str, int, typing.Any]]
631
+ :type override_context: typing.Union[dict, bpy.types.Context]
632
+ :type execution_context: typing.Union[str, int]
633
+ :type undo: bool
634
+ :param filepath: File Path, Path to file
635
+ :type filepath: typing.Union[str, typing.Any]
636
+ :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
637
+ :type hide_props_region: typing.Union[bool, typing.Any]
638
+ :param check_existing: Check Existing, Check and warn on overwriting existing files
639
+ :type check_existing: typing.Union[bool, typing.Any]
640
+ :param filter_blender: Filter .blend files
641
+ :type filter_blender: typing.Union[bool, typing.Any]
642
+ :param filter_backup: Filter .blend files
643
+ :type filter_backup: typing.Union[bool, typing.Any]
644
+ :param filter_image: Filter image files
645
+ :type filter_image: typing.Union[bool, typing.Any]
646
+ :param filter_movie: Filter movie files
647
+ :type filter_movie: typing.Union[bool, typing.Any]
648
+ :param filter_python: Filter Python files
649
+ :type filter_python: typing.Union[bool, typing.Any]
650
+ :param filter_font: Filter font files
651
+ :type filter_font: typing.Union[bool, typing.Any]
652
+ :param filter_sound: Filter sound files
653
+ :type filter_sound: typing.Union[bool, typing.Any]
654
+ :param filter_text: Filter text files
655
+ :type filter_text: typing.Union[bool, typing.Any]
656
+ :param filter_archive: Filter archive files
657
+ :type filter_archive: typing.Union[bool, typing.Any]
658
+ :param filter_btx: Filter btx files
659
+ :type filter_btx: typing.Union[bool, typing.Any]
660
+ :param filter_collada: Filter COLLADA files
661
+ :type filter_collada: typing.Union[bool, typing.Any]
662
+ :param filter_alembic: Filter Alembic files
663
+ :type filter_alembic: typing.Union[bool, typing.Any]
664
+ :param filter_usd: Filter USD files
665
+ :type filter_usd: typing.Union[bool, typing.Any]
666
+ :param filter_obj: Filter OBJ files
667
+ :type filter_obj: typing.Union[bool, typing.Any]
668
+ :param filter_volume: Filter OpenVDB volume files
669
+ :type filter_volume: typing.Union[bool, typing.Any]
670
+ :param filter_folder: Filter folders
671
+ :type filter_folder: typing.Union[bool, typing.Any]
672
+ :param filter_blenlib: Filter Blender IDs
673
+ :type filter_blenlib: typing.Union[bool, typing.Any]
674
+ :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
675
+ :type filemode: typing.Any
676
+ :param display_type: Display Type
677
+
678
+ DEFAULT
679
+ Default -- Automatically determine display type for files.
680
+
681
+ LIST_VERTICAL
682
+ Short List -- Display files as short list.
683
+
684
+ LIST_HORIZONTAL
685
+ Long List -- Display files as a detailed list.
686
+
687
+ THUMBNAIL
688
+ Thumbnails -- Display files as thumbnails.
689
+ :type display_type: typing.Any
690
+ :param sort_method: File sorting mode
691
+ :type sort_method: typing.Union[str, int, typing.Any]
735
692
  """
736
693
 
737
694
  ...
738
695
 
739
696
  def scroll(
740
- override_context: typing.Optional[
741
- typing.Union[typing.Dict, "bpy.types.Context"]
742
- ] = None,
743
- execution_context: typing.Optional[typing.Union[str, int]] = None,
744
- undo: typing.Optional[bool] = None,
745
- *,
746
- lines: typing.Optional[typing.Any] = 1,
747
- ):
748
- """Undocumented, consider `contributing <https://developer.blender.org/>`__.
749
-
750
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
751
- :type execution_context: typing.Optional[typing.Union[str, int]]
752
- :type undo: typing.Optional[bool]
697
+ override_context: typing.Union[dict, bpy.types.Context] = None,
698
+ execution_context: typing.Union[str, int] = None,
699
+ undo: bool = None,
700
+ lines: typing.Any = 1,
701
+ ):
702
+ """Undocumented, consider contributing.
703
+
704
+ :type override_context: typing.Union[dict, bpy.types.Context]
705
+ :type execution_context: typing.Union[str, int]
706
+ :type undo: bool
753
707
  :param lines: Lines, Number of lines to scroll
754
- :type lines: typing.Optional[typing.Any]
708
+ :type lines: typing.Any
755
709
  """
756
710
 
757
711
  ...
758
712
 
759
713
  def scroll_bar(
760
- override_context: typing.Optional[
761
- typing.Union[typing.Dict, "bpy.types.Context"]
762
- ] = None,
763
- execution_context: typing.Optional[typing.Union[str, int]] = None,
764
- undo: typing.Optional[bool] = None,
765
- *,
766
- lines: typing.Optional[typing.Any] = 1,
767
- ):
768
- """Undocumented, consider `contributing <https://developer.blender.org/>`__.
769
-
770
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
771
- :type execution_context: typing.Optional[typing.Union[str, int]]
772
- :type undo: typing.Optional[bool]
714
+ override_context: typing.Union[dict, bpy.types.Context] = None,
715
+ execution_context: typing.Union[str, int] = None,
716
+ undo: bool = None,
717
+ lines: typing.Any = 1,
718
+ ):
719
+ """Undocumented, consider contributing.
720
+
721
+ :type override_context: typing.Union[dict, bpy.types.Context]
722
+ :type execution_context: typing.Union[str, int]
723
+ :type undo: bool
773
724
  :param lines: Lines, Number of lines to scroll
774
- :type lines: typing.Optional[typing.Any]
725
+ :type lines: typing.Any
775
726
  """
776
727
 
777
728
  ...
778
729
 
779
730
  def select_all(
780
- override_context: typing.Optional[
781
- typing.Union[typing.Dict, "bpy.types.Context"]
782
- ] = None,
783
- execution_context: typing.Optional[typing.Union[str, int]] = None,
784
- 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,
785
734
  ):
786
735
  """Select all text
787
736
 
788
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
789
- :type execution_context: typing.Optional[typing.Union[str, int]]
790
- :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
791
740
  """
792
741
 
793
742
  ...
794
743
 
795
744
  def select_line(
796
- override_context: typing.Optional[
797
- typing.Union[typing.Dict, "bpy.types.Context"]
798
- ] = None,
799
- execution_context: typing.Optional[typing.Union[str, int]] = None,
800
- 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,
801
748
  ):
802
749
  """Select text by line
803
750
 
804
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
805
- :type execution_context: typing.Optional[typing.Union[str, int]]
806
- :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
807
754
  """
808
755
 
809
756
  ...
810
757
 
811
758
  def select_word(
812
- override_context: typing.Optional[
813
- typing.Union[typing.Dict, "bpy.types.Context"]
814
- ] = None,
815
- execution_context: typing.Optional[typing.Union[str, int]] = None,
816
- undo: typing.Optional[bool] = None,
759
+ override_context: typing.Union[dict, bpy.types.Context] = None,
760
+ execution_context: typing.Union[str, int] = None,
761
+ undo: bool = None,
817
762
  ):
818
763
  """Select word under cursor
819
764
 
820
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
821
- :type execution_context: typing.Optional[typing.Union[str, int]]
822
- :type undo: typing.Optional[bool]
765
+ :type override_context: typing.Union[dict, bpy.types.Context]
766
+ :type execution_context: typing.Union[str, int]
767
+ :type undo: bool
823
768
  """
824
769
 
825
770
  ...
826
771
 
827
772
  def selection_set(
828
- override_context: typing.Optional[
829
- typing.Union[typing.Dict, "bpy.types.Context"]
830
- ] = None,
831
- execution_context: typing.Optional[typing.Union[str, int]] = None,
832
- undo: typing.Optional[bool] = None,
773
+ override_context: typing.Union[dict, bpy.types.Context] = None,
774
+ execution_context: typing.Union[str, int] = None,
775
+ undo: bool = None,
833
776
  ):
834
777
  """Set text selection
835
778
 
836
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
837
- :type execution_context: typing.Optional[typing.Union[str, int]]
838
- :type undo: typing.Optional[bool]
779
+ :type override_context: typing.Union[dict, bpy.types.Context]
780
+ :type execution_context: typing.Union[str, int]
781
+ :type undo: bool
839
782
  """
840
783
 
841
784
  ...
842
785
 
843
786
  def start_find(
844
- override_context: typing.Optional[
845
- typing.Union[typing.Dict, "bpy.types.Context"]
846
- ] = None,
847
- execution_context: typing.Optional[typing.Union[str, int]] = None,
848
- undo: typing.Optional[bool] = None,
787
+ override_context: typing.Union[dict, bpy.types.Context] = None,
788
+ execution_context: typing.Union[str, int] = None,
789
+ undo: bool = None,
849
790
  ):
850
791
  """Start searching text
851
792
 
852
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
853
- :type execution_context: typing.Optional[typing.Union[str, int]]
854
- :type undo: typing.Optional[bool]
793
+ :type override_context: typing.Union[dict, bpy.types.Context]
794
+ :type execution_context: typing.Union[str, int]
795
+ :type undo: bool
855
796
  """
856
797
 
857
798
  ...
858
799
 
859
800
  def to_3d_object(
860
- override_context: typing.Optional[
861
- typing.Union[typing.Dict, "bpy.types.Context"]
862
- ] = None,
863
- execution_context: typing.Optional[typing.Union[str, int]] = None,
864
- undo: typing.Optional[bool] = None,
865
- *,
866
- split_lines: typing.Optional[typing.Union[bool, typing.Any]] = False,
801
+ override_context: typing.Union[dict, bpy.types.Context] = None,
802
+ execution_context: typing.Union[str, int] = None,
803
+ undo: bool = None,
804
+ split_lines: typing.Union[bool, typing.Any] = False,
867
805
  ):
868
806
  """Create 3D text object from active text data-block
869
807
 
870
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
871
- :type execution_context: typing.Optional[typing.Union[str, int]]
872
- :type undo: typing.Optional[bool]
808
+ :type override_context: typing.Union[dict, bpy.types.Context]
809
+ :type execution_context: typing.Union[str, int]
810
+ :type undo: bool
873
811
  :param split_lines: Split Lines, Create one object per line in the text
874
- :type split_lines: typing.Optional[typing.Union[bool, typing.Any]]
812
+ :type split_lines: typing.Union[bool, typing.Any]
875
813
  """
876
814
 
877
815
  ...
878
816
 
879
817
  def unindent(
880
- override_context: typing.Optional[
881
- typing.Union[typing.Dict, "bpy.types.Context"]
882
- ] = None,
883
- execution_context: typing.Optional[typing.Union[str, int]] = None,
884
- undo: typing.Optional[bool] = None,
818
+ override_context: typing.Union[dict, bpy.types.Context] = None,
819
+ execution_context: typing.Union[str, int] = None,
820
+ undo: bool = None,
885
821
  ):
886
822
  """Unindent selected text
887
823
 
888
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
889
- :type execution_context: typing.Optional[typing.Union[str, int]]
890
- :type undo: typing.Optional[bool]
824
+ :type override_context: typing.Union[dict, bpy.types.Context]
825
+ :type execution_context: typing.Union[str, int]
826
+ :type undo: bool
891
827
  """
892
828
 
893
829
  ...
894
830
 
895
831
  def unlink(
896
- override_context: typing.Optional[
897
- typing.Union[typing.Dict, "bpy.types.Context"]
898
- ] = None,
899
- execution_context: typing.Optional[typing.Union[str, int]] = None,
900
- undo: typing.Optional[bool] = None,
832
+ override_context: typing.Union[dict, bpy.types.Context] = None,
833
+ execution_context: typing.Union[str, int] = None,
834
+ undo: bool = None,
901
835
  ):
902
836
  """Unlink active text data-block
903
837
 
904
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
905
- :type execution_context: typing.Optional[typing.Union[str, int]]
906
- :type undo: typing.Optional[bool]
838
+ :type override_context: typing.Union[dict, bpy.types.Context]
839
+ :type execution_context: typing.Union[str, int]
840
+ :type undo: bool
907
841
  """
908
842
 
909
843
  ...