-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 983 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Virtual Museum</title>
<style>
body { margin: 0; padding: 0}
canvas { display: block; }
</style>
</head>
<body>
<script src="scripts/three.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/first_person_camera.js"></script>
<script src="scripts/hud.js"></script>
<script src="scripts/sign_maker.js"></script>
<script src="scripts/exhibit.js"></script>
<script src="scripts/exhibits/toon.js"></script>
<script src="scripts/exhibits/julia_spheres.js"></script>
<script src="scripts/exhibits/raymarchers.js"></script>
<script src="scripts/exhibits/mirror_sphere.js"></script>
<script src="scripts/museum_layout.js"></script>
<script src="scripts/museum.js"></script>
</body>
</html>