Ebitengine - A dead simple 2D game engine for Go
Go to file
2014-12-31 18:00:53 +09:00
_docs Update doc 2014-12-30 00:53:41 +09:00
ebitenutil Refactoring 2014-12-29 13:39:35 +09:00
example Bug fix: blocks/main.go 2014-12-29 18:52:56 +09:00
internal Rename Framebuffer.framebuffer -> Framebuffer.native 2014-12-31 18:00:53 +09:00
testdata Add test for NewImageFromImage 2014-12-23 01:51:16 +09:00
.gitignore Add ui.Run 2014-12-07 01:09:59 +09:00
.travis.yml Update .travis.yml to pass tests 2014-12-28 22:25:19 +09:00
affine.go Make the elements of matrices optional 2014-12-26 11:22:36 +09:00
colorm_test.go Rename files 2014-12-27 17:15:16 +09:00
colorm.go Remove returning values of Add/Concat 2014-12-29 19:04:18 +09:00
doc.go Add favicon.png 2014-12-28 16:54:13 +09:00
gamecontext.go Change license comments style to use magic comments (magic comments like +build should be placed before a general comment) 2014-12-24 11:04:10 +09:00
geom_test.go Rename files 2014-12-27 17:15:16 +09:00
geom.go Remove returning values of Add/Concat 2014-12-29 19:04:18 +09:00
graphics.go Add opengl.Context.NewBuffer 2014-12-31 17:45:23 +09:00
graphicscontext.go Add opengl.Context.NewShader 2014-12-31 16:12:13 +09:00
image_test.go Fix image_test.go to check if something is rendered 2014-12-25 18:42:55 +09:00
image.go Add opengl.Context.NewShader 2014-12-31 16:12:13 +09:00
input.go Change license comments style to use magic comments (magic comments like +build should be placed before a general comment) 2014-12-24 11:04:10 +09:00
keys.go Change license comments style to use magic comments (magic comments like +build should be placed before a general comment) 2014-12-24 11:04:10 +09:00
license.txt Separate license and version from docs 2014-12-29 23:24:22 +09:00
readme.md Separate license and version from docs 2014-12-29 23:24:22 +09:00
run.go Fix doc 2014-12-28 17:11:24 +09:00
ui.go Add opengl.Framebuffer.SetAsViewport 2014-12-31 15:22:15 +09:00
version.txt Update version (1.1.0-alpha) 2014-12-29 23:54:22 +09:00

Ebiten (海老天)

Build Status

  • A simple SNES-like 2D game library in Go
  • Works on
    • Mac OS X
    • Linux (maybe)
    • Windows (possibly)
  • API Docs

Features

  • 2D Graphics
  • Input (Mouse, Keyboard)

Example

  • example/blocks - Puzzle game you know
  • example/hue - Changes the hue of an image
  • example/mosaic - Mosaics an image
  • example/perspective - See an image in a perspective view
  • example/rotate - Rotates an image
  • etc.

Install on Mac OS X

:; brew install glew
:; brew install glfw3 # or homebrew/versions/glfw3
:; go get -u github.com/hajimehoshi/ebiten

Execute the example

:; cd $GOHOME/src/github.com/hajimehoshi/ebiten/example
:; go run rotate/main.go

Benchmark the example

:; cd $GOHOME/src/github.com/hajimehoshi/ebiten/example
:; go build -o=example blocks/main.go
:; ./example -cpuprofile=cpu.out
:; go tool pprof ./example cpu.out

Versioning

License

See license.txt.