-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
38 lines (31 loc) · 957 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pain Run (WebGL game)</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
background-color: #000;
margin: 0px;
text-align:center;
}
</style>
</head>
<body>
<object id="svg" type="image/svg+xml" data="title.svg">
Sorry - you need SVG support!
</object>
<script type='text/javascript' src='tween.js'></script>
<script src="three.js"></script>
<script src="WebVR.js"></script>
<!--<script src="stats.min.js"></script>-->
<script src="StereoEffect.js"></script>
<script src="DeviceOrientationControls.js"></script>
<script src="section.js"></script>
<script src="controls.js"></script>
<script src="window.js"></script>
<script src="main.js"></script>
<script src="title.js"></script>
</body>
</html>