Added rotated effects for chain guns

This commit is contained in:
Anuken
2017-11-16 23:16:25 -05:00
parent f2e5873cb6
commit abb6cb9e9f
12 changed files with 73 additions and 10 deletions

View File

@@ -34,6 +34,13 @@ public abstract class BulletType extends BaseBulletType<Bullet>{
Draw.reset();
}
},
chain = new BulletType(2f, 8){
public void draw(Bullet b){
Draw.color("gray");
Draw.rect("bullet", b.x, b.y, b.angle());
Draw.reset();
}
},
sniper = new BulletType(3f, 23){
public void draw(Bullet b){
Draw.color(Color.LIGHT_GRAY);