Fix: chagne missile color

This commit is contained in:
2018-12-20 22:58:33 +09:00
parent 029dd965f7
commit 6f0c254269
+5 -5
View File
@@ -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;
}
}