mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 10:35:35 -04:00
24 lines
790 B
Markdown
24 lines
790 B
Markdown
# GDJS Documentation
|
|
|
|
📚 Read the documentation online: **[GDJS Runtime (game engine) documentation](http://4ian.github.io/GD-Documentation/GDJS%20Runtime%20Documentation/index.html)** or [GDJS Platform documentation for the IDE](http://4ian.github.io/GD-Documentation/GDJS%20Documentation/index.html).
|
|
|
|
## How to generate the documentation
|
|
|
|
- To generate the GDJS Runtime (game engine) documentation:
|
|
|
|
```bash
|
|
cd <GDevelop repository>/GDJS
|
|
npm run generate-doc
|
|
```
|
|
|
|
Output will be in `<GDevelop repository>/docs/GDJS Documentation`.
|
|
|
|
- To generate the GDJS Platform documentation for the IDE, install [Doxygen](www.doxygen.org). Then:
|
|
|
|
```bash
|
|
cd <GDevelop repository>/GDJS/docs
|
|
doxygen
|
|
```
|
|
|
|
Output will be in `<GDevelop repository>/docs/GDJS Runtime Documentation`.
|