-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (41 loc) · 2.13 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>SkyRoads</title>
<script type="text/json" id="level1-data">
[1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1]
</script>
<script src="external/CubicVR.js" type="text/javascript"></script>
<script src="external/ammo.js" type="text/javascript"></script>
<script src="external/dsp.js" type="text/javascript"></script>
<script src="external/beatdetektor.js" type="text/javascript"></script>
<script type="text/json" src="assets/objects/material-metalic.json" data-cubicvr="material" id="material-metalic"></script>
<script type="text/json" src="assets/objects/material-stone.json" data-cubicvr="material" id="material-stone"></script>
<script type="text/json" src="assets/objects/uv-metalic.json" data-cubicvr="uvmapper" id="uv-metalic"></script>
<script type="text/json" src="assets/objects/uv-stone.json" data-cubicvr="uvmapper" id="uv-stone"></script>
<script type="text/json" src="assets/objects/light-simple-point.json" data-cubicvr="light" id="light-simple-point"></script>
<script type='text/javascript' src="game/skyroads.js"></script>
<style>
#game-audio {
position: absolute;
z-index: 99999999;
top: 1px;
left: 1px;
display: block;
}
#audio-viz-1 {
position: absolute;
z-index: 99999999;
top: 50px;
left: 1px;
display: block;
}
</style>
</head>
<body>
<audio id="game-audio" controls>
<source src="assets/music/the-field-yesterday-and-today.oga" type="audio/ogg" />
</audio>
<canvas id="audio-viz-1" width="200" height="200"></canvas>
</body>
</html>