ボリュームが0のときサウンドを鳴らさないように

This commit is contained in:
syuilo 2020-02-20 23:17:17 +09:00
parent b378cabfc7
commit 49c2a9b372

View file

@ -190,6 +190,7 @@ os.init(async () => {
(vm as any).focus();
},
sound(type: string) {
if (this.$store.state.device.sfxVolume === 0) return;
const sound = this.$store.state.device['sfx' + type.substr(0, 1).toUpperCase() + type.substr(1)];
if (sound == null) return;
const audio = new Audio(`/assets/sounds/${sound}.mp3`);