add over1500 combo sound

This commit is contained in:
Bui 2018-12-30 14:35:15 +00:00
parent 16f3366acf
commit 806b21df08
2 changed files with 5 additions and 3 deletions

View File

@ -63,6 +63,7 @@ var assets = {
"combo-1200-meka.wav",
"combo-1300-meka.wav",
"combo-1400-meka.wav",
"combo-over1500-meka.wav",
"fullcombo-meka.wav",
"song-select.wav",
@ -94,7 +95,8 @@ var assets = {
"combo-1200.wav",
"combo-1300.wav",
"combo-1400.wav",
"combo-over1500.wav",
"fullcombo.wav",
"gamefullcombo.wav",
"gameclear.wav",

View File

@ -413,8 +413,8 @@ class Game{
if(this.combo > this.globalScore.maxCombo){
this.globalScore.maxCombo = this.combo
}
if(this.combo === 50 || this.combo > 0 && this.combo % 100 === 0 && this.combo <= 1400){
this.controller.playSoundMeka("combo-" + this.combo)
if(this.combo === 50 || this.combo > 0 && this.combo % 100 === 0){
this.controller.playSoundMeka("combo-" + (this.combo <= 1400 ? this.combo : "over1500"))
}
this.view.updateCombo(this.combo)
}