ebiten/examples/README.md

24 lines
492 B
Markdown
Raw Normal View History

2018-03-25 18:53:06 +02:00
# How to execute the examples
2016-08-25 18:21:01 +02:00
2018-03-25 18:56:42 +02:00
## Desktops
2016-08-25 18:21:01 +02:00
```sh
go run github.com/hajimehoshi/ebiten/v2/examples/rotate@latest
2018-03-25 18:53:06 +02:00
```
2018-03-25 18:56:42 +02:00
## Android
2018-03-25 18:53:06 +02:00
Install [gomobile](https://pkg.go.dev/golang.org/x/mobile/cmd/gomobile) first.
2018-03-25 18:53:06 +02:00
```sh
gomobile install github.com/hajimehoshi/ebiten/v2/examples/rotate@latest
2016-08-25 18:21:01 +02:00
```
2018-04-30 12:49:02 +02:00
## iOS
```sh
gomobile build -target=ios -work github.com/hajimehoshi/ebiten/v2/examples/rotate@latest
2018-04-30 12:49:02 +02:00
```
Then, open the `WORK` directory, open `main.xcodeproj`, add signing, and run the project.