diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2018-11-23 15:43:24 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2018-11-23 15:43:24 +0100 |
commit | e62c838c3da5cd091c86844d3e8649ba4c3fe5dd (patch) | |
tree | cfa8823479e5fdf7189077bfec675f747501ec2a /test/src/ch | |
parent | 5591bf3f826eff842e019bc82db5ae53aacba416 (diff) | |
download | gdx-boardgame-e62c838c3da5cd091c86844d3e8649ba4c3fe5dd.zip gdx-boardgame-e62c838c3da5cd091c86844d3e8649ba4c3fe5dd.tar.gz |
FramedSprite : add x,y,a .. vars
Diffstat (limited to 'test/src/ch')
-rw-r--r-- | test/src/ch/asynk/gdx/boardgame/test/AnimationsScreen.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/src/ch/asynk/gdx/boardgame/test/AnimationsScreen.java b/test/src/ch/asynk/gdx/boardgame/test/AnimationsScreen.java index 27295e6..48c1991 100644 --- a/test/src/ch/asynk/gdx/boardgame/test/AnimationsScreen.java +++ b/test/src/ch/asynk/gdx/boardgame/test/AnimationsScreen.java @@ -54,13 +54,13 @@ public class AnimationsScreen extends AbstractScreen AnimationBatch batch; ShellFireAnimation.register("cfg0", 1f, 66f, 400f, 1.3f, 1f, - app.assets.getTexture(app.assets.SHELL_FIRE), 1, 8, - app.assets.getTexture(app.assets.EXPLOSIONS), 16, 8, + app.assets.getTexture(app.assets.SHELL_FIRE), 8, 1, + app.assets.getTexture(app.assets.EXPLOSIONS), 8, 16, app.assets.getSound(app.assets.SHELL_FIRE_SND), app.assets.getSound(app.assets.EXPLOSION_SND)); ShellFireAnimation.register("cfg1", .5f, 11f, 500f, .8f, 1f, - app.assets.getTexture(app.assets.SHELL_FIRE), 1, 8, - app.assets.getTexture(app.assets.EXPLOSIONS), 16, 8, + app.assets.getTexture(app.assets.SHELL_FIRE), 8, 1, + app.assets.getTexture(app.assets.EXPLOSIONS), 8, 16, app.assets.getSound(app.assets.SHELL_FIRE_SND), app.assets.getSound(app.assets.EXPLOSION_SND)); |