-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·61 lines (60 loc) · 1.39 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<html>
<head>
<title>James Storey</title>
<style>
canvas
{
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
}
body
{
margin: 0;
padding: 0;
background-color: #0f0f0f;
}
#barBorder
{
position: absolute;
border-style: solid;
border-width: 5px;
width: 600px;
height: 100px;
padding: 5px;
}
#loadingBar
{
position: absolute;
width: 0%;
height: 100px;
background-color: #000;
}
#loadingTitle
{
position: absolute;
font-family: "VT323";
font-size: 3em;
top: -1.2em;
left: -0.15em;
}
</style>
<link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
</head>
<body>
<span id="barBorder" ><span id="loadingTitle">Loading...</span><span id="loadingBar" ></span></span>
<script src="../three.js/build/three.js"></script>
<script src="../cannon.js/build/cannon.js"></script>
<script src="SimplexNoise.js"></script>
<script src="Detector.js"></script>
<script src="UI.js"></script>
<script src="Nomads.js"></script>
<script src="Entity.js"></script>
<script src="Villager.js"></script>
<script src="Controls.js"></script>
<script src="TerrainGeo.js"></script>
<script src="Loader.js"></script>
<script src="Program.js"></script>
</body>
</html>