-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathflickuboy_howto.html
123 lines (122 loc) · 2.81 KB
/
flickuboy_howto.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<html>
<head>
<style type="text/css">
#maincanvas {
cursor:crosshair;
}
body {
-webkit-user-select: none; /* webkit (safari, chrome) browsers */
-moz-user-select: none; /* mozilla browsers */
-khtml-user-select: none; /* webkit (konqueror) browsers */
-ms-user-select: none; /* IE10+ */
}
select {
background-color:black;
color:white;
}
canvas {
position:relative;
}
body {
background-color:black;
color: white;
margin-top: 0;
padding-top: 0;
border-top: 0;
}
input {
background-color: black;
color:white;
font-size: 200%;
margin-bottom: 5px;
}
input#linkInput {
background-color: black;
color:white;
font-size: 150%;
text-align: center;
margin-bottom: 5px;
padding-bottom:3px;
}
a {
color:white;
}
a.layerItem{
color: white;
background-color: black;
text-decoration: none;
width:100%;
display:block;
}
a.layerItem.selectedItem{
color: black;
background-color: white;
}
img.selected {
border: 2px solid red;
}
a{
white-space:nowrap;
}
div.selected {
height:16px;
width:30px;
border: 2px solid red;
}
div.unselected {
height:16px;
width:30px;
border: 2px solid black;
}
img.radius {
border: 1px solid black;
}
img.selected {
border: 1px solid red;
}
select {
width:100%;
-webkit-appearance: none;
-moz-appearance: none;
}
select::-ms-expand {
display: none;
}
canvas#dropdownthumb {
border:2px solid gray;
background-color:black;
}
</style>
</head>
<body>
<h1>What is Flickuboy</h1>
<p>
Flickugame's a dialect of <a href="http://www.flickgame.org">flickgame</a> that can be used to make + share games for both online and the <a href="https://www.arduboy.com">arduboy</a>.
<p>
<h2>How to make a game</h2>
<p>
<img src="flickuboy_helpimage.png" width=800px>
<p>
Keyboard shortcut: you can press + or - to change the brush size.
<p>
<h2>How to get my game on an arduboy</h2>
<p>
<ol>
<li>Set up the Arduino environment as described here: <a href="http://community.arduboy.com/t/arduboy-quick-start-guide/725">http://community.arduboy.com/t/arduboy-quick-start-guide/725</a></li>
<li>Click on the ⊫arduboy link in the editor, save it to a .ino file, open it in the Arduino IDE, and build+run :D
</li>
</ol>
<p>
<h2>source code</h2>
<p>
<a href="https://github.com/increpare/flickgame">github</a>
<p>
Flickugame uses code from the unofficial <a href="https://github.com/MLXXXp/Arduboy2">arduboy2</a> library. So thanks to those people!
<p>
<h2>credits</h2>
<p>
<p>
made by <a href="http://www.increpare.com">increpare</a> [ support my work on <!-- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=RF7ZTG7FEU7YN&lc=GB&item_name=flickgame&item_number=flickgame%20donation¤cy_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted">DONATE</a> / --> <a href="https://www.patreon.com/increpare">patreon</a> ]
<p>
</body>
</html>