summaryrefslogtreecommitdiffstats
path: root/test/src/ch/asynk/gdx
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2018-11-23 15:43:24 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2018-11-23 15:43:24 +0100
commite62c838c3da5cd091c86844d3e8649ba4c3fe5dd (patch)
treecfa8823479e5fdf7189077bfec675f747501ec2a /test/src/ch/asynk/gdx
parent5591bf3f826eff842e019bc82db5ae53aacba416 (diff)
downloadgdx-boardgame-e62c838c3da5cd091c86844d3e8649ba4c3fe5dd.zip
gdx-boardgame-e62c838c3da5cd091c86844d3e8649ba4c3fe5dd.tar.gz
FramedSprite : add x,y,a .. vars
Diffstat (limited to 'test/src/ch/asynk/gdx')
-rw-r--r--test/src/ch/asynk/gdx/boardgame/test/AnimationsScreen.java8
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));