README.md (2799B)
1 # Ebiten (v2) 2 3 [![PkgGoDev](https://pkg.go.dev/badge/github.com/hajimehoshi/ebiten/v2)](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2) 4 [![Build Status](https://github.com/hajimehoshi/ebiten/workflows/test/badge.svg)](https://github.com/hajimehoshi/ebiten/actions?query=workflow%3Atest) 5 [![Build Status](https://travis-ci.org/hajimehoshi/ebiten.svg?branch=master)](https://travis-ci.org/hajimehoshi/ebiten) 6 [![Go Report Card](https://goreportcard.com/badge/github.com/hajimehoshi/ebiten)](https://goreportcard.com/report/github.com/hajimehoshi/ebiten) 7 8 **A dead simple 2D game library for Go** 9 10 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. 11 12 * [Website (ebiten.org)](https://ebiten.org) 13 * [API Reference](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2) 14 * [Cheat Sheet](https://ebiten.org/documents/cheatsheet.html) 15 16 ![Overview](https://ebiten.org/images/overview2.0.png) 17 18 ## Platforms 19 20 * [Windows](https://ebiten.org/documents/install.html?os=windows) (No Cgo!) 21 * [macOS](https://ebiten.org/documents/install.html?os=darwin) 22 * [Linux](https://ebiten.org/documents/install.html?os=linux) 23 * [FreeBSD](https://ebiten.org/documents/install.html?os=freebsd) 24 * [Android](https://ebiten.org/documents/mobile.html) 25 * [iOS](https://ebiten.org/documents/mobile.html) 26 * [WebAssembly](https://ebiten.org/documents/webassembly.html) 27 28 Note: Gamepad and keyboard are not available on Android/iOS. 29 30 For installation on desktops, see [the installation instruction](https://ebiten.org/documents/install.html). 31 32 ## Features 33 34 * 2D Graphics (Geometry/Color matrix transformation, Various composition modes, Offscreen rendering, Fullscreen, Text rendering, Automatic batches, Automatic texture atlas) 35 * Input (Mouse, Keyboard, Gamepads, Touches) 36 * Audio (Ogg/Vorbis, MP3, WAV, PCM) 37 38 ## Packages 39 40 * [ebiten](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2) 41 * [audio](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2/audio) 42 * [mp3](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2/audio/mp3) 43 * [vorbis](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2/audio/vorbis) 44 * [wav](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2/audio/wav) 45 * [ebitenutil](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2/ebitenutil) 46 * [inpututil](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2/inpututil) 47 * [mobile](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2/mobile) 48 * [text](https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2/text) 49 50 ## Community 51 52 ### Slack 53 54 `#ebiten` channel in [Gophers Slack](https://blog.gopheracademy.com/gophers-slack-community/) 55 56 ## License 57 58 Ebiten is licensed under Apache license version 2.0. See LICENSE file.