-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 923 Bytes
/
index.html
File metadata and controls
31 lines (26 loc) · 923 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>builder game</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/basic.css">
</head>
<body>
<div id="menu">
<!-- <button id = 'save'>SAVE</button>
--> <button id = 'load'>LOAD CHECKPOINT</button>
<button id = 'resetCam'>RESET CAMERA</button>
</div>
<div class = "stats">
Cubes used: <span id = 'numCubes'>0</span></br>
Maxmim Height: <span id = "maxHeight">0</span></br>
Effective Areas: <span id = "areas">0</span></br>
Connectivity: <span id = "connectivity">0</span></br>
</div>
<script src="js/three.min.js"></script>
<script src = "js/orbitControls.js"></script>
<script src="js/detector.js"></script>
<script type="text/javascript" src = 'js/main.js'></script>
</body>
</html>