This repository has been archived on 2022-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
GeometryDash3D/README.md

28 lines
868 B
Markdown
Raw Normal View History

2022-11-07 09:11:51 +01:00
# Geometry Dash en 3D
2022-11-22 10:40:36 +01:00
Pour lancer rapidement le jeu avec un serveur python :
2022-11-07 09:11:51 +01:00
```bash
$ ./run.sh
```
2022-11-08 09:35:45 +01:00
2022-11-24 20:01:08 +01:00
## But
Le but est de rester le plus longtemps en vie et donc d'esquiver tout les obstacles.
Chaque seconde passé dans le jeu rapporte 1 point.
2022-11-08 09:35:45 +01:00
## Dépendances
2022-11-22 10:40:36 +01:00
- Télécharger [ThreeJS](https://github.com/mrdoob/three.js) et placer le
fichier [`.js`](https://unpkg.com/three@0.146.0/build/three.min.js) dans
[`js/lib`](./js/lib/).
2022-11-24 18:57:04 +01:00
- Télécharger [dat.gui](https://github.com/dataarts/dat.gui) et placer le
fichier [`.js`](https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.9/dat.gui.min.js) dans
[`js/lib`](./js/lib/).
2022-11-24 18:20:27 +01:00
- Placer une image `player.png` dans le dossier [`assets/images`](./assets/images/).
2022-11-27 18:10:21 +01:00
## Sources
- [Collision example](https://github.com/stemkoski/stemkoski.github.com/blob/master/Three.js/Collision-Detection.html)