local threejs

This commit is contained in:
Mylloon 2022-11-22 10:40:36 +01:00
parent 14038857c8
commit d7fb11f850
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 7 additions and 3 deletions

View file

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

View file

@ -16,7 +16,7 @@
</head> </head>
<body> <body>
<script src="https://unpkg.com/three@0.146.0/build/three.min.js"></script> <script src="./js/lib/three.min.js"></script>
<script type="module" src="./js/main.js"></script> <script type="module" src="./js/main.js"></script>
</body> </body>
</html> </html>