-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·60 lines (49 loc) · 3.01 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
<html>
<head>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.8.2.js"></script>
<script type="text/javascript" src="js/jquery.jWebAudio.js"></script>
<script type="text/javascript" src="js/stats.min.js"></script>
<script type="text/javascript" src="js/three.js"></script>
<script type="text/javascript" src="js/MTLLoader.js"></script>
<script type="text/javascript" src="js/OBJMTLLoader.js"></script>
<script type="text/javascript" src="js/ColladaLoader.js"></script>
<script type="text/javascript" src="js/game.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body>
<div id="loading">
Loading...
</div>
<div id="gamePanel">
<div id="content">
<div id="container"></div>
<div id="wood" class="sound space"></div>
<div id="metal" class="sound space"></div>
<div id="stone" class="sound space"></div>
<div id="break" class="sound space"></div>
<div id="wall" class="sound space"></div>
<div id="board" class="sound space"></div>
<div id="sweep" class="sound space"></div>
<div id="background" class="sound"></div>
<div id="gameWin" class="sound space"></div>
<div id="gameLose" class="sound space"></div>
</div>
<div id="control">
<div id="effect" class="button">Disable 3D Effect</div>
<div id="mute" class="button">Mute</div>
<!--div id="pause" class="button">Pause</div>
<div id="credits" class="button">Credits</div-->
<!--div id="x" class="button">x</div>
<div id="y" class="button">y</div>
<div id="z" class="button">z</div-->
</div>
</div>
<div id="gameOver" class="centerInfo"></div>
<div id="creditsPanel" class="centerInfo">
3D Arcalands is a demo of jWebAudio.<br><br>
Sound effects downloaded from: <a href="http://www.freesfx.co.uk/soundeffects/">http://www.freesfx.co.uk/soundeffects/</a>, <a href="http://www.pacdv.com/sounds/domestic_sounds.html">http://www.pacdv.com/sounds/domestic_sounds.html</a> and <a href="http://www.mediacollege.com/downloads/sound-effects/">http://www.mediacollege.com/downloads/sound-effects/</a>.<br><br>
Textures downloaded from: <a href="http://www.photoshoproadmap.com/Photoshop-blog/textures/">http://www.photoshoproadmap.com/Photoshop-blog/textures/</a> and <a href="http://www.lovetextures.com/index.php/stone/old-stone-wall/">http://www.lovetextures.com/index.php/stone/old-stone-wall/</a>.
</div>
</body>
</html>