-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1004 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fireworks Demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<style>
body {
font-family: Monospace;
background-color: #101010;
color: #fff;
margin: 0px;
overflow: hidden;
}
a {
color: #f00;
}
</style>
</head>
<body>
<script src="js/threejs/three.min.js" type="text/javascript"></script>
<script src="js/controls/VRControls.js" type="text/javascript"></script>
<script src="js/controls/PointerLockControl.js" type="text/javascript"></script>
<script src="js/effects/VREffect.js" type="text/javascript"></script>
<script src="js/vr/WebVR.js" type="text/javascript"></script>
<!-- Main Code for Fireworks Demo -->
<script src="js/ProcTerrain.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<script src="js/Firework.js" type="text/javascript"></script>
</body>
</html>