add dat.gui lib
This commit is contained in:
parent
9555e5013b
commit
f3aad63918
2 changed files with 5 additions and 0 deletions
|
@ -11,5 +11,8 @@ $ ./run.sh
|
||||||
- Télécharger [ThreeJS](https://github.com/mrdoob/three.js) et placer le
|
- 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
|
fichier [`.js`](https://unpkg.com/three@0.146.0/build/three.min.js) dans
|
||||||
[`js/lib`](./js/lib/).
|
[`js/lib`](./js/lib/).
|
||||||
|
- 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/).
|
||||||
|
|
||||||
- Placer une image `player.png` dans le dossier [`assets/images`](./assets/images/).
|
- Placer une image `player.png` dans le dossier [`assets/images`](./assets/images/).
|
||||||
|
|
|
@ -17,6 +17,8 @@
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<script src="./js/lib/three.min.js"></script>
|
<script src="./js/lib/three.min.js"></script>
|
||||||
|
<script src="./js/lib/dat.gui.min.js"></script>
|
||||||
|
|
||||||
<script type="module" src="./js/main.js"></script>
|
<script type="module" src="./js/main.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Reference in a new issue