-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (68 loc) · 2.67 KB
/
index.html
File metadata and controls
71 lines (68 loc) · 2.67 KB
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
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Sant Brothers</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Press+Start+2P"
/>
<link rel="stylesheet" href="./styles.css" type="text/css" />
<script type="text/javascript" src="./assetmanager.js"></script>
<script type="text/javascript" src="./timer.js"></script>
<script type="text/javascript" src="./gameengine.js"></script>
<script type="text/javascript" src="./animator.js"></script>
<script type="text/javascript" src="./sant.js"></script>
<script type="text/javascript" src="./bricks.js"></script>
<script type="text/javascript" src="./items.js"></script>
<script type="text/javascript" src="./enemies.js"></script>
<script type="text/javascript" src="./boss.js"></script>
<script type="text/javascript" src="./background.js"></script>
<script type="text/javascript" src="./sceneManager.js"></script>
<script type="text/javascript" src="./util.js"></script>
<script type="text/javascript" src="./boundingbox.js"></script>
<script type="text/javascript" src="./projectiles.js"></script>
<script type="text/javascript" src="./main.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="columnleft">
<div class="title">Sant Brothers <br /></div>
<canvas
id="gameWorld"
width="768"
height="768"
style="background: black"
tabindex="0"
autofocus
>
</canvas>
</div>
<div class="columnright">
<h3 class="title">Instructions</h3>
<div>
<h4>1. Controller</h4>
<h5><strong>Key D / Right Arrow Key ->: </strong> Move Forward</h5>
<h5><strong>Key A / Left Arrow Key <-: </strong> Move Backward</h5>
<h5><strong>Key X: </strong>Jump</h5>
<h5><strong>Key C: </strong>Shoot</h5>
</div>
<div>
<h4>2. Objective</h4>
<p>The game has two levels which have different obstacles.</p>
<p>
The player can upgrade the power guns when touching Angel and Panda. Angel will give the player a random
weapon and Panda will give the player an extra life and weapon.
</p>
</div>
</div>
</div>
</div>
<div>
<br />
<input type="checkbox" id="debug"> Debug <input type="checkbox" id="mute"> Mute <input type="range" id="volume" min="0" max="1" value="0.1" step="0.05"> Volume
</div>
</body>
</html>