mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-26 19:51:47 +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);
|
skeletonData = json.readSkeletonData(jsonText);
|
||||||
}
|
}
|
||||||
catch (e) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -13369,7 +13369,7 @@ var spine;
|
|||||||
skeletonData = binary.readSkeletonData(binaryData);
|
skeletonData = binary.readSkeletonData(binaryData);
|
||||||
}
|
}
|
||||||
catch (e) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -12669,7 +12669,7 @@ var spine;
|
|||||||
skeletonData = json.readSkeletonData(jsonText);
|
skeletonData = json.readSkeletonData(jsonText);
|
||||||
}
|
}
|
||||||
catch (e) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -12680,7 +12680,7 @@ var spine;
|
|||||||
skeletonData = binary.readSkeletonData(binaryData);
|
skeletonData = binary.readSkeletonData(binaryData);
|
||||||
}
|
}
|
||||||
catch (e) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -867,7 +867,7 @@ module spine {
|
|||||||
try {
|
try {
|
||||||
skeletonData = json.readSkeletonData(jsonText);
|
skeletonData = json.readSkeletonData(jsonText);
|
||||||
} catch (e) {
|
} 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;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -876,7 +876,7 @@ module spine {
|
|||||||
try {
|
try {
|
||||||
skeletonData = binary.readSkeletonData(binaryData);
|
skeletonData = binary.readSkeletonData(binaryData);
|
||||||
} catch (e) {
|
} 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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user