Both loader functions:
PLAYGROUND.Application.prototype.loadTexture
&
PLAYGROUND.Application.prototype.loadObject
include the line:
this.loader.add(name);
yet the variable 'name' is defined on line 3374 of playground.js (SoundWebAudioAPI.js) as:
if (alias) name = alias.source;
Why does the Object loader make use of this empty string?
Both loader functions:
PLAYGROUND.Application.prototype.loadTexture
&
PLAYGROUND.Application.prototype.loadObject
include the line:
this.loader.add(name);
yet the variable 'name' is defined on line 3374 of playground.js (SoundWebAudioAPI.js) as:
if (alias) name = alias.source;
Why does the Object loader make use of this empty string?