{{comment .License}}
v{{.StableVersion}}
:; brew install glew
:; brew install glfw3 # or homebrew/versions/glfw3
:; go get github.com/hajimehoshi/ebiten
If you want to run your game on a web browser, execute this:
:; go get github.com/gopherjs/gopherjs
:; go get github.com/gopherjs/webgl
:; cd $GOPATH/src/github.com/hajimehoshi/ebiten/example
:; go run rotate/main.go
Just execute your Go program. That's it!
Compile your game with GopherJS:
:; gopherjs build -o yourgame.js path/to/yourgame
Then, open the below HTML on your HTTP server:
<!DOCTYPE html>
<script src="yourgame.js"></script>
NOTE: file://
URL may not work with Ebiten. Execute your game on a HTTP server.
{{.License}}
The original photograph of Go gophers by Chris Nokleberg is licensed under the Creative Commons 3.0 Attributions license.