mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
Merge branch '3.8' into 4.0-beta
Note: the following files were resoluved using ours (4.0-beta state): - spine-ts/build/spine-all.js.map - spine-ts/build/spine-player.js.map
This commit is contained in:
commit
646b2934bc
@ -13358,7 +13358,7 @@ var spine;
|
||||
skeletonData = json.readSkeletonData(jsonText);
|
||||
}
|
||||
catch (e) {
|
||||
this.showError("Error: could not load skeleton .json.<br><br>" + escapeHtml(JSON.stringify(e)));
|
||||
this.showError("Error: could not load skeleton .json.<br><br>" + e.toString());
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -13369,7 +13369,7 @@ var spine;
|
||||
skeletonData = binary.readSkeletonData(binaryData);
|
||||
}
|
||||
catch (e) {
|
||||
this.showError("Error: could not load skeleton .skel.<br><br>" + escapeHtml(JSON.stringify(e)));
|
||||
this.showError("Error: could not load skeleton .skel.<br><br>" + e.toString());
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@ -12669,7 +12669,7 @@ var spine;
|
||||
skeletonData = json.readSkeletonData(jsonText);
|
||||
}
|
||||
catch (e) {
|
||||
this.showError("Error: could not load skeleton .json.<br><br>" + escapeHtml(JSON.stringify(e)));
|
||||
this.showError("Error: could not load skeleton .json.<br><br>" + e.toString());
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -12680,7 +12680,7 @@ var spine;
|
||||
skeletonData = binary.readSkeletonData(binaryData);
|
||||
}
|
||||
catch (e) {
|
||||
this.showError("Error: could not load skeleton .skel.<br><br>" + escapeHtml(JSON.stringify(e)));
|
||||
this.showError("Error: could not load skeleton .skel.<br><br>" + e.toString());
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@ -867,7 +867,7 @@ module spine {
|
||||
try {
|
||||
skeletonData = json.readSkeletonData(jsonText);
|
||||
} catch (e) {
|
||||
this.showError("Error: could not load skeleton .json.<br><br>" + escapeHtml(JSON.stringify(e)));
|
||||
this.showError("Error: could not load skeleton .json.<br><br>" + e.toString());
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
@ -876,7 +876,7 @@ module spine {
|
||||
try {
|
||||
skeletonData = binary.readSkeletonData(binaryData);
|
||||
} catch (e) {
|
||||
this.showError("Error: could not load skeleton .skel.<br><br>" + escapeHtml(JSON.stringify(e)));
|
||||
this.showError("Error: could not load skeleton .skel.<br><br>" + e.toString());
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user