Hello,
I am not able to make my web application (using Spine Web Play) run.
The error message is in the attached picture.
The website is working on my localhost, but when I upload it to my hosting provider, the error message is show. All files are loaded correctly in the Developers Panel.
I tried to solve the problem with other related posts like https://esotericsoftware.com/forum/d/14461-error-web-spine-player-quotassets-could-not-be-loadedquot, but it still does not work.
The data files are loaded by a relative path:
skel0 = new spine.SpinePlayer("el_" + count, {
jsonUrl: "assets/" + url_json,
atlasUrl: "assets/" + url_etlas,
backgroundColor: "#FFFFFFFF",
alpha: true,
showControls: false
});
The error specifically occurs when the following line is read (param1 = skel0):
param1 = param1.animationState.data.skeletonData.skins[0];
Hopefully someone can help me, thank you.