mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-11-24 23:26:07 +09:00
ボリュームが0のときサウンドを鳴らさないように
This commit is contained in:
parent
032ca34f0b
commit
4637839e30
@ -190,6 +190,7 @@ os.init(async () => {
|
|||||||
(vm as any).focus();
|
(vm as any).focus();
|
||||||
},
|
},
|
||||||
sound(type: string) {
|
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)];
|
const sound = this.$store.state.device['sfx' + type.substr(0, 1).toUpperCase() + type.substr(1)];
|
||||||
if (sound == null) return;
|
if (sound == null) return;
|
||||||
const audio = new Audio(`/assets/sounds/${sound}.mp3`);
|
const audio = new Audio(`/assets/sounds/${sound}.mp3`);
|
||||||
|
Loading…
Reference in New Issue
Block a user