1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Initial support for saving games

This commit is contained in:
tobspr
2020-05-14 21:54:11 +02:00
parent 23874c43dc
commit b01d38e55d
44 changed files with 690 additions and 777 deletions

View File

@@ -117,11 +117,8 @@ export class SoundInterface {
this.music[musicPath] = music;
}
// this.musicMuted = this.app.userProfile.getMusicMuted();
// this.soundsMuted = this.app.userProfile.getSoundsMuted();
this.musicMuted = false;
this.soundsMuted = false;
this.musicMuted = this.app.settings.getAllSettings().musicMuted;
this.soundsMuted = this.app.settings.getAllSettings().soundsMuted;
if (G_IS_DEV && globalConfig.debug.disableMusic) {
this.musicMuted = true;