mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 23:20:59 +00:00
Scene settings now checks for a plugins array
This commit is contained in:
parent
5a333bc2fd
commit
776d178b38
1 changed files with 5 additions and 0 deletions
|
@ -42,8 +42,13 @@ var Settings = {
|
|||
map: GetValue(config, 'map', InjectionMap),
|
||||
|
||||
// Physics
|
||||
|
||||
physics: GetValue(config, 'physics', {}),
|
||||
|
||||
// Plugins
|
||||
|
||||
plugins: GetValue(config, 'plugins', false),
|
||||
|
||||
// Scene Render Settings (applies only to this Scene)
|
||||
|
||||
scaleMode: GetValue(config, 'scaleMode', ScaleModes.DEFAULT),
|
||||
|
|
Loading…
Reference in a new issue