Files
D8H 8e50ddefe4 Allow to configure object resources to be loaded independently from the scene (#8514)
- This is an advanced, experimental feature which is subject to changes. It's in most cases not useful, unless you have a large game or low end devices for which controlling memory usage is important. It's mostly useful to delay loading of large custom objects.
- Objects can be configured so that its resources are not loaded when the scene is loaded. Instead, you can use an action to manually load the resources used by it. When the loading is done (this can be checked using a condition), the object can then be created.
  Be careful: if an object assets are not loaded, it will be broken when displayed on screen.
2026-05-04 10:45:51 +02:00
..

GDevelop JavaScript Platform (HTML5 game engine)

GDevelop JavaScript Platform (GDJS) is the game engine for making HTML5/Javascript based games with GDevelop.

📚 Game developer, searching for the documentation? Go to the GDJS Runtime (game engine) documentation.

1) Installation 💻

To do changes in the game engine or create extensions, install the development version (click here to learn more).

2) Development 🤓

GDJS is composed of two parts:

  • the JavaScript game engine (Runtime folder), called GDJS Runtime.
  • the C++ part exposing GDJS to GDevelop IDE (GDJS folder), including the Exporter and classes doing transpilation from events to JavaScript, called GDJS Platform.

GDJS Runtime (game engine)

The game engine is in the Runtime folder. If you want to work on the engine directly, follow the GDevelop 5 README about the development of the game engine.

  • To use the game engine, you can look into the GDJS Runtime (game engine) documentation.

  • To run tests for the game engine, go to GDJS/tests, run npm install and npm test. More information in the README for the tests.

  • To launch type checking with TypeScript, run npm install and npm run check-types in GDJS folder.

Building GDJS Runtime

To build the GDJS Runtime, run npm run build in the GDJS folder.

Build Options:

  • Production build (default): npm run build - builds with minification enabled
  • Debug build: npm run build -- --debug - builds without minification for easier debugging
  • Custom output path: npm run build -- --out=/path/to/output - specify custom output directory

Examples:

# Standard production build
npm run build

# Debug build for development (no minification)
npm run build -- --debug

# Debug build with custom output path
npm run build -- --debug --out=./debug-build

GDJS Platform (exporters, code generation...)

Check the GDJS Platform documentation or the full GDevelop developers documentation.

3) How to contribute 😎

Any contribution is welcome! Whether you want to submit a bug report, a feature request or any pull request to add a feature, do not hesitate to get in touch.

License

GDJS is distributed under the MIT license: see LICENSE.md for more information.