-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (33 loc) · 1.05 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
<!-- This project uses codes from threejs examples (https://threejs.org/), WebVR (https://webvr.info/), and mrdoob / http://mrdoob.com. -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Krishna Bharathala -- VR Project</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"></script>
<script src="js/Controls/OrbitControls.js"></script>
<script src="js/Effects/VREffect.js"></script>
<script src="js/VR/WebVR.js"></script>
<script src="js/Controls/VRControls.js"></script>
<script src="js/noise.js"></script>
<script src="js/terrain.js"></script>
<script src="js/river.js"></script>
<script src="js/firework.js"></script>
<script src="js/main.js"></script>
</body>
</html>