-
Notifications
You must be signed in to change notification settings - Fork 1
/
datum-wills.html
57 lines (51 loc) · 2.04 KB
/
datum-wills.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Datum and Wills</title>
<link rel="stylesheet" type="text/css" href="datum-wills.css" />
</head>
<body>
<a class="top-left text-overlay" href="https://github.com/davidmason/datum-and-wills"
target="_blank">View Source on Github</a>
<a class="bottom-left text-overlay"
href="https://github.com/davidmason/datum-and-wills/wiki/Walkthrough"
target="_blank">Walkthrough</a>
<div class="text-overlay absolute-center width-1-4th hidden top-half"
id="instruction"></div>
<div class="text-overlay absolute-center width-1-4th hidden bottom-half error"
id="error"></div>
<ul class="accordion" style="top: 10px;">
<li class="accordion-item active">
<h2 class="accordion-title">Walking</h2>
<div class="accordion-content">
My primary walking control circuits are damaged. I will have to re-route
my walking control functions through my auxiliary circuits.
<div class="circuit damaged-circuit">
<span>robot.speed.forward = 1;</span>
</div>
<div class="circuit intact-circuit">
<textarea id="walk-circuit"></textarea>
</div>
<div class="script-error" id="walk-error" />
</div>
</li>
<li class="accordion-item hidden">
<h2 class="accordion-title">Jumping</h2>
<div class="accordion-content">
My jumping control circuit is damaged. I can re-route my jumping control
function through another auxiliary circuit.
<div class="circuit damaged-circuit">
<span>robot.speed.up = 2;</span>
</div>
<div class="circuit intact-circuit">
<textarea id="jump-circuit"></textarea>
</div>
<div class="script-error" id="jump-error" />
</div>
</li>
</ul>
<div id="container"></div>
<script type="text/javascript" src="build/game-min.js"></script>
</body>
</html>