zwei enemies gepixelt

This commit is contained in:
lubiana 2014-11-05 01:00:16 +01:00
parent 74ba66451b
commit 64c061b68f
5 changed files with 3 additions and 3 deletions

BIN
res/images/enemy01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 552 B

BIN
res/images/enemy02.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 583 B

View File

@ -15,7 +15,7 @@ public class EnemyFour extends Enemy{
public EnemyFour(int x, int y, ArrayList<Point> points) { public EnemyFour(int x, int y, ArrayList<Point> points) {
super(x, y); super(x, y);
this.setImage("images/nyancat.png"); this.setImage("images/enemy01.png");
this.setShootSpeed(4); this.setShootSpeed(4);
this.setShootDelay(42); this.setShootDelay(42);
this.setShootSpawn(-10, 10); this.setShootSpawn(-10, 10);

View File

@ -19,7 +19,7 @@ public class EnemyThree extends Enemy{
public EnemyThree(int x, int y) { public EnemyThree(int x, int y) {
super(x, y); super(x, y);
random = new Random(); random = new Random();
this.setImage("images/nyancat.png"); this.setImage("images/enemy02.png");
this.setShootSpeed(4); this.setShootSpeed(4);
this.setShootDelay(42); this.setShootDelay(42);
this.setShootSpawn(-10, 10); this.setShootSpawn(-10, 10);

View File

@ -9,7 +9,7 @@ public class EnemyTwo extends Enemy{
public EnemyTwo(int x, int y) { public EnemyTwo(int x, int y) {
super(x, y); super(x, y);
Random random = new Random(); Random random = new Random();
this.setImage("images/nyancat.png"); this.setImage("images/enemy02.png");
this.setShootSpeed(4); this.setShootSpeed(4);
this.setShootDelay(42); this.setShootDelay(42);
this.setShootSpawn(-10, 10); this.setShootSpawn(-10, 10);