exporting_for_web.rst 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. .. _doc_exporting_for_web:
  2. Exporting for the Web
  3. =====================
  4. .. seealso::
  5. This page describes how to export a Godot project to HTML5.
  6. If you're looking to compile editor or export template binaries from source instead,
  7. read :ref:`doc_compiling_for_web`.
  8. HTML5 export allows publishing games made in Godot Engine to the browser.
  9. This requires support for `WebAssembly
  10. <https://webassembly.org/>`__, `WebGL <https://www.khronos.org/webgl/>`__ and
  11. `SharedArrayBuffer <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer>`_
  12. in the user's browser.
  13. .. attention::
  14. Projects written in C# using Godot 4 currently cannot be exported to the
  15. web. To use C# on web platforms, use Godot 3 instead.
  16. .. tip::
  17. Use the browser-integrated developer console, usually opened
  18. with :kbd:`F12` (:kbd:`Cmd + Option + I` on macOS), to view
  19. **debug information** like JavaScript, engine, and WebGL errors.
  20. .. attention::
  21. Godot 4's HTML5 exports currently cannot run on macOS and iOS due to upstream bugs
  22. with SharedArrayBuffer and WebGL 2.0. We recommend using
  23. :ref:`macOS <doc_exporting_for_macos>` and :ref:`iOS <doc_exporting_for_ios>`
  24. native export functionality instead, as it will also result in better performance.
  25. Godot 3's HTML5 exports are more compatible with various browsers in
  26. general, especially when using the GLES2 rendering backend (which only
  27. requires WebGL 1.0).
  28. Export file name
  29. ----------------
  30. We do suggest users to export their Web projects with ``index.html`` as the file name.
  31. ``index.html`` is usually the default file loaded by web servers when accessing the
  32. parent directory, usually hiding the name of that file.
  33. .. attention::
  34. The Godot 4 Web export expects some files to be named the same name as the one set in the
  35. initial export. Some issues could occur if some exported files are renamed, including the
  36. main HTML file.
  37. WebGL version
  38. -------------
  39. Godot 4.0 and later can only target WebGL 2.0 (using the Compatibility rendering
  40. method). There is no stable way to run Vulkan applications on the web yet.
  41. See `Can I use WebGL 2.0 <https://caniuse.com/webgl2>`__ for a list of browser
  42. versions supporting WebGL 2.0. Note that Safari has several issues with WebGL
  43. 2.0 support that other browsers don't have, so we recommend using a
  44. Chromium-based browser or Firefox if possible.
  45. .. _doc_javascript_export_options:
  46. Export options
  47. --------------
  48. If a runnable web export template is available, a button appears between the
  49. *Stop scene* and *Play edited Scene* buttons in the editor to quickly open the
  50. game in the default browser for testing.
  51. If your project uses GDExtension **Extension Support** needs to be enabled.
  52. If you plan to use :ref:`VRAM compression <doc_importing_images>` make sure that
  53. **Vram Texture Compression** is enabled for the targeted platforms (enabling
  54. both **For Desktop** and **For Mobile** will result in a bigger, but more
  55. compatible export).
  56. If a path to a **Custom HTML shell** file is given, it will be used instead of
  57. the default HTML page. See :ref:`doc_customizing_html5_shell`.
  58. **Head Include** is appended into the ``<head>`` element of the generated
  59. HTML page. This allows to, for example, load webfonts and third-party
  60. JavaScript APIs, include CSS, or run JavaScript code.
  61. .. important:: Each project must generate their own HTML file. On export,
  62. several text placeholders are replaced in the generated HTML
  63. file specifically for the given export options. Any direct
  64. modifications to that HTML file will be lost in future exports.
  65. To customize the generated file, use the **Custom HTML shell**
  66. option.
  67. Limitations
  68. -----------
  69. For security and privacy reasons, many features that work effortlessly on
  70. native platforms are more complicated on the web platform. Following is a list
  71. of limitations you should be aware of when porting a Godot game to the web.
  72. .. _doc_javascript_secure_contexts:
  73. .. important:: Browser vendors are making more and more functionalities only
  74. available in `secure contexts <https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts>`_,
  75. this means that such features are only be available if the web
  76. page is served via a secure HTTPS connection (localhost is
  77. usually exempt from such requirement).
  78. Using cookies for data persistence
  79. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  80. Users must **allow cookies** (specifically IndexedDB) if persistence of the
  81. ``user://`` file system is desired. When playing a game presented in an
  82. ``iframe``, **third-party** cookies must also be enabled. Incognito/private
  83. browsing mode also prevents persistence.
  84. The method ``OS.is_userfs_persistent()`` can be used to check if the
  85. ``user://`` file system is persistent, but can give false positives in some
  86. cases.
  87. Background processing
  88. ~~~~~~~~~~~~~~~~~~~~~
  89. The project will be paused by the browser when the tab is no longer the active
  90. tab in the user's browser. This means functions such as ``_process()`` and
  91. ``_physics_process()`` will no longer run until the tab is made active again by
  92. the user (by switching back to the tab). This can cause networked games to
  93. disconnect if the user switches tabs for a long duration.
  94. This limitation does not apply to unfocused browser *windows*. Therefore, on the
  95. user's side, this can be worked around by running the project in a separate
  96. *window* instead of a separate tab.
  97. Full screen and mouse capture
  98. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  99. Browsers do not allow arbitrarily **entering full screen**. The same goes for
  100. **capturing the cursor**. Instead, these actions have to occur as a response to
  101. a JavaScript input event. In Godot, this means entering full screen from within
  102. a pressed input event callback such as ``_input`` or ``_unhandled_input``.
  103. Querying the :ref:`class_Input` singleton is not sufficient, the relevant
  104. input event must currently be active.
  105. For the same reason, the full screen project setting doesn't work unless the
  106. engine is started from within a valid input event handler. This requires
  107. :ref:`customization of the HTML page <doc_customizing_html5_shell>`.
  108. Audio
  109. ~~~~~
  110. Some browsers restrict autoplay for audio on websites. The easiest way around this limitation is to request the
  111. player to click, tap or press a key/button to enable audio, for instance when displaying a splash screen at the start of your game.
  112. .. seealso:: Google offers additional information about their `Web Audio autoplay
  113. policies <https://sites.google.com/a/chromium.org/dev/audio-video/autoplay>`__.
  114. Apple's Safari team also posted additional information about their `Auto-Play Policy Changes for macOS
  115. <https://webkit.org/blog/7734/auto-play-policy-changes-for-macos/>`__.
  116. .. warning:: Access to microphone requires a
  117. :ref:`secure context <doc_javascript_secure_contexts>`.
  118. Networking
  119. ~~~~~~~~~~
  120. Low level networking is not implemented due to lacking support in browsers.
  121. Currently, only :ref:`HTTP client <doc_http_client_class>`,
  122. :ref:`HTTP requests <doc_http_request_class>`,
  123. :ref:`WebSocket (client) <doc_websocket>` and :ref:`WebRTC <doc_webrtc>` are
  124. supported.
  125. The HTTP classes also have several restrictions on the HTML5 platform:
  126. - Accessing or changing the ``StreamPeer`` is not possible
  127. - Threaded/Blocking mode is not available
  128. - Cannot progress more than once per frame, so polling in a loop will freeze
  129. - No chunked responses
  130. - Host verification cannot be disabled
  131. - Subject to `same-origin policy <https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy>`__
  132. Clipboard
  133. ~~~~~~~~~
  134. Clipboard synchronization between engine and the operating system requires a
  135. browser supporting the `Clipboard API <https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API>`__,
  136. additionally, due to the API asynchronous nature might not be reliable when
  137. accessed from GDScript.
  138. .. warning:: Requires a :ref:`secure context <doc_javascript_secure_contexts>`.
  139. Gamepads
  140. ~~~~~~~~
  141. Gamepads will not be detected until one of their button is pressed. Gamepads
  142. might have the wrong mapping depending on the browser/OS/gamepad combination,
  143. sadly the `Gamepad API <https://developer.mozilla.org/en-US/docs/Web/API/Gamepad_API/Using_the_Gamepad_API>`__
  144. does not provide a reliable way to detect the gamepad information necessary
  145. to remap them based on model/vendor/OS due to privacy considerations.
  146. .. warning:: Requires a :ref:`secure context <doc_javascript_secure_contexts>`.
  147. Boot splash is not displayed
  148. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  149. The default HTML page does not display the boot splash while loading. However,
  150. the image is exported as a PNG file, so :ref:`custom HTML pages <doc_customizing_html5_shell>`
  151. can display it.
  152. .. _doc_exporting_for_web_serving_the_files:
  153. Serving the files
  154. -----------------
  155. Exporting for the web generates several files to be served from a web server,
  156. including a default HTML page for presentation. A custom HTML file can be
  157. used, see :ref:`doc_customizing_html5_shell`.
  158. .. warning::
  159. To ensure low audio latency and the ability to use :ref:`class_Thread` in web exports,
  160. Godot 4 web exports always use
  161. `SharedArrayBuffer <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer>`__.
  162. This requires a :ref:`secure context <doc_javascript_secure_contexts>`,
  163. while also requiring the following CORS headers to be set when serving the files:
  164. ::
  165. Cross-Origin-Opener-Policy: same-origin
  166. Cross-Origin-Embedder-Policy: require-corp
  167. If you don't control the web server or are unable to add response headers,
  168. use `coi-serviceworker <https://github.com/gzuidhof/coi-serviceworker>`__
  169. as a workaround.
  170. If the client doesn't receive the required response headers,
  171. **the project will not run**.
  172. The generated ``.html`` file can be used as ``DirectoryIndex`` in Apache
  173. servers and can be renamed to e.g. ``index.html`` at any time. Its name is
  174. never depended on by default.
  175. The HTML page draws the game at maximum size within the browser window.
  176. This way, it can be inserted into an ``<iframe>`` with the game's size, as is
  177. common on most web game hosting sites.
  178. The other exported files are served as they are, next to the ``.html`` file,
  179. names unchanged. The ``.wasm`` file is a binary WebAssembly module implementing
  180. the engine. The ``.pck`` file is the Godot main pack containing your game. The
  181. ``.js`` file contains start-up code and is used by the ``.html`` file to access
  182. the engine. The ``.png`` file contains the boot splash image. It is not used in
  183. the default HTML page, but is included for
  184. :ref:`custom HTML pages <doc_customizing_html5_shell>`.
  185. The ``.pck`` file is binary, usually delivered with the MIME-type
  186. :mimetype:`application/octet-stream`. The ``.wasm`` file is delivered as
  187. :mimetype:`application/wasm`.
  188. .. warning::
  189. Delivering the WebAssembly module (``.wasm``) with a MIME-type
  190. other than :mimetype:`application/wasm` can prevent some start-up
  191. optimizations.
  192. Delivering the files with server-side compression is recommended especially for
  193. the ``.pck`` and ``.wasm`` files, which are usually large in size. The
  194. WebAssembly module compresses particularly well, down to around a quarter of its
  195. original size with gzip compression. Consider using Brotli precompression if
  196. supported on your web server for further file size savings.
  197. **Hosts that provide on-the-fly compression:** GitHub Pages (gzip)
  198. **Hosts that don't provide on-the-fly compression:** itch.io, GitLab Pages
  199. (`supports manual gzip precompression <https://webd97.de/post/gitlab-pages-compression/>`__)
  200. .. tip::
  201. The Godot repository includes a
  202. `Python script to host a local web server <https://raw.githubusercontent.com/godotengine/godot/master/platform/web/serve.py>`__.
  203. This script is intended for testing the web editor, but it can also be used to test exported projects.
  204. Save the linked script to a file called ``serve.py``, move this file to the
  205. folder containing the exported project's ``index.html``, then run the
  206. following command in a command prompt within the same folder:
  207. ::
  208. # You may need to replace `python` with `python3` on some platforms.
  209. python serve.py --root .
  210. On Windows, you can open a command prompt in the current folder by holding
  211. :kbd:`Shift` and right-clicking on empty space in Windows Explorer, then
  212. choosing **Open PowerShell window here**.
  213. This will serve the contents of the current folder and open the default web
  214. browser automatically.
  215. Note that for production use cases, this Python-based web server should not
  216. be used. Instead, you should use an established web server such as Apache or
  217. nginx.
  218. Interacting with the browser and JavaScript
  219. -------------------------------------------
  220. See the :ref:`dedicated page <doc_web_javascript_bridge>` on how to interact with JavaScript and access some unique Web browser features.
  221. Environment variables
  222. ---------------------
  223. You can use the following environment variables to set export options outside of
  224. the editor. During the export process, these override the values that you set in
  225. the export menu.
  226. .. list-table:: HTML5 export environment variables
  227. :header-rows: 1
  228. * - Export option
  229. - Environment variable
  230. * - Encryption / Encryption Key
  231. - ``GODOT_SCRIPT_ENCRYPTION_KEY``