use threeJS

This commit is contained in:
Mylloon 2022-11-08 09:35:45 +01:00
parent 2cb574430c
commit 5b136ab38d
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,9 @@
# Geometry Dash en 3D
Pour lancer rapidement le jeu avec un serveur python, lance
Pour lancer rapidement le jeu avec un serveur python
```bash
$ ./run.sh
```
## Dépendances
- [ThreeJS](https://github.com/mrdoob/three.js)

View file

@ -19,6 +19,7 @@
<body>
<canvas id="canvas" width="1280" height="720"></canvas>
<script src="https://unpkg.com/three@0.146.0/build/three.min.js"></script>
<script type="module" src="./js/main.js"></script>
</body>
</html>