mirror of
https://github.com/photonstorm/phaser
synced 2025-02-24 19:37:15 +00:00
Max Parallel Files limit raised from 4 to 32
This commit is contained in:
parent
e6a3747291
commit
8c51107718
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ var ValueToColor = require('../display/color/ValueToColor');
|
||||||
* @property {string} [baseURL] - [description]
|
* @property {string} [baseURL] - [description]
|
||||||
* @property {string} [path] - [description]
|
* @property {string} [path] - [description]
|
||||||
* @property {boolean} [enableParallel=true] - [description]
|
* @property {boolean} [enableParallel=true] - [description]
|
||||||
* @property {integer} [maxParallelDownloads=4] - [description]
|
* @property {integer} [maxParallelDownloads=32] - [description]
|
||||||
* @property {(string|undefined)} [crossOrigin=undefined] - [description]
|
* @property {(string|undefined)} [crossOrigin=undefined] - [description]
|
||||||
* @property {string} [responseType] - [description]
|
* @property {string} [responseType] - [description]
|
||||||
* @property {boolean} [async=true] - [description]
|
* @property {boolean} [async=true] - [description]
|
||||||
|
@ -237,7 +237,7 @@ var Config = new Class({
|
||||||
this.loaderBaseURL = GetValue(config, 'loader.baseURL', '');
|
this.loaderBaseURL = GetValue(config, 'loader.baseURL', '');
|
||||||
this.loaderPath = GetValue(config, 'loader.path', '');
|
this.loaderPath = GetValue(config, 'loader.path', '');
|
||||||
this.loaderEnableParallel = GetValue(config, 'loader.enableParallel', true);
|
this.loaderEnableParallel = GetValue(config, 'loader.enableParallel', true);
|
||||||
this.loaderMaxParallelDownloads = GetValue(config, 'loader.maxParallelDownloads', 4);
|
this.loaderMaxParallelDownloads = GetValue(config, 'loader.maxParallelDownloads', 32);
|
||||||
this.loaderCrossOrigin = GetValue(config, 'loader.crossOrigin', undefined);
|
this.loaderCrossOrigin = GetValue(config, 'loader.crossOrigin', undefined);
|
||||||
this.loaderResponseType = GetValue(config, 'loader.responseType', '');
|
this.loaderResponseType = GetValue(config, 'loader.responseType', '');
|
||||||
this.loaderAsync = GetValue(config, 'loader.async', true);
|
this.loaderAsync = GetValue(config, 'loader.async', true);
|
||||||
|
|
Loading…
Add table
Reference in a new issue