FIX: help camera settings popup now only show up once

This commit is contained in:
kharhamel 2021-03-24 15:59:18 +01:00
parent 1d69af0664
commit 0b352fc5dc
3 changed files with 14 additions and 1 deletions

View file

@ -8,6 +8,7 @@ const gameQualityKey = 'gameQuality';
const videoQualityKey = 'videoQuality';
const audioPlayerVolumeKey = 'audioVolume';
const audioPlayerMuteKey = 'audioMute';
const helpCameraSettingsShown = 'helpCameraSettingsShown';
class LocalUserStore {
saveUser(localUser: LocalUser) {
@ -73,6 +74,13 @@ class LocalUserStore {
getAudioPlayerMuted(): boolean {
return localStorage.getItem(audioPlayerMuteKey) === 'true';
}
setHelpCameraSettingsShown(): void {
localStorage.setItem(helpCameraSettingsShown, '1');
}
getHelpCameraSettingsShown(): boolean {
return localStorage.getItem(helpCameraSettingsShown) === '1';
}
}
export const localUserStore = new LocalUserStore();