2014-12-27 16:26:33 +01:00
|
|
|
<!DOCTYPE html>
|
2014-12-27 22:18:23 +01:00
|
|
|
{{comment .License}}
|
2014-12-28 08:59:04 +01:00
|
|
|
<link rel="shortcut icon" href="./favicon.png" type="image/png" >
|
|
|
|
<link rel="icon" href="./favicon.png" type="image/png" >
|
2014-12-28 07:37:51 +01:00
|
|
|
<style>
|
2014-12-28 08:54:13 +01:00
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
2014-12-28 07:37:51 +01:00
|
|
|
table.examples td {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
table.examples td.code {
|
|
|
|
border-color: #999;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
table.examples td.code pre {
|
|
|
|
height: 240px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
2014-12-27 22:18:23 +01:00
|
|
|
<h1>Ebiten (海老天) v1.0.0-alpha</h1>
|
|
|
|
<ul>
|
2014-12-28 09:09:50 +01:00
|
|
|
<li>A simple SNES-like 2D game library in Go</li>
|
2014-12-27 22:18:23 +01:00
|
|
|
<li>Works on
|
|
|
|
<ul>
|
|
|
|
<li>Mac OS X</li>
|
|
|
|
<li>Linux (maybe)</li>
|
|
|
|
<li>Windows (possibly)</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li><a href="http://godoc.org/github.com/hajimehoshi/ebiten">API Docs</a></li>
|
|
|
|
<li><a href="http://github.com/hajimehoshi/ebiten">Source Code</a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h2>Features</h2>
|
|
|
|
<ul>
|
|
|
|
<li>2D Graphics</li>
|
|
|
|
<li>Input (Mouse, Keyboard)</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h2>Example</h2>
|
2014-12-28 07:37:51 +01:00
|
|
|
<table class="examples">
|
2014-12-27 22:18:23 +01:00
|
|
|
{{range .Examples}}
|
|
|
|
<tr>
|
2014-12-28 07:37:51 +01:00
|
|
|
<td class="code"><pre><code>// <b>{{.Name}}</b>
|
|
|
|
|
|
|
|
{{.Source}}</code></pre></td>
|
2014-12-27 22:18:23 +01:00
|
|
|
<td><img src="{{.Name}}.gif" width="320" height="240"></td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h2>Install on Mac OS X</h2>
|
|
|
|
<pre><code>:; brew install glew
|
|
|
|
:; brew install glfw3 # or homebrew/versions/glfw3
|
|
|
|
:; go get -u github.com/hajimehoshi/ebiten</code></pre>
|
|
|
|
|
|
|
|
<h2>Execute the example</h2>
|
|
|
|
<pre><code>:; cd $GOHOME/src/github.com/hajimehoshi/ebiten/example
|
|
|
|
:; go run rotate/main.go</code></pre>
|
|
|
|
|
|
|
|
<h2>License</h2>
|
|
|
|
<pre><code>{{.License}}</code></pre>
|