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
|
2020-10-03 22:07:08 +02:00
|
|
|
go run -tags=example github.com/hajimehoshi/ebiten/examples/rotate
|
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
|
|
|
|
2020-01-18 20:47:48 +01:00
|
|
|
Install [gomobile](https://pkg.go.dev/golang.org/x/mobile/cmd/gomobile) first.
|
2018-03-25 18:53:06 +02:00
|
|
|
|
|
|
|
```sh
|
2018-04-30 12:43:29 +02:00
|
|
|
gomobile install -tags=example github.com/hajimehoshi/ebiten/examples/rotate
|
2016-08-25 18:21:01 +02:00
|
|
|
```
|
2018-04-30 12:49:02 +02:00
|
|
|
|
|
|
|
## iOS
|
|
|
|
|
|
|
|
```sh
|
|
|
|
gomobile build -target=ios -tags=example -work github.com/hajimehoshi/ebiten/examples/rotate
|
|
|
|
```
|
|
|
|
|
|
|
|
Then, open the `WORK` directory, open `main.xcodeproj`, add signing, and run the project.
|