@vpmedia/phaser 1.1.6 → 1.1.7
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/README.md +1 -1
- package/package.json +2 -2
- package/src/phaser/core/game.js +2 -2
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@vpmedia/phaser
|
|
2
2
|
===============
|
|
3
3
|
|
|
4
|
-
[](https://badge.fury.io/js/@vpmedia%2Fphaser)
|
|
5
5
|
[](https://github.com/vpmedia/phaser/actions/workflows/node.js.yml)
|
|
6
6
|
|
|
7
7
|
@vpmedia/phaser is the modern ECMAScript port of the popular Phaser game engine v2.6.2.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vpmedia/phaser",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "@vpmedia/phaser is the modern ECMAScript port of the popular Phaser game engine v2.6.2",
|
|
5
5
|
"author": "Andras Csizmadia <andras@vpmedia.hu> (www.vpmedia.hu)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"husky": "^8.0.2",
|
|
27
27
|
"jest": "^29.3.1",
|
|
28
28
|
"lint-staged": "^13.1.0",
|
|
29
|
-
"prettier": "^2.8.
|
|
29
|
+
"prettier": "^2.8.1"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests",
|
package/src/phaser/core/game.js
CHANGED
|
@@ -176,10 +176,10 @@ export default class {
|
|
|
176
176
|
this.parseConfigElement(config, 'canvasID', '');
|
|
177
177
|
this.parseConfigElement(config, 'canvasStyle', undefined);
|
|
178
178
|
this.parseConfigElement(config, 'resolution', 1);
|
|
179
|
-
this.parseConfigElement(config, 'transparent',
|
|
179
|
+
this.parseConfigElement(config, 'transparent', false);
|
|
180
180
|
this.parseConfigElement(config, 'antialias', false);
|
|
181
181
|
this.parseConfigElement(config, 'preserveDrawingBuffer', false);
|
|
182
|
-
this.parseConfigElement(config, 'clearBeforeRender',
|
|
182
|
+
this.parseConfigElement(config, 'clearBeforeRender', true);
|
|
183
183
|
this.parseConfigElement(config, 'roundPixels', true);
|
|
184
184
|
this.parseConfigElement(config, 'renderType', RENDER_AUTO);
|
|
185
185
|
this.parseConfigElement(config, 'isForceDisabledAudio', false);
|