-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Rotten Souls</title>
<link rel="icon" type="image/x-icon" href="favicon.ico?v=1">
<style>
html, body {
overflow: hidden;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#renderCanvas {
width: 100%;
height: 100%;
touch-action: none;
}
</style>
<script src="basic/babylon.js"></script>
<!--script src="..basic/babylonjs.loaders.min.js"></script-->
<script src="basic/cdn.babylonjs.com_gui_babylon.gui.min.js"></script>
<script src="basic/cdn.babylonjs.com_loaders_babylon.objFileLoader.js"></script>
<!--script src="..basic/cdn.babylonjs.com_loaders_babylon.stlFileLoader.js"></script-->
</head>
<body>
<canvas id="renderCanvas"></canvas>
<script src="animations/playerIdle.js"></script>
<script src="animations/mainBoneAnimations.js"></script>
<script src="animations/walkFwd.js"></script>
<script src="animations/walkBack.js"></script>
<script src="animations/walkRight.js"></script>
<script src="animations/walkLeft.js"></script>
<script src="animations/rotateRight.js"></script>
<script src="animations/rotateLeft.js"></script>
<script src="animations/lightAttack.js"></script>
<script src="animations/heavyAttack.js"></script>
<script src="animations/dodgeFwd.js"></script>
<script src="animations/dodgeBack.js"></script>
<script src="animations/dodgeRight.js"></script>
<script src="animations/dodgeLeft.js"></script>
<script src="animations/playerDeath.js"></script>
<script src="animations/bossIdle.js"></script>
<script src="animations/bossWalkFwd.js"></script>
<script src="animations/bossWalkBack.js"></script>
<script src="animations/bossLightAttack.js"></script>
<script src="animations/bossHeavyAttack.js"></script>
<script src="animations/bossDeath.js"></script>
<script src="animations/playerHealing.js"></script>
<script src="animations/chestAnimation.js"></script>
<script src="animations/GUIAnimations.js"></script>
<script src="assets/gameHitboxes.js"></script>
<script src="game.js"></script>
</body>
</html>