ebiten/examples
2018-12-17 02:34:16 +09:00
..
2048 Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
additive Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
airship examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
alphablending ui: Rename TPS -> MaxTPS 2018-07-17 22:41:27 +09:00
animation Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
audio examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
audioinfiniteloop examples/audioinfiniteloop: Fix message 2018-10-13 14:46:13 +09:00
blocks examples/blocks: Fix message 2018-10-14 00:55:27 +09:00
blur examples/blur: Fix comments 2018-10-01 02:37:53 +09:00
chipmunk examples: Use FilterDefault at NewImage 2018-10-12 00:40:48 +09:00
contextlost Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
drag Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
filter Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
flappy examples/flappy: Should use fullscreen on Wasm 2018-10-14 01:21:13 +09:00
flood Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
font examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
fullscreen examples/fullscreen: Fix offset 2018-10-12 01:11:14 +09:00
gamepad Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
highdpi examples/highdpi: Bug fix: doesn't work well on multiple monitors 2018-10-13 03:59:31 +09:00
hsv Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
hue Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
infinitescroll examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
keyboard Enable to go-generate under non-GOPATH directories 2018-07-28 19:21:19 +09:00
life Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
mandelbrot Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
masking Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
minify examples/minify: Add rotation 2018-07-29 23:24:18 +09:00
moire Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
mosaic Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
noise examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
paint ui: Rename TPS -> MaxTPS 2018-07-17 22:41:27 +09:00
pcm Revert "examples/pcm: Bug fix: audio.Player refs should be held not to be GCed" 2018-12-17 02:34:16 +09:00
perspective Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
piano examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
platformer examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
polygons examples/polygon: Better coloring 2018-08-14 02:14:19 +09:00
resources examples/resources: Add Ragtime_ogg 2018-09-02 23:08:02 +09:00
rotate Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
shapes examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
sinewave examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
sprites examples: Use FilterDefault at NewImage 2018-10-12 00:40:48 +09:00
spriteshd examples: Use FilterDefault at NewImage 2018-10-12 00:40:48 +09:00
tiles examples: Use TPS instead of FPS to indicate how fast the app works 2018-09-30 02:27:33 +09:00
typewriter Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
ui Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
wav Rename IsRunningSlowly to IsDrawingSkipped 2018-07-10 22:31:26 +09:00
wheel examples/wheel: Improve message 2018-09-30 17:13:22 +09:00
windowsize examples/windowsize: Show DeviceScaleFactor 2018-10-14 19:15:26 +09:00
README.md examples: Add iOS explanation 2018-04-30 19:49:02 +09:00

How to execute the examples

Desktops

go run -tags=example $GOPATH/src/github.com/hajimehoshi/ebiten/examples/rotate/main.go

Web Browsers

gopherjs serve --tags=example

and access http://127.0.0.1:8080/github.com/hajimehoshi/ebiten/examples.

Android

Install gomobile first.

gomobile install -tags=example github.com/hajimehoshi/ebiten/examples/rotate

iOS

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.