- New features
- New APIs
- Graphics
func (i *Image) SubImage(r image.Rectangle) image.Image
: specifies a part of an image. This replacesDrawImageOptions
'sSourceRect
.func (img *Image) Set(x, y int, clr color.Color)
: sets a pixel at the specified position on an image. Now*ebiten.Image
implements the standard'sdraw.Image
interface.Address
: represents whether the texture is repeated atDrawTriangles
.
- Graphics
- Deprecated APIs
- Graphics
DrawImageOptions
'sSourceRect
: Use(*Image).SubImage
instead.
- Graphics
- Bug fix
- Monitor issues
- e.g. The window was sometimes not opened in the current monitor (Issue 829)
- Several mobile issues
- Go 1.12 issues
- e.g. OpenAL crashes (Oto Issue 65)
- Monitor issues