mirror of
https://github.com/photonstorm/phaser
synced 2024-12-01 17:10:09 +00:00
Merge pull request #5485 from jdcook/spine-prefix-bugfix
fixed spine texture bug when using prefixes
This commit is contained in:
commit
cd8f375a0c
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ var SpineFile = new Class({
|
|||
{
|
||||
var textureURL = textures[i];
|
||||
|
||||
var key = this.prefix + textureURL;
|
||||
var key = textureURL;
|
||||
|
||||
var image = new ImageFile(loader, key, textureURL, textureXhrSettings);
|
||||
|
||||
|
|
Loading…
Reference in a new issue