Ebitengine - A dead simple 2D game engine for Go
Go to file
2021-07-29 16:10:13 +09:00
.builds Update fedora image on sourcehut 2021-01-20 01:01:59 +09:00
.github Fix test.yml to always use the latest Ebiten on mobiles 2021-04-15 00:19:30 +09:00
audio audio/internal/readerdriver: Bug fix: createBuffer failed when the buffer size is 0 2021-05-07 02:37:30 +09:00
cmd/ebitenmobile cmd/ebitenmobile: Clean the temporary directory up after the execution 2021-06-10 02:13:46 +09:00
docs docs: Remove unused contents 2019-03-22 03:23:48 +09:00
ebitenutil Revert "Revert 2 commits using ColorM cache" 2021-05-30 15:24:14 +09:00
examples examples/windowsize: Bug fix: Suppress calling SetWindowPosition if the position is not updated 2021-04-20 20:48:46 +09:00
inpututil inpututil: Add PressedKeys 2021-04-07 01:50:39 +09:00
internal internal/atlas: Bug fix: Unexpected padding in screenshots 2021-07-29 16:10:13 +09:00
mobile ebiten: Change the key name convention to follow the Web standard 2021-04-14 22:49:07 +09:00
nintendoswitch Add package nintendoswitch 2021-03-21 21:01:26 +09:00
text Revert "Revert 2 commits using ColorM cache" 2021-05-30 15:24:14 +09:00
vector Cache SubImage for the empty images 2021-01-25 01:31:18 +09:00
.gitattributes Add .gitattributes for GitHub Linguist 2020-01-30 21:06:50 +09:00
.gitignore Add new example: squirals (#952) 2019-10-09 00:54:23 +09:00
AUTHORS Add Huw Griffiths to AUTHORS 2021-03-24 22:28:15 +09:00
CODE_OF_CONDUCT.md Add CODE_OF_CONDUCT.md 2020-01-08 11:30:57 +09:00
colorm_test.go Update version to v2.0.0-alpha 2020-10-04 04:30:40 +09:00
colorm.go ebiten: Remove the deprecated functions and constants 2020-10-04 04:47:24 +09:00
CONTRIBUTING.md Fix typos, and use panic instead of log.Fatal in doc.go (#1446) 2020-12-21 21:14:17 +09:00
cursor.go ebiten: Add CursorShape/SetCursorShape/CursorShapeType 2021-04-16 01:09:19 +09:00
debug_ebitendebug.go Add 'ebitendebug' build tag 2018-06-25 23:59:32 +09:00
debug_notebitendebug.go Add 'ebitendebug' build tag 2018-06-25 23:59:32 +09:00
doc.go Fix typos, and use panic instead of log.Fatal in doc.go (#1446) 2020-12-21 21:14:17 +09:00
export_test.go ebiten: Bug fix: Wrong uniform type was used 2020-09-17 20:52:32 +09:00
gamepad.go Revert "driver: Increase gamepad buttons to 64" 2020-12-29 02:49:58 +09:00
generate.go Bug fix: some generators did not work due to a lacked package 2020-03-23 01:36:21 +09:00
genevents.go Update version to v2.0.0-alpha 2020-10-04 04:30:40 +09:00
genkeys.go ebiten: Change the key name convention to follow the Web standard 2021-04-14 22:49:07 +09:00
geom_test.go Update version to v2.0.0-alpha 2020-10-04 04:30:40 +09:00
geom.go ebiten: Remove the deprecated functions and constants 2020-10-04 04:47:24 +09:00
go.mod Update dependencies 2021-04-17 20:30:10 +09:00
go.sum Update dependencies 2021-04-17 20:30:10 +09:00
goversion.go ebiten: Update comments 2020-11-21 01:20:22 +09:00
graphics.go ebiten: Remove FilterDefault 2020-10-05 01:48:47 +09:00
image_test.go ebiten: Bug fix: Fill on a sub-image didn't work correctly 2021-07-02 22:42:49 +09:00
image.go ebiten: Bug fix: Fill on a sub-image didn't work correctly 2021-07-02 22:42:49 +09:00
imagedumper_desktop.go internal/atlas: Bug fix: Unexpected padding in screenshots 2021-07-29 16:10:13 +09:00
imagedumper_notdesktop.go ebiten: Remove the argument from Update 2020-10-04 19:33:10 +09:00
imagetobytes_test.go Update version to v2.0.0-alpha 2020-10-04 04:30:40 +09:00
imagetobytes.go ebiten: Remove copying pixels from ReplacePixels and copyImage (renamed to imageToBytes) 2020-07-03 03:01:48 +09:00
init.go glfw: Use os.UserConfigDir for GLFW DLL instead of temporary directories 2020-11-01 17:51:44 +09:00
input.go ebiten: Change the key name convention to follow the Web standard 2021-04-14 22:49:07 +09:00
keys.go ebiten: Change the key name convention to follow the Web standard 2021-04-14 22:49:07 +09:00
LICENSE Adjust LICENSE file 2017-01-30 18:57:49 +09:00
mousebuttons.go Update version to v2.0.0-alpha 2020-10-04 04:30:40 +09:00
README.md Remove the badge for Travis CI 2021-04-24 03:54:47 +09:00
run.go Fix misspellings 2021-04-21 22:50:00 +09:00
shader_test.go internal/shader: Bug fix: Error on duplicated const/var names 2021-04-09 00:12:17 +09:00
shader.go ebiten: Add a new shader function imageDstRegionOnTexture 2020-12-09 11:36:29 +09:00
uicontext.go Revert "ebiten: Do not skip Draw when vsync is disabled" 2021-04-19 11:34:59 +09:00
uidriver_glfw.go Update version to v2.0.0-alpha 2020-10-04 04:30:40 +09:00
uidriver_js.go Clean up the 'js' build tags 2020-10-07 01:33:10 +09:00
uidriver_mobile.go Update version to v2.0.0-alpha 2020-10-04 04:30:40 +09:00
window.go Fix misspellings 2021-04-21 22:50:00 +09:00

Ebiten (v2)

PkgGoDev Build Status Go Report Card

A dead simple 2D game library for Go

Ebiten is an open source game library for the Go programming language. Ebiten's simple API allows you to quickly and easily develop 2D games that can be deployed across multiple platforms.

Overview

Platforms

Note: Gamepads and keyboards are not available on iOS.

For installation on desktops, see the installation instruction.

Features

  • 2D Graphics (Geometry/Color matrix transformation, Various composition modes, Offscreen rendering, Text rendering, Automatic batches, Automatic texture atlas, Custom shaders)
  • Input (Mouse, Keyboard, Gamepads, Touches)
  • Audio (Ogg/Vorbis, MP3, WAV, PCM)

Packages

Community

License

Ebiten is licensed under Apache license version 2.0. See LICENSE file.