local threejs
This commit is contained in:
parent
14038857c8
commit
d7fb11f850
2 changed files with 7 additions and 3 deletions
|
@ -1,9 +1,13 @@
|
|||
# Geometry Dash en 3D
|
||||
|
||||
Pour lancer rapidement le jeu avec un serveur python
|
||||
Pour lancer rapidement le jeu avec un serveur python :
|
||||
|
||||
```bash
|
||||
$ ./run.sh
|
||||
```
|
||||
|
||||
## 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/).
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
</head>
|
||||
|
||||
<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>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Reference in a new issue