-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 1 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
<!doctype html>
<html lang="en">
<head>
<title>Garden</title>
<meta charset="utf-8">
<style>
html, body {
overflow: hidden;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#renderCanvas {
width: 100%;
height: 100%;
touch-action: none;
}
</style>
<!-- Libraries -->
<script src="lib/babylon.js"></script>
<script src="lib/hand.js"></script>
</head>
<body>
<canvas id="renderCanvas"></canvas>
<!-- Core -->
<script src="js/init.js"></script>
<script src="js/entity.js"></script>
<script src="js/scene.js"></script>
<script src="js/spritemanagers.js"></script>
<script src="js/animation.js"></script>
<!-- Game -->
<script src="js/game/world.js"></script>
<script src="js/game/player.js"></script>
<script src="js/game/controls.js"></script>
<!-- Runner -->
<script src="js/main.js"></script>
</body>
</html>