-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (30 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Asteroids</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Script Dependencies: -->
<script src="./js/three.min.js"></script>
<script src="./js/jquery-1.12.3.min.js"></script>
<script src="./js/stats.min.js"></script>
<script src="./js/StereoEffect.js"></script>
<script src="./js/DeviceOrientationControls.js"></script>
<!-- Lightweight key handler for smoother motion -->
<script src="./js/keydrown.min.js"></script>
<!-- Currently not using external 3D models
<script src="../js/MTLLoader.js"></script>
<script src="../js/OrbitControls.js"></script>
-->
<!-- Object controllers -->
<script src="./js/OBJLoader.js"></script>
<script src="./js/Spaceship.js"></script>
<script src="./js/Asteroid.js"></script>
</head>
<body>
<div id="help-text"></div>
<div id="game-stats"></div>
<script src="./js/main.js"></script>
</body>
</html>