Skip to content
Snippets Groups Projects
Commit 14aedc17 authored by syuilo's avatar syuilo
Browse files

update sound

parent 0d7f9308
No related branches found
No related tags found
No related merge requests found
File added
No preview for this file type
......@@ -387,9 +387,8 @@ export class DropAndFusionGame extends EventEmitter<{
public drop(_x: number) {
if (this.isGameOver) return;
if (Date.now() - this.latestDroppedAt < this.DROP_INTERVAL) {
return;
}
if (Date.now() - this.latestDroppedAt < this.DROP_INTERVAL) return;
const head = this.stock.shift()!;
this.stock.push({
id: Math.random().toString(),
......@@ -435,7 +434,7 @@ export class DropAndFusionGame extends EventEmitter<{
}
sound.playUrl('/client-assets/drop-and-fusion/hold.mp3', {
volume: this.sfxVolume,
volume: 0.5 * this.sfxVolume,
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment