v0.8.0: final improvements to DM-100 sprites

This commit is contained in:
Evan Debenham 2020-04-13 15:58:58 -04:00
parent e059804f8a
commit cb524aee35
2 changed files with 2 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 532 B

After

Width:  |  Height:  |  Size: 638 B

View File

@ -31,7 +31,6 @@ import com.watabou.noosa.TextureFilm;
import com.watabou.noosa.audio.Sample; import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PointF; import com.watabou.utils.PointF;
//TODO sprite still needs some color tweaking?
public class DM100Sprite extends MobSprite { public class DM100Sprite extends MobSprite {
public DM100Sprite () { public DM100Sprite () {
@ -53,8 +52,8 @@ public class DM100Sprite extends MobSprite {
zap = new Animation( 8, false ); zap = new Animation( 8, false );
zap.frames( frames, 5, 5, 1 ); zap.frames( frames, 5, 5, 1 );
die = new Animation( 8, false ); die = new Animation( 12, false );
die.frames( frames, 10, 11, 12 ); die.frames( frames, 10, 11, 12, 13, 14, 15 );
play( idle ); play( idle );
} }