mirror of
https://github.com/photonstorm/phaser
synced 2024-11-15 01:17:43 +00:00
Added missing autoResize property to Game.Config
This commit is contained in:
parent
cc3a6964dd
commit
c9d3c1a279
1 changed files with 2 additions and 0 deletions
|
@ -75,6 +75,7 @@ var ValueToColor = require('../display/color/ValueToColor');
|
|||
* @property {array} [banner.background] - [description]
|
||||
* @property {FPSConfig} [?fps] - [description]
|
||||
* @property {boolean} [pixelArt=false] - [description]
|
||||
* @property {boolean} [autoResize=false] - [description]
|
||||
* @property {boolean} [roundPixels=false] - [description]
|
||||
* @property {boolean} [transparent=false] - [description]
|
||||
* @property {boolean} [clearBeforeRender=true] - [description]
|
||||
|
@ -181,6 +182,7 @@ var Config = new Class({
|
|||
this.fps = GetValue(config, 'fps', null);
|
||||
|
||||
this.pixelArt = GetValue(config, 'pixelArt', false);
|
||||
this.autoResize = GetValue(config, 'autoResize', false);
|
||||
this.roundPixels = GetValue(config, 'roundPixels', false);
|
||||
this.transparent = GetValue(config, 'transparent', false);
|
||||
this.clearBeforeRender = GetValue(config, 'clearBeforeRender', true);
|
||||
|
|
Loading…
Reference in a new issue