summaryrefslogtreecommitdiffstats
path: root/platform/web/SCsub
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand Godot 4.3 to RedotTrashguy2024-10-131-4/+4
|
* [Web] Remove unnecessary EMCC_FORCE_STDLIBS in dlink buildsFabio Alessandrelli2024-07-021-2/+0
| | | | | | As discussed with upstream, the C/C++ standard library is always fully included when building with MAIN_MODULE=1, so using EMCC_FORCE_STDLIBS is not necessary in our case.
* [Web] Remove space between emscripten "-s" flags and the optionFabio Alessandrelli2024-06-141-2/+2
|
* Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-211-1/+2
|
* SCons: Colorize warnings/errors during generationThaddeus Crews2024-04-281-1/+3
|
* Add THREADS_ENABLED macro in order to compile Godot to run on the main threadAdam Scott2024-01-171-2/+2
|
* [Web] Use fvisibility=hidden for side module when dlink_enabled.Fabio Alessandrelli2023-07-171-0/+3
| | | | | | | | | | This hugely reduces the number of exports, making it acceptable for browsers. Note that dlink + threads is still not working due to upstream issues with the pthread emulation library. Should hopefully be solved once emscripten move to native WASM threads.
* Get WebXR fully working in Godot 4!David Snopek2022-12-011-2/+7
|
* Add multiview to the opengl3 driverDavid Snopek2022-10-211-0/+1
|
* [Web] Add the "serve" and "run" scons targets.Fabio Alessandrelli2022-10-121-0/+14
| | | | | | | | | | | | | You can now run the test HTTP server by calling: scons p=web serve If you also wish to run the browser, call instead: scons p=web run The default listen port is 8060, but can be overriden via the env variable GODOT_WEB_TEST_PORT which must be a valid integer.
* [Web] Add feature detection helpers to JS Engine class.Fabio Alessandrelli2022-09-171-0/+1
|
* Rename JavaScript singleton to JavaScriptBridgeGeequlim2022-09-021-1/+1
|
* [Web] Require threads, rtti, allow optimize=speed.Fabio Alessandrelli2022-08-301-16/+10
| | | | | | | Update export names (web[_dlink]_[release|debug].zip). The Build with dynamic linking is broken due to high number of imports in output wasm (likely emscripten regression issue 15487).
* [Web] Rename JavaScript platform to Web.Fabio Alessandrelli2022-08-291-0/+93
Also rename export name from "HTML5" to "Web".