This commit is contained in:
syuilo
2020-09-06 14:31:59 +09:00
parent 26b16124e6
commit 0d99d8f8e5
2 changed files with 13 additions and 4 deletions

View File

@@ -56,3 +56,12 @@ export function menu(props: Record<string, any>) {
props
});
}
export function sound(type: string) {
if (store.state.device.sfxVolume === 0) return;
const sound = store.state.device['sfx' + type.substr(0, 1).toUpperCase() + type.substr(1)];
if (sound == null) return;
const audio = new Audio(`/assets/sounds/${sound}.mp3`);
audio.volume = store.state.device.sfxVolume;
audio.play();
}