-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (46 loc) · 1.53 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title>Batô | A three.js small game</title>
<meta charset="utf-8">
<style>
body {
margin: 0;
}
canvas {
width: 100%;
height: 100%;
}
</style>
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
<!-- Libs -->
<script src="lib/three.js/three.min.js"></script>
<!-- <script src="lib/three.js/Detector.js"></script> -->
<script src="lib/three.js/controls/OrbitControls.js"></script>
<script src="lib/stats.min.js"></script>
<script src="lib/threex.vertexanimation.js"></script>
<script src="lib/threex.keyboardstate.js"></script>
<script src="lib/threex.collider.js"></script>
<script src="lib/threex.colliderhelper.js"></script>
<script src="lib/threex.collidersystem.js"></script>
<!-- <script src="lib/threex.daynight.js"></script> -->
<!-- Customs scripts -->
<script src="js/var.js"></script>
<script src="js/helper/worldHelper.js"></script>
<script src="js/env/world.js"></script>
<script src="js/env/island.js"></script>
<script src="js/helper/windowResize.js"></script>
<script src="js/init.js"></script>
<script src="js/createMeshes.js"></script>
<script src="js/main.js"></script>
<script src="js/helper/animation.js"></script>
<script src="js/helper/boatPosition.js"></script>
<script src="js/boatControls.js"></script>
<script src="js/helper/render.js"></script>
<script src="js/helper/stats.js"></script>
<script>
render();
</script>
</body>
</html>