mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 07:01:20 +00:00
Arcade groups collider
This commit is contained in:
parent
b9e4d15efb
commit
456faf400c
2 changed files with 4 additions and 12 deletions
|
@ -65,7 +65,7 @@ var File = new Class({
|
|||
{
|
||||
this.url = GetFastValue(fileConfig, 'path', '') + this.key + '.' + GetFastValue(fileConfig, 'extension', '');
|
||||
}
|
||||
else if (typeof(this.url) !== 'function')
|
||||
else
|
||||
{
|
||||
this.url = GetFastValue(fileConfig, 'path', '').concat(this.url);
|
||||
}
|
||||
|
@ -118,7 +118,7 @@ var File = new Class({
|
|||
* @type {integer}
|
||||
* @since 3.0.0
|
||||
*/
|
||||
this.state = typeof(this.url) === "function" ? CONST.FILE_POPULATED : CONST.FILE_PENDING;
|
||||
this.state = CONST.FILE_PENDING;
|
||||
|
||||
/**
|
||||
* The total size of this file.
|
||||
|
@ -437,4 +437,4 @@ File.revokeObjectURL = function (image)
|
|||
}
|
||||
};
|
||||
|
||||
module.exports = File;
|
||||
module.exports = File;
|
|
@ -34,14 +34,6 @@ var PluginFile = new Class({
|
|||
|
||||
function PluginFile (key, url, path, xhrSettings)
|
||||
{
|
||||
// If the url variable refers to a class, add the plugin directly
|
||||
if (typeof url === 'function')
|
||||
{
|
||||
this.key = key;
|
||||
window[key] = url;
|
||||
window[key].register(PluginManager);
|
||||
}
|
||||
|
||||
var fileKey = (typeof key === 'string') ? key : GetFastValue(key, 'key', '');
|
||||
|
||||
var fileConfig = {
|
||||
|
@ -115,4 +107,4 @@ FileTypesManager.register('plugin', function (key, url, xhrSettings)
|
|||
return this;
|
||||
});
|
||||
|
||||
module.exports = PluginFile;
|
||||
module.exports = PluginFile;
|
Loading…
Reference in a new issue