-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (30 loc) · 1.24 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
<html>
<head>
<title>Pyramid of Possibilities</title>
<style>canvas { width: 100%; height: 100% }</style>
</head>
<body>
<h1>Pyramid of Possibilities</h1>
<h3>Web simulator (version 0.0.3)</h3>
<p>
Controls:
<ul>
<li>W, A, S, D to move around</li>
<li>Q and E to go up and down</li>
<li>Left click to rotate the camera (working only horizontally for now)</li>
<li>SPACE to toggle the animation</li>
</ul>
</p>
<div id="pop"></div>
<script src="resources/js/libs/THREE.js"></script>
<script src="resources/js/libs/THREEx.KeyboardState.js"></script>
<script src="resources/js/libs/Stats.js"></script>
<script src="resources/js/camera.js"></script>
<script src="resources/js/input/keyboard.js"></script>
<script src="resources/js/input/mouse.js"></script>
<script src="resources/js/anim/rainbow.js"></script>
<script src="resources/js/anim/default.js"></script>
<script src="resources/js/platform.js"></script>
<script src="resources/js/pyramid.js"></script>
</body>
</html>