pixi-rainman-game-engine 0.3.25 → 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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixi-rainman-game-engine",
3
- "version": "0.3.25",
3
+ "version": "0.3.26",
4
4
  "description": "This repository contains all of the mechanics that used in rainman games.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",