v0.2.3: added full attack and death animations to ghost sprite.

This commit is contained in:
Evan Debenham
2014-12-11 22:27:32 -05:00
parent 67a7bf0515
commit 8481daf252
3 changed files with 13 additions and 7 deletions
@@ -40,9 +40,12 @@ public class GhostSprite extends MobSprite {
run = new Animation( 10, true );
run.frames( frames, 0, 1 );
die = new Animation( 20, false );
die.frames( frames, 0 );
attack = new Animation( 10, false );
attack.frames( frames, 0, 2, 3 );
die = new Animation( 8, false );
die.frames( frames, 0, 4, 5, 6, 7 );
play( idle );
}