mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
docs: Use pkg.go.dev instead of godoc.org
This commit is contained in:
parent
b3bdf51905
commit
31482ebbbd
20
README.md
20
README.md
@ -1,7 +1,6 @@
|
|||||||
# Ebiten
|
# Ebiten
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/hajimehoshi/ebiten.svg?branch=master)](https://travis-ci.org/hajimehoshi/ebiten)
|
[![Build Status](https://travis-ci.org/hajimehoshi/ebiten.svg?branch=master)](https://travis-ci.org/hajimehoshi/ebiten)
|
||||||
[![GoDoc](https://godoc.org/github.com/hajimehoshi/ebiten?status.svg)](http://godoc.org/github.com/hajimehoshi/ebiten)
|
|
||||||
[![Go Report Card](https://goreportcard.com/badge/github.com/hajimehoshi/ebiten)](https://goreportcard.com/report/github.com/hajimehoshi/ebiten)
|
[![Go Report Card](https://goreportcard.com/badge/github.com/hajimehoshi/ebiten)](https://goreportcard.com/report/github.com/hajimehoshi/ebiten)
|
||||||
|
|
||||||
**A dead simple 2D game library in Go**
|
**A dead simple 2D game library in Go**
|
||||||
@ -9,6 +8,7 @@
|
|||||||
Ebiten is an open-source game library, with which you can develop 2D games with simple API for multi platforms in the Go programming language.
|
Ebiten is an open-source game library, with which you can develop 2D games with simple API for multi platforms in the Go programming language.
|
||||||
|
|
||||||
* [Website (ebiten.org)](https://ebiten.org/)
|
* [Website (ebiten.org)](https://ebiten.org/)
|
||||||
|
* [API Reference](https://pkg.go.dev/github.com/hajimehoshi/ebiten)
|
||||||
* [Cheat Sheet](https://ebiten.org/documents/cheatsheet.html)
|
* [Cheat Sheet](https://ebiten.org/documents/cheatsheet.html)
|
||||||
|
|
||||||
![Overview](https://ebiten.org/images/overview.png)
|
![Overview](https://ebiten.org/images/overview.png)
|
||||||
@ -37,15 +37,15 @@ For installation on desktops, see [the installation instruction](https://ebiten.
|
|||||||
|
|
||||||
## Packages
|
## Packages
|
||||||
|
|
||||||
* [ebiten](https://godoc.org/github.com/hajimehoshi/ebiten)
|
* [ebiten](https://pkg.go.dev/github.com/hajimehoshi/ebiten)
|
||||||
* [audio](https://godoc.org/github.com/hajimehoshi/ebiten/audio)
|
* [audio](https://pkg.go.dev/github.com/hajimehoshi/ebiten/audio)
|
||||||
* [mp3](https://godoc.org/github.com/hajimehoshi/ebiten/audio/mp3)
|
* [mp3](https://pkg.go.dev/github.com/hajimehoshi/ebiten/audio/mp3)
|
||||||
* [vorbis](https://godoc.org/github.com/hajimehoshi/ebiten/audio/vorbis)
|
* [vorbis](https://pkg.go.dev/github.com/hajimehoshi/ebiten/audio/vorbis)
|
||||||
* [wav](https://godoc.org/github.com/hajimehoshi/ebiten/audio/wav)
|
* [wav](https://pkg.go.dev/github.com/hajimehoshi/ebiten/audio/wav)
|
||||||
* [ebitenutil](https://godoc.org/github.com/hajimehoshi/ebiten/ebitenutil)
|
* [ebitenutil](https://pkg.go.dev/github.com/hajimehoshi/ebiten/ebitenutil)
|
||||||
* [inpututil](https://godoc.org/github.com/hajimehoshi/ebiten/inpututil)
|
* [inpututil](https://pkg.go.dev/github.com/hajimehoshi/ebiten/inpututil)
|
||||||
* [mobile](https://godoc.org/github.com/hajimehoshi/ebiten/mobile)
|
* [mobile](https://pkg.go.dev/github.com/hajimehoshi/ebiten/mobile)
|
||||||
* [text](https://godoc.org/github.com/hajimehoshi/ebiten/text)
|
* [text](https://pkg.go.dev/github.com/hajimehoshi/ebiten/text)
|
||||||
|
|
||||||
## Community
|
## Community
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ and access `http://127.0.0.1:8080/github.com/hajimehoshi/ebiten/examples`.
|
|||||||
|
|
||||||
## Android
|
## Android
|
||||||
|
|
||||||
Install [gomobile](https://godoc.org/golang.org/x/mobile/cmd/gomobile) first.
|
Install [gomobile](https://pkg.go.dev/golang.org/x/mobile/cmd/gomobile) first.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
gomobile install -tags=example github.com/hajimehoshi/ebiten/examples/rotate
|
gomobile install -tags=example github.com/hajimehoshi/ebiten/examples/rotate
|
||||||
|
Loading…
Reference in New Issue
Block a user