class_os.rst 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the OS.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_OS:
  5. OS
  6. ==
  7. **Inherits:** :ref:`Object<class_object>`
  8. **Category:** Core
  9. Brief Description
  10. -----------------
  11. Operating System functions.
  12. Member Functions
  13. ----------------
  14. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  15. | void | :ref:`alert<class_OS_alert>` **(** :ref:`String<class_string>` text, :ref:`String<class_string>` title="Alert!" **)** |
  16. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  17. | :ref:`bool<class_bool>` | :ref:`can_draw<class_OS_can_draw>` **(** **)** const |
  18. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  19. | :ref:`bool<class_bool>` | :ref:`can_use_threads<class_OS_can_use_threads>` **(** **)** const |
  20. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  21. | void | :ref:`delay_msec<class_OS_delay_msec>` **(** :ref:`int<class_int>` msec **)** const |
  22. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  23. | void | :ref:`delay_usec<class_OS_delay_usec>` **(** :ref:`int<class_int>` usec **)** const |
  24. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  25. | void | :ref:`dump_memory_to_file<class_OS_dump_memory_to_file>` **(** :ref:`String<class_string>` file **)** |
  26. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  27. | void | :ref:`dump_resources_to_file<class_OS_dump_resources_to_file>` **(** :ref:`String<class_string>` file **)** |
  28. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  29. | :ref:`int<class_int>` | :ref:`execute<class_OS_execute>` **(** :ref:`String<class_string>` path, :ref:`PoolStringArray<class_poolstringarray>` arguments, :ref:`bool<class_bool>` blocking, :ref:`Array<class_array>` output=[ ] **)** |
  30. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  31. | :ref:`int<class_int>` | :ref:`find_scancode_from_string<class_OS_find_scancode_from_string>` **(** :ref:`String<class_string>` string **)** const |
  32. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  33. | :ref:`bool<class_bool>` | :ref:`get_borderless_window<class_OS_get_borderless_window>` **(** **)** const |
  34. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  35. | :ref:`String<class_string>` | :ref:`get_clipboard<class_OS_get_clipboard>` **(** **)** const |
  36. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  37. | :ref:`PoolStringArray<class_poolstringarray>` | :ref:`get_cmdline_args<class_OS_get_cmdline_args>` **(** **)** |
  38. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | :ref:`int<class_int>` | :ref:`get_current_screen<class_OS_get_current_screen>` **(** **)** const |
  40. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | :ref:`Dictionary<class_dictionary>` | :ref:`get_date<class_OS_get_date>` **(** :ref:`bool<class_bool>` utc=false **)** const |
  42. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`Dictionary<class_dictionary>` | :ref:`get_datetime<class_OS_get_datetime>` **(** :ref:`bool<class_bool>` utc=false **)** const |
  44. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`Dictionary<class_dictionary>` | :ref:`get_datetime_from_unix_time<class_OS_get_datetime_from_unix_time>` **(** :ref:`int<class_int>` unix_time_val **)** const |
  46. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`int<class_int>` | :ref:`get_dynamic_memory_usage<class_OS_get_dynamic_memory_usage>` **(** **)** const |
  48. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`String<class_string>` | :ref:`get_environment<class_OS_get_environment>` **(** :ref:`String<class_string>` environment **)** const |
  50. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`String<class_string>` | :ref:`get_executable_path<class_OS_get_executable_path>` **(** **)** const |
  52. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`int<class_int>` | :ref:`get_exit_code<class_OS_get_exit_code>` **(** **)** const |
  54. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`String<class_string>` | :ref:`get_latin_keyboard_variant<class_OS_get_latin_keyboard_variant>` **(** **)** const |
  56. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`String<class_string>` | :ref:`get_locale<class_OS_get_locale>` **(** **)** const |
  58. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`String<class_string>` | :ref:`get_model_name<class_OS_get_model_name>` **(** **)** const |
  60. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`String<class_string>` | :ref:`get_name<class_OS_get_name>` **(** **)** const |
  62. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`int<class_int>` | :ref:`get_power_percent_left<class_OS_get_power_percent_left>` **(** **)** |
  64. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`int<class_int>` | :ref:`get_power_seconds_left<class_OS_get_power_seconds_left>` **(** **)** |
  66. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`int<class_int>` | :ref:`get_power_state<class_OS_get_power_state>` **(** **)** |
  68. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`int<class_int>` | :ref:`get_process_id<class_OS_get_process_id>` **(** **)** const |
  70. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`int<class_int>` | :ref:`get_processor_count<class_OS_get_processor_count>` **(** **)** const |
  72. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`String<class_string>` | :ref:`get_scancode_string<class_OS_get_scancode_string>` **(** :ref:`int<class_int>` code **)** const |
  74. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`int<class_int>` | :ref:`get_screen_count<class_OS_get_screen_count>` **(** **)** const |
  76. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`int<class_int>` | :ref:`get_screen_dpi<class_OS_get_screen_dpi>` **(** :ref:`int<class_int>` screen=-1 **)** const |
  78. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | :ref:`int<class_int>` | :ref:`get_screen_orientation<class_OS_get_screen_orientation>` **(** **)** const |
  80. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`Vector2<class_vector2>` | :ref:`get_screen_position<class_OS_get_screen_position>` **(** :ref:`int<class_int>` screen=-1 **)** const |
  82. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`Vector2<class_vector2>` | :ref:`get_screen_size<class_OS_get_screen_size>` **(** :ref:`int<class_int>` screen=-1 **)** const |
  84. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`int<class_int>` | :ref:`get_splash_tick_msec<class_OS_get_splash_tick_msec>` **(** **)** const |
  86. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`int<class_int>` | :ref:`get_static_memory_peak_usage<class_OS_get_static_memory_peak_usage>` **(** **)** const |
  88. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`int<class_int>` | :ref:`get_static_memory_usage<class_OS_get_static_memory_usage>` **(** **)** const |
  90. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`String<class_string>` | :ref:`get_system_dir<class_OS_get_system_dir>` **(** :ref:`int<class_int>` dir **)** const |
  92. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`int<class_int>` | :ref:`get_system_time_secs<class_OS_get_system_time_secs>` **(** **)** const |
  94. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`int<class_int>` | :ref:`get_ticks_msec<class_OS_get_ticks_msec>` **(** **)** const |
  96. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  97. | :ref:`Dictionary<class_dictionary>` | :ref:`get_time<class_OS_get_time>` **(** :ref:`bool<class_bool>` utc=false **)** const |
  98. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`Dictionary<class_dictionary>` | :ref:`get_time_zone_info<class_OS_get_time_zone_info>` **(** **)** const |
  100. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  101. | :ref:`String<class_string>` | :ref:`get_unique_id<class_OS_get_unique_id>` **(** **)** const |
  102. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  103. | :ref:`int<class_int>` | :ref:`get_unix_time<class_OS_get_unix_time>` **(** **)** const |
  104. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  105. | :ref:`int<class_int>` | :ref:`get_unix_time_from_datetime<class_OS_get_unix_time_from_datetime>` **(** :ref:`Dictionary<class_dictionary>` datetime **)** const |
  106. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  107. | :ref:`String<class_string>` | :ref:`get_user_data_dir<class_OS_get_user_data_dir>` **(** **)** const |
  108. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  109. | :ref:`int<class_int>` | :ref:`get_virtual_keyboard_height<class_OS_get_virtual_keyboard_height>` **(** **)** |
  110. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  111. | :ref:`Vector2<class_vector2>` | :ref:`get_window_position<class_OS_get_window_position>` **(** **)** const |
  112. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  113. | :ref:`Vector2<class_vector2>` | :ref:`get_window_size<class_OS_get_window_size>` **(** **)** const |
  114. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  115. | :ref:`bool<class_bool>` | :ref:`has_environment<class_OS_has_environment>` **(** :ref:`String<class_string>` environment **)** const |
  116. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  117. | :ref:`bool<class_bool>` | :ref:`has_feature<class_OS_has_feature>` **(** :ref:`String<class_string>` tag_name **)** const |
  118. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  119. | :ref:`bool<class_bool>` | :ref:`has_touchscreen_ui_hint<class_OS_has_touchscreen_ui_hint>` **(** **)** const |
  120. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  121. | :ref:`bool<class_bool>` | :ref:`has_virtual_keyboard<class_OS_has_virtual_keyboard>` **(** **)** const |
  122. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  123. | void | :ref:`hide_virtual_keyboard<class_OS_hide_virtual_keyboard>` **(** **)** |
  124. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  125. | :ref:`bool<class_bool>` | :ref:`is_debug_build<class_OS_is_debug_build>` **(** **)** const |
  126. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  127. | :ref:`bool<class_bool>` | :ref:`is_in_low_processor_usage_mode<class_OS_is_in_low_processor_usage_mode>` **(** **)** const |
  128. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  129. | :ref:`bool<class_bool>` | :ref:`is_keep_screen_on<class_OS_is_keep_screen_on>` **(** **)** const |
  130. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  131. | :ref:`bool<class_bool>` | :ref:`is_ok_left_and_cancel_right<class_OS_is_ok_left_and_cancel_right>` **(** **)** const |
  132. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  133. | :ref:`bool<class_bool>` | :ref:`is_scancode_unicode<class_OS_is_scancode_unicode>` **(** :ref:`int<class_int>` code **)** const |
  134. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  135. | :ref:`bool<class_bool>` | :ref:`is_stdout_verbose<class_OS_is_stdout_verbose>` **(** **)** const |
  136. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  137. | :ref:`bool<class_bool>` | :ref:`is_userfs_persistent<class_OS_is_userfs_persistent>` **(** **)** const |
  138. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  139. | :ref:`bool<class_bool>` | :ref:`is_vsync_enabled<class_OS_is_vsync_enabled>` **(** **)** const |
  140. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  141. | :ref:`bool<class_bool>` | :ref:`is_window_fullscreen<class_OS_is_window_fullscreen>` **(** **)** const |
  142. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  143. | :ref:`bool<class_bool>` | :ref:`is_window_maximized<class_OS_is_window_maximized>` **(** **)** const |
  144. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  145. | :ref:`bool<class_bool>` | :ref:`is_window_minimized<class_OS_is_window_minimized>` **(** **)** const |
  146. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  147. | :ref:`bool<class_bool>` | :ref:`is_window_resizable<class_OS_is_window_resizable>` **(** **)** const |
  148. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  149. | :ref:`int<class_int>` | :ref:`kill<class_OS_kill>` **(** :ref:`int<class_int>` pid **)** |
  150. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  151. | :ref:`bool<class_bool>` | :ref:`native_video_is_playing<class_OS_native_video_is_playing>` **(** **)** |
  152. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  153. | void | :ref:`native_video_pause<class_OS_native_video_pause>` **(** **)** |
  154. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  155. | :ref:`int<class_int>` | :ref:`native_video_play<class_OS_native_video_play>` **(** :ref:`String<class_string>` path, :ref:`float<class_float>` volume, :ref:`String<class_string>` audio_track, :ref:`String<class_string>` subtitle_track **)** |
  156. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  157. | void | :ref:`native_video_stop<class_OS_native_video_stop>` **(** **)** |
  158. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  159. | void | :ref:`native_video_unpause<class_OS_native_video_unpause>` **(** **)** |
  160. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  161. | void | :ref:`print_all_resources<class_OS_print_all_resources>` **(** :ref:`String<class_string>` tofile="" **)** |
  162. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  163. | void | :ref:`print_all_textures_by_size<class_OS_print_all_textures_by_size>` **(** **)** |
  164. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  165. | void | :ref:`print_resources_by_type<class_OS_print_resources_by_type>` **(** :ref:`PoolStringArray<class_poolstringarray>` types **)** |
  166. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  167. | void | :ref:`print_resources_in_use<class_OS_print_resources_in_use>` **(** :ref:`bool<class_bool>` short=false **)** |
  168. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  169. | void | :ref:`request_attention<class_OS_request_attention>` **(** **)** |
  170. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  171. | void | :ref:`set_borderless_window<class_OS_set_borderless_window>` **(** :ref:`bool<class_bool>` borderless **)** |
  172. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  173. | void | :ref:`set_clipboard<class_OS_set_clipboard>` **(** :ref:`String<class_string>` clipboard **)** |
  174. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  175. | void | :ref:`set_current_screen<class_OS_set_current_screen>` **(** :ref:`int<class_int>` screen **)** |
  176. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  177. | void | :ref:`set_exit_code<class_OS_set_exit_code>` **(** :ref:`int<class_int>` code **)** |
  178. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  179. | void | :ref:`set_icon<class_OS_set_icon>` **(** :ref:`Image<class_image>` icon **)** |
  180. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  181. | void | :ref:`set_ime_position<class_OS_set_ime_position>` **(** :ref:`Vector2<class_vector2>` position **)** |
  182. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  183. | void | :ref:`set_keep_screen_on<class_OS_set_keep_screen_on>` **(** :ref:`bool<class_bool>` enabled **)** |
  184. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  185. | void | :ref:`set_low_processor_usage_mode<class_OS_set_low_processor_usage_mode>` **(** :ref:`bool<class_bool>` enable **)** |
  186. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  187. | void | :ref:`set_screen_orientation<class_OS_set_screen_orientation>` **(** :ref:`int<class_int>` orientation **)** |
  188. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  189. | :ref:`int<class_int>` | :ref:`set_thread_name<class_OS_set_thread_name>` **(** :ref:`String<class_string>` name **)** |
  190. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  191. | void | :ref:`set_use_file_access_save_and_swap<class_OS_set_use_file_access_save_and_swap>` **(** :ref:`bool<class_bool>` enabled **)** |
  192. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  193. | void | :ref:`set_use_vsync<class_OS_set_use_vsync>` **(** :ref:`bool<class_bool>` enable **)** |
  194. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  195. | void | :ref:`set_window_fullscreen<class_OS_set_window_fullscreen>` **(** :ref:`bool<class_bool>` enabled **)** |
  196. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  197. | void | :ref:`set_window_maximized<class_OS_set_window_maximized>` **(** :ref:`bool<class_bool>` enabled **)** |
  198. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  199. | void | :ref:`set_window_minimized<class_OS_set_window_minimized>` **(** :ref:`bool<class_bool>` enabled **)** |
  200. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  201. | void | :ref:`set_window_position<class_OS_set_window_position>` **(** :ref:`Vector2<class_vector2>` position **)** |
  202. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  203. | void | :ref:`set_window_resizable<class_OS_set_window_resizable>` **(** :ref:`bool<class_bool>` enabled **)** |
  204. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  205. | void | :ref:`set_window_size<class_OS_set_window_size>` **(** :ref:`Vector2<class_vector2>` size **)** |
  206. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  207. | void | :ref:`set_window_title<class_OS_set_window_title>` **(** :ref:`String<class_string>` title **)** |
  208. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  209. | :ref:`int<class_int>` | :ref:`shell_open<class_OS_shell_open>` **(** :ref:`String<class_string>` uri **)** |
  210. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  211. | void | :ref:`show_virtual_keyboard<class_OS_show_virtual_keyboard>` **(** :ref:`String<class_string>` existing_text="" **)** |
  212. +------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  213. Enums
  214. -----
  215. .. _enum_OS_SystemDir:
  216. enum **SystemDir**
  217. - **SYSTEM_DIR_DESKTOP** = **0**
  218. - **SYSTEM_DIR_DCIM** = **1**
  219. - **SYSTEM_DIR_DOCUMENTS** = **2**
  220. - **SYSTEM_DIR_DOWNLOADS** = **3**
  221. - **SYSTEM_DIR_MOVIES** = **4**
  222. - **SYSTEM_DIR_MUSIC** = **5**
  223. - **SYSTEM_DIR_PICTURES** = **6**
  224. - **SYSTEM_DIR_RINGTONES** = **7**
  225. .. _enum_OS_ScreenOrientation:
  226. enum **ScreenOrientation**
  227. - **SCREEN_ORIENTATION_LANDSCAPE** = **0**
  228. - **SCREEN_ORIENTATION_PORTRAIT** = **1**
  229. - **SCREEN_ORIENTATION_REVERSE_LANDSCAPE** = **2**
  230. - **SCREEN_ORIENTATION_REVERSE_PORTRAIT** = **3**
  231. - **SCREEN_ORIENTATION_SENSOR_LANDSCAPE** = **4**
  232. - **SCREEN_ORIENTATION_SENSOR_PORTRAIT** = **5**
  233. - **SCREEN_ORIENTATION_SENSOR** = **6**
  234. .. _enum_OS_PowerState:
  235. enum **PowerState**
  236. - **POWERSTATE_UNKNOWN** = **0**
  237. - **POWERSTATE_ON_BATTERY** = **1**
  238. - **POWERSTATE_NO_BATTERY** = **2**
  239. - **POWERSTATE_CHARGING** = **3**
  240. - **POWERSTATE_CHARGED** = **4**
  241. .. _enum_OS_Weekday:
  242. enum **Weekday**
  243. - **DAY_SUNDAY** = **0**
  244. - **DAY_MONDAY** = **1**
  245. - **DAY_TUESDAY** = **2**
  246. - **DAY_WEDNESDAY** = **3**
  247. - **DAY_THURSDAY** = **4**
  248. - **DAY_FRIDAY** = **5**
  249. - **DAY_SATURDAY** = **6**
  250. .. _enum_OS_Month:
  251. enum **Month**
  252. - **MONTH_JANUARY** = **1**
  253. - **MONTH_FEBRUARY** = **2**
  254. - **MONTH_MARCH** = **3**
  255. - **MONTH_APRIL** = **4**
  256. - **MONTH_MAY** = **5**
  257. - **MONTH_JUNE** = **6**
  258. - **MONTH_JULY** = **7**
  259. - **MONTH_AUGUST** = **8**
  260. - **MONTH_SEPTEMBER** = **9**
  261. - **MONTH_OCTOBER** = **10**
  262. - **MONTH_NOVEMBER** = **11**
  263. - **MONTH_DECEMBER** = **12**
  264. Description
  265. -----------
  266. Operating System functions. OS Wraps the most common functionality to communicate with the host Operating System, such as: mouse grabbing, mouse cursors, clipboard, video mode, date and time, timers, environment variables, execution of binaries, command line, etc.
  267. Member Function Description
  268. ---------------------------
  269. .. _class_OS_alert:
  270. - void **alert** **(** :ref:`String<class_string>` text, :ref:`String<class_string>` title="Alert!" **)**
  271. Displays a modal dialog box utilizing the host OS.
  272. .. _class_OS_can_draw:
  273. - :ref:`bool<class_bool>` **can_draw** **(** **)** const
  274. Returns ``true`` if the host OS allows drawing.
  275. .. _class_OS_can_use_threads:
  276. - :ref:`bool<class_bool>` **can_use_threads** **(** **)** const
  277. Returns ``true`` if the current host platform is using multiple threads.
  278. .. _class_OS_delay_msec:
  279. - void **delay_msec** **(** :ref:`int<class_int>` msec **)** const
  280. Delay executing of the current thread by given milliseconds.
  281. .. _class_OS_delay_usec:
  282. - void **delay_usec** **(** :ref:`int<class_int>` usec **)** const
  283. Delay executing of the current thread by given microseconds.
  284. .. _class_OS_dump_memory_to_file:
  285. - void **dump_memory_to_file** **(** :ref:`String<class_string>` file **)**
  286. Dumps the memory allocation ringlist to a file (only works in debug).
  287. Entry format per line: "Address - Size - Description"
  288. .. _class_OS_dump_resources_to_file:
  289. - void **dump_resources_to_file** **(** :ref:`String<class_string>` file **)**
  290. Dumps all used resources to file (only works in debug).
  291. Entry format per line: "Resource Type : Resource Location"
  292. At the end of the file is a statistic of all used Resource Types.
  293. .. _class_OS_execute:
  294. - :ref:`int<class_int>` **execute** **(** :ref:`String<class_string>` path, :ref:`PoolStringArray<class_poolstringarray>` arguments, :ref:`bool<class_bool>` blocking, :ref:`Array<class_array>` output=[ ] **)**
  295. Execute the binary file in given path, optionally blocking until it returns. A process ID is returned.
  296. .. _class_OS_find_scancode_from_string:
  297. - :ref:`int<class_int>` **find_scancode_from_string** **(** :ref:`String<class_string>` string **)** const
  298. Returns the scancode of the given string (e.g. "Escape")
  299. .. _class_OS_get_borderless_window:
  300. - :ref:`bool<class_bool>` **get_borderless_window** **(** **)** const
  301. Returns true if the current window is borderless.
  302. .. _class_OS_get_clipboard:
  303. - :ref:`String<class_string>` **get_clipboard** **(** **)** const
  304. Get clipboard from the host OS.
  305. .. _class_OS_get_cmdline_args:
  306. - :ref:`PoolStringArray<class_poolstringarray>` **get_cmdline_args** **(** **)**
  307. Returns the command line arguments passed to the engine.
  308. .. _class_OS_get_current_screen:
  309. - :ref:`int<class_int>` **get_current_screen** **(** **)** const
  310. Returns the current screen index (0 padded).
  311. .. _class_OS_get_date:
  312. - :ref:`Dictionary<class_dictionary>` **get_date** **(** :ref:`bool<class_bool>` utc=false **)** const
  313. Returns current date as a dictionary of keys: year, month, day, weekday, dst (daylight savings time).
  314. .. _class_OS_get_datetime:
  315. - :ref:`Dictionary<class_dictionary>` **get_datetime** **(** :ref:`bool<class_bool>` utc=false **)** const
  316. Returns current datetime as a dictionary of keys: year, month, day, weekday, dst (daylight savings time), hour, minute, second.
  317. .. _class_OS_get_datetime_from_unix_time:
  318. - :ref:`Dictionary<class_dictionary>` **get_datetime_from_unix_time** **(** :ref:`int<class_int>` unix_time_val **)** const
  319. Get a dictionary of time values when given epoch time.
  320. Dictionary Time values will be a union of values from :ref:`get_time<class_OS_get_time>` and :ref:`get_date<class_OS_get_date>` dictionaries (with the exception of dst = day light standard time, as it cannot be determined from epoch).
  321. .. _class_OS_get_dynamic_memory_usage:
  322. - :ref:`int<class_int>` **get_dynamic_memory_usage** **(** **)** const
  323. Returns the total amount of dynamic memory used (only works in debug).
  324. .. _class_OS_get_environment:
  325. - :ref:`String<class_string>` **get_environment** **(** :ref:`String<class_string>` environment **)** const
  326. Returns an environment variable.
  327. .. _class_OS_get_executable_path:
  328. - :ref:`String<class_string>` **get_executable_path** **(** **)** const
  329. Returns the path to the current engine executable.
  330. .. _class_OS_get_exit_code:
  331. - :ref:`int<class_int>` **get_exit_code** **(** **)** const
  332. .. _class_OS_get_latin_keyboard_variant:
  333. - :ref:`String<class_string>` **get_latin_keyboard_variant** **(** **)** const
  334. Returns the current latin keyboard variant as a String.
  335. Possible return values are: "QWERTY", "AZERTY", "QZERTY", "DVORAK", "NEO", "COLEMAK" or "ERROR".
  336. .. _class_OS_get_locale:
  337. - :ref:`String<class_string>` **get_locale** **(** **)** const
  338. Returns the host OS locale.
  339. .. _class_OS_get_model_name:
  340. - :ref:`String<class_string>` **get_model_name** **(** **)** const
  341. Returns the model name of the current device.
  342. .. _class_OS_get_name:
  343. - :ref:`String<class_string>` **get_name** **(** **)** const
  344. Returns the name of the host OS. Possible values are: "Android", "Haiku", "iOS", "HTML5", "OSX", "Server", "Windows", "UWP", "X11".
  345. .. _class_OS_get_power_percent_left:
  346. - :ref:`int<class_int>` **get_power_percent_left** **(** **)**
  347. Returns the amount of battery left in the device as a percentage.
  348. .. _class_OS_get_power_seconds_left:
  349. - :ref:`int<class_int>` **get_power_seconds_left** **(** **)**
  350. Returns the time in seconds before the device runs out of battery.
  351. .. _class_OS_get_power_state:
  352. - :ref:`int<class_int>` **get_power_state** **(** **)**
  353. Returns the current state of the device regarding battery and power. See ``POWERSTATE\_\*`` constants.
  354. .. _class_OS_get_process_id:
  355. - :ref:`int<class_int>` **get_process_id** **(** **)** const
  356. Returns the game process ID
  357. .. _class_OS_get_processor_count:
  358. - :ref:`int<class_int>` **get_processor_count** **(** **)** const
  359. Returns the number of cores available in the host machine.
  360. .. _class_OS_get_scancode_string:
  361. - :ref:`String<class_string>` **get_scancode_string** **(** :ref:`int<class_int>` code **)** const
  362. Returns the given scancode as a string (e.g. Return values: "Escape", "Shift+Escape").
  363. .. _class_OS_get_screen_count:
  364. - :ref:`int<class_int>` **get_screen_count** **(** **)** const
  365. Returns the number of displays attached to the host machine.
  366. .. _class_OS_get_screen_dpi:
  367. - :ref:`int<class_int>` **get_screen_dpi** **(** :ref:`int<class_int>` screen=-1 **)** const
  368. Returns the dots per inch density of the specified screen.
  369. On Android Devices, the actual screen densities are grouped into six generalized densities:
  370. ldpi - 120 dpi
  371. mdpi - 160 dpi
  372. hdpi - 240 dpi
  373. xhdpi - 320 dpi
  374. xxhdpi - 480 dpi
  375. xxxhdpi - 640 dpi
  376. .. _class_OS_get_screen_orientation:
  377. - :ref:`int<class_int>` **get_screen_orientation** **(** **)** const
  378. Returns the current screen orientation, the return value will be one of the SCREEN_ORIENTATION constants in this class.
  379. .. _class_OS_get_screen_position:
  380. - :ref:`Vector2<class_vector2>` **get_screen_position** **(** :ref:`int<class_int>` screen=-1 **)** const
  381. Returns the position of the specified screen by index. If no screen index is provided, the current screen will be used.
  382. .. _class_OS_get_screen_size:
  383. - :ref:`Vector2<class_vector2>` **get_screen_size** **(** :ref:`int<class_int>` screen=-1 **)** const
  384. Returns the dimensions in pixels of the specified screen.
  385. .. _class_OS_get_splash_tick_msec:
  386. - :ref:`int<class_int>` **get_splash_tick_msec** **(** **)** const
  387. .. _class_OS_get_static_memory_peak_usage:
  388. - :ref:`int<class_int>` **get_static_memory_peak_usage** **(** **)** const
  389. Returns the max amount of static memory used (only works in debug).
  390. .. _class_OS_get_static_memory_usage:
  391. - :ref:`int<class_int>` **get_static_memory_usage** **(** **)** const
  392. Returns the amount of static memory being used by the program in bytes.
  393. .. _class_OS_get_system_dir:
  394. - :ref:`String<class_string>` **get_system_dir** **(** :ref:`int<class_int>` dir **)** const
  395. Returns the actual path to commonly used folders across different platforms. Available locations are specified in OS.SystemDir.
  396. .. _class_OS_get_system_time_secs:
  397. - :ref:`int<class_int>` **get_system_time_secs** **(** **)** const
  398. Returns the epoch time of the operating system in seconds.
  399. .. _class_OS_get_ticks_msec:
  400. - :ref:`int<class_int>` **get_ticks_msec** **(** **)** const
  401. Returns the amount of time passed in milliseconds since the engine started.
  402. .. _class_OS_get_time:
  403. - :ref:`Dictionary<class_dictionary>` **get_time** **(** :ref:`bool<class_bool>` utc=false **)** const
  404. Returns current time as a dictionary of keys: hour, minute, second.
  405. .. _class_OS_get_time_zone_info:
  406. - :ref:`Dictionary<class_dictionary>` **get_time_zone_info** **(** **)** const
  407. Returns the current time zone as a dictionary with the keys: bias and name.
  408. .. _class_OS_get_unique_id:
  409. - :ref:`String<class_string>` **get_unique_id** **(** **)** const
  410. Returns a string that is unique to the device. Currently only works on Android and iOS. Returns empty string on other platforms.
  411. .. _class_OS_get_unix_time:
  412. - :ref:`int<class_int>` **get_unix_time** **(** **)** const
  413. Return the current unix timestamp.
  414. .. _class_OS_get_unix_time_from_datetime:
  415. - :ref:`int<class_int>` **get_unix_time_from_datetime** **(** :ref:`Dictionary<class_dictionary>` datetime **)** const
  416. Get an epoch time value from a dictionary of time values.
  417. ``datetime`` must be populated with the following keys: year, month, day, hour, minute, second.
  418. You can pass the output from :ref:`get_datetime_from_unix_time<class_OS_get_datetime_from_unix_time>` directly into this function. Daylight savings time (dst), if present, is ignored.
  419. .. _class_OS_get_user_data_dir:
  420. - :ref:`String<class_string>` **get_user_data_dir** **(** **)** const
  421. Returns the absolute directory path where user data is written (``user://``).
  422. .. _class_OS_get_virtual_keyboard_height:
  423. - :ref:`int<class_int>` **get_virtual_keyboard_height** **(** **)**
  424. .. _class_OS_get_window_position:
  425. - :ref:`Vector2<class_vector2>` **get_window_position** **(** **)** const
  426. Returns the window position relative to the screen, the origin is the top left corner, +Y axis goes to the bottom and +X axis goes to the right.
  427. .. _class_OS_get_window_size:
  428. - :ref:`Vector2<class_vector2>` **get_window_size** **(** **)** const
  429. Returns the size of the window (without counting window manager decorations).
  430. .. _class_OS_has_environment:
  431. - :ref:`bool<class_bool>` **has_environment** **(** :ref:`String<class_string>` environment **)** const
  432. Returns ``true`` if an environment variable exists.
  433. .. _class_OS_has_feature:
  434. - :ref:`bool<class_bool>` **has_feature** **(** :ref:`String<class_string>` tag_name **)** const
  435. .. _class_OS_has_touchscreen_ui_hint:
  436. - :ref:`bool<class_bool>` **has_touchscreen_ui_hint** **(** **)** const
  437. Returns ``true`` if the device has a touchscreen or emulates one.
  438. .. _class_OS_has_virtual_keyboard:
  439. - :ref:`bool<class_bool>` **has_virtual_keyboard** **(** **)** const
  440. Returns ``true`` if the platform has a virtual keyboard, ``false`` otherwise.
  441. .. _class_OS_hide_virtual_keyboard:
  442. - void **hide_virtual_keyboard** **(** **)**
  443. Hides the virtual keyboard if it is shown, does nothing otherwise.
  444. .. _class_OS_is_debug_build:
  445. - :ref:`bool<class_bool>` **is_debug_build** **(** **)** const
  446. Returns ``true`` if the build is a debug build.
  447. Returns ``true`` when running in the editor.
  448. Returns ``false`` if the build is a release build.
  449. .. _class_OS_is_in_low_processor_usage_mode:
  450. - :ref:`bool<class_bool>` **is_in_low_processor_usage_mode** **(** **)** const
  451. Returns ``true`` if low cpu usage mode is enabled.
  452. .. _class_OS_is_keep_screen_on:
  453. - :ref:`bool<class_bool>` **is_keep_screen_on** **(** **)** const
  454. Returns ``true`` if the screen is being kept on.
  455. .. _class_OS_is_ok_left_and_cancel_right:
  456. - :ref:`bool<class_bool>` **is_ok_left_and_cancel_right** **(** **)** const
  457. Returns ``true`` if the "Okay" button should appear on the left and "Cancel" on the right.
  458. .. _class_OS_is_scancode_unicode:
  459. - :ref:`bool<class_bool>` **is_scancode_unicode** **(** :ref:`int<class_int>` code **)** const
  460. Returns ``true`` if the input code has a unicode character.
  461. .. _class_OS_is_stdout_verbose:
  462. - :ref:`bool<class_bool>` **is_stdout_verbose** **(** **)** const
  463. Returns ``true`` if the engine was executed with -v (verbose stdout).
  464. .. _class_OS_is_userfs_persistent:
  465. - :ref:`bool<class_bool>` **is_userfs_persistent** **(** **)** const
  466. If ``true``, the ``user://`` file system is persistent, so that its state is the same after a player quits and starts the game again. Relevant to the HTML5 platform, where this persistence may be unavailable.
  467. .. _class_OS_is_vsync_enabled:
  468. - :ref:`bool<class_bool>` **is_vsync_enabled** **(** **)** const
  469. Returns ``true`` if synchronizing the framerate to the monitor's refresh rate is enabled.
  470. .. _class_OS_is_window_fullscreen:
  471. - :ref:`bool<class_bool>` **is_window_fullscreen** **(** **)** const
  472. Returns ``true`` if the window is in fullscreen mode.
  473. .. _class_OS_is_window_maximized:
  474. - :ref:`bool<class_bool>` **is_window_maximized** **(** **)** const
  475. Returns ``true`` if the window is maximized.
  476. .. _class_OS_is_window_minimized:
  477. - :ref:`bool<class_bool>` **is_window_minimized** **(** **)** const
  478. Returns ``true`` if the window is minimized.
  479. .. _class_OS_is_window_resizable:
  480. - :ref:`bool<class_bool>` **is_window_resizable** **(** **)** const
  481. Returns ``true`` if the window is resizable.
  482. .. _class_OS_kill:
  483. - :ref:`int<class_int>` **kill** **(** :ref:`int<class_int>` pid **)**
  484. Kill a process ID (this method can be used to kill processes that were not spawned by the game).
  485. .. _class_OS_native_video_is_playing:
  486. - :ref:`bool<class_bool>` **native_video_is_playing** **(** **)**
  487. Returns ``true`` if native video is playing.
  488. .. _class_OS_native_video_pause:
  489. - void **native_video_pause** **(** **)**
  490. Pauses native video playback.
  491. .. _class_OS_native_video_play:
  492. - :ref:`int<class_int>` **native_video_play** **(** :ref:`String<class_string>` path, :ref:`float<class_float>` volume, :ref:`String<class_string>` audio_track, :ref:`String<class_string>` subtitle_track **)**
  493. Plays native video from the specified path, at the given volume and with audio and subtitle tracks.
  494. .. _class_OS_native_video_stop:
  495. - void **native_video_stop** **(** **)**
  496. Stops native video playback.
  497. .. _class_OS_native_video_unpause:
  498. - void **native_video_unpause** **(** **)**
  499. Resumes native video playback.
  500. .. _class_OS_print_all_resources:
  501. - void **print_all_resources** **(** :ref:`String<class_string>` tofile="" **)**
  502. Shows all resources in the game. Optionally the list can be written to a file.
  503. .. _class_OS_print_all_textures_by_size:
  504. - void **print_all_textures_by_size** **(** **)**
  505. Shows the list of loaded textures sorted by size in memory.
  506. .. _class_OS_print_resources_by_type:
  507. - void **print_resources_by_type** **(** :ref:`PoolStringArray<class_poolstringarray>` types **)**
  508. Shows the number of resources loaded by the game of the given types.
  509. .. _class_OS_print_resources_in_use:
  510. - void **print_resources_in_use** **(** :ref:`bool<class_bool>` short=false **)**
  511. Shows all resources currently used by the game.
  512. .. _class_OS_request_attention:
  513. - void **request_attention** **(** **)**
  514. Request the user attention to the window. It'll flash the taskbar button on Windows or bounce the dock icon on OSX.
  515. .. _class_OS_set_borderless_window:
  516. - void **set_borderless_window** **(** :ref:`bool<class_bool>` borderless **)**
  517. Removes the window frame.
  518. .. _class_OS_set_clipboard:
  519. - void **set_clipboard** **(** :ref:`String<class_string>` clipboard **)**
  520. Sets clipboard to the OS.
  521. .. _class_OS_set_current_screen:
  522. - void **set_current_screen** **(** :ref:`int<class_int>` screen **)**
  523. Sets the current screen by index.
  524. .. _class_OS_set_exit_code:
  525. - void **set_exit_code** **(** :ref:`int<class_int>` code **)**
  526. Sets the exit code that will be returned by the game.
  527. .. _class_OS_set_icon:
  528. - void **set_icon** **(** :ref:`Image<class_image>` icon **)**
  529. Sets the game's icon.
  530. .. _class_OS_set_ime_position:
  531. - void **set_ime_position** **(** :ref:`Vector2<class_vector2>` position **)**
  532. .. _class_OS_set_keep_screen_on:
  533. - void **set_keep_screen_on** **(** :ref:`bool<class_bool>` enabled **)**
  534. Sets keep screen on if true, or goes to sleep by device setting if false. (for Android/iOS)
  535. .. _class_OS_set_low_processor_usage_mode:
  536. - void **set_low_processor_usage_mode** **(** :ref:`bool<class_bool>` enable **)**
  537. Set to ``true`` to enable the low cpu usage mode. In this mode, the screen only redraws when there are changes, and a considerable sleep time is inserted between frames. Use this in tool mode to reduce CPU usage.
  538. .. _class_OS_set_screen_orientation:
  539. - void **set_screen_orientation** **(** :ref:`int<class_int>` orientation **)**
  540. Sets the current screen orientation, the argument value must be one of the SCREEN_ORIENTATION constants in this class.
  541. .. _class_OS_set_thread_name:
  542. - :ref:`int<class_int>` **set_thread_name** **(** :ref:`String<class_string>` name **)**
  543. Sets the name of the current thread.
  544. .. _class_OS_set_use_file_access_save_and_swap:
  545. - void **set_use_file_access_save_and_swap** **(** :ref:`bool<class_bool>` enabled **)**
  546. Enables backup saves if ``enabled`` is ``true``.
  547. .. _class_OS_set_use_vsync:
  548. - void **set_use_vsync** **(** :ref:`bool<class_bool>` enable **)**
  549. If ``true`` the framerate will synchronize to the monitor's refresh rate.
  550. .. _class_OS_set_window_fullscreen:
  551. - void **set_window_fullscreen** **(** :ref:`bool<class_bool>` enabled **)**
  552. Sets window fullscreen mode to the *enabled* argument, *enabled* is a toggle for the fullscreen mode, calling the function with *enabled* true when the screen is not on fullscreen mode will cause the screen to go to fullscreen mode, calling the function with *enabled* false when the screen is in fullscreen mode will cause the window to exit the fullscreen mode.
  553. .. _class_OS_set_window_maximized:
  554. - void **set_window_maximized** **(** :ref:`bool<class_bool>` enabled **)**
  555. Set ``true`` to maximize the window.
  556. .. _class_OS_set_window_minimized:
  557. - void **set_window_minimized** **(** :ref:`bool<class_bool>` enabled **)**
  558. Set ``true`` to minimize the window.
  559. .. _class_OS_set_window_position:
  560. - void **set_window_position** **(** :ref:`Vector2<class_vector2>` position **)**
  561. Sets the position of the window to the specified position (this function could be restricted by the window manager, meaning that there could be some unreachable areas of the screen).
  562. .. _class_OS_set_window_resizable:
  563. - void **set_window_resizable** **(** :ref:`bool<class_bool>` enabled **)**
  564. Sets the window resizable state, if the window is not resizable it will preserve the dimensions specified in the project settings.
  565. .. _class_OS_set_window_size:
  566. - void **set_window_size** **(** :ref:`Vector2<class_vector2>` size **)**
  567. Sets the window size to the specified size.
  568. .. _class_OS_set_window_title:
  569. - void **set_window_title** **(** :ref:`String<class_string>` title **)**
  570. Sets the window title to the specified string.
  571. .. _class_OS_shell_open:
  572. - :ref:`int<class_int>` **shell_open** **(** :ref:`String<class_string>` uri **)**
  573. Requests the OS to open a resource with the most appropriate program. For example.
  574. ``OS.shell_open("C:\\Users\name\Downloads")`` on Windows opens the file explorer at the downloads folders of the user.
  575. ``OS.shell_open("http://godotengine.org")`` opens the default web browser on the official Godot website.
  576. .. _class_OS_show_virtual_keyboard:
  577. - void **show_virtual_keyboard** **(** :ref:`String<class_string>` existing_text="" **)**
  578. Shows the virtual keyboard if the platform has one. The *existing_text* parameter is useful for implementing your own LineEdit, as it tells the virtual keyboard what text has already been typed (the virtual keyboard uses it for auto-correct and predictions).