1. I'm trying to play a one time animation with the SpinePlayer on a click event on a web page.
let player = new spine.SpinePlayer("container-raptor", {
jsonUrl: "assets/_front.json",
atlasUrl: "assets/_front.atlas",
animation: "idle",
showControls: false,
premultipliedAlpha: true,
backgroundColor: "#00000000",
alpha: true
});
and I don't know how tojsonUrl: "assets/_front.json",
atlasUrl: "assets/_front.atlas",
animation: "idle",
showControls: false,
premultipliedAlpha: true,
backgroundColor: "#00000000",
alpha: true
});
??????.setAnimation(0, 'animation_name', false);
2. Is there an option to avoid showing the spine logo when the animation is loading?
Thank you