pixi-rainman-game-engine 0.3.24 → 0.3.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Rainman/Rainman.js +2 -0
- package/package.json +1 -1
package/dist/Rainman/Rainman.js
CHANGED
|
@@ -37,6 +37,7 @@ export class RainMan {
|
|
|
37
37
|
isSuperBonusGameEnabled: false
|
|
38
38
|
};
|
|
39
39
|
this.initLocalStorageSettings();
|
|
40
|
+
RainMan.settingsStore.setHiResolutionFlag(false);
|
|
40
41
|
}
|
|
41
42
|
/**
|
|
42
43
|
* Method for genereting a token or getting existing token for the game session.
|
|
@@ -63,5 +64,6 @@ export class RainMan {
|
|
|
63
64
|
setToLocalStorage(LOCAL_STORAGE.isSoundEnabled, true);
|
|
64
65
|
setToLocalStorage(LOCAL_STORAGE.isSoundFxEnabled, true);
|
|
65
66
|
setToLocalStorage(LOCAL_STORAGE.isAmbientMusicEnabled, true);
|
|
67
|
+
setToLocalStorage(LOCAL_STORAGE.hiResolution, false);
|
|
66
68
|
}
|
|
67
69
|
}
|
package/package.json
CHANGED