-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (67 loc) · 2.86 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sketch</title>
<link rel="stylesheet" type="text/css" href="style.css">
<!--<script src="libraries/p5.min.js"></script>-->
<!--<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>-->
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.8.0/addons/p5.sound.min.js"></script>-->
<!--<script src="https://unpkg.com/ml5@latest/dist/ml5.min.js"></script>-->
<!--<script src="https://unpkg.com/[email protected]/dist/ml5.min.js"></script>-->
<script src="libraries/p5.js"></script>
<script src="libraries/ml5.min.js"></script>
<script src="libraries/p5.sound.min.js"></script>
<!--<script src="libraries/p5.min.js"></script>-->
<script src="gameobject.js"></script>
<script src="movement.js"></script>
<script src="collider.js"></script>
<script src="gestures.js"></script>
<script src="world.js"></script>
<script src="gui.js"></script>
<script src="guiobject.js"></script>
<script src="gameobjects/spawner.js"></script>
<script src="musicplayer.js"></script>
<script src="testgameobject.js"></script>
<script src="guiobjects/gamegui.js"></script>
<script src="guiobjects/guiloadingscreen.js"></script>
<script src="guiobjects/guicalibrationmenu.js"></script>
<script src="guiobjects/guipauseoverlay.js"></script>
<script src="guiobjects/guiboundarywarning.js"></script>
<script src="guiobjects/guitutorial.js"></script>
<script src="gameobjects/videofeed.js"></script>
<script src="gameobjects/projectile.js"></script>
<script src="gameobjects/playerprojectile.js"></script>
<script src="gameobjects/laser.js"></script>
<script src="gameobjects/player.js"></script>
<script src="gameobjects/shield.js"></script>
<script src="gameobjects/enemy.js"></script>
<script src="gameobjects/homingenemy.js"></script>
<script src="gameobjects/shootingenemy.js"></script>
<script src="gameobjects/laserenemy.js"></script>
<script src="gameobjects/annoyingenemy.js"></script>
<script src="gameobjects/enemyprojectile.js"></script>
<script src="gameobjects/bg.js"></script>
<script src="sketch.js"></script>
</head>
<body>
<div>
<main>
</main>
<br>
<br>
<br>
<p>github.com/sharpjd</p>
<p>NOTES:</p>
<ul>
<!--<p>- The game uses your webcam, but will not display it unless you check a checkbox</p>-->
<li>Credits can be found within the tutorial</li>
<li>Keep the webcam pointed horizontally and in moderate lighting</li>
<li>Try putting the browser in fullscreen and zooming to 175%</li>
<li>The game can be performance heavy, try different browsers like Chrome</li>
</li>
</ul>
</div>
</body>
</html>