Fix: chagne missile color
This commit is contained in:
@@ -156,23 +156,23 @@ Missile.prototype.speedUp = function() {
|
||||
|
||||
switch(this.speedLevel) {
|
||||
case 1:
|
||||
this.tint = 0xffffff;
|
||||
this.tint = 0x88ff88; // green
|
||||
break;
|
||||
|
||||
case 2:
|
||||
this.tint = 0xffaaaa;
|
||||
this.tint = 0x8888ff; // purble
|
||||
break;
|
||||
|
||||
case 3:
|
||||
this.tint = 0xaaffaa;
|
||||
this.tint = 0xc080c0; // purple
|
||||
break;
|
||||
|
||||
case 4:
|
||||
this.tint = 0xaaaaff;
|
||||
this.tint = 0xff8888; // red
|
||||
break;
|
||||
|
||||
case 5:
|
||||
this.tint = 0xaaaaaa;
|
||||
this.tint = 0xfee101; // gold
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user