サウンドのボリュームはデフォルトで50%に

This commit is contained in:
syuilo 2018-04-12 06:20:32 +09:00
parent cca9963a9a
commit 3ffae40085
4 changed files with 6 additions and 6 deletions

View file

@ -151,7 +151,7 @@ export default Vue.extend({
//
if ((this as any).os.isEnableSounds) {
const sound = new Audio(`${url}/assets/message.mp3`);
sound.volume = localStorage.getItem('soundVolume') ? parseInt(localStorage.getItem('soundVolume'), 10) / 100 : 1;
sound.volume = localStorage.getItem('soundVolume') ? parseInt(localStorage.getItem('soundVolume'), 10) / 100 : 0.5;
sound.play();
}