lzy100w Turn on triangleRendering,There are many white lines on the picture In the iphone but Running on a computer does not have this problem,This problem only occurs on iphone Use safari(iphone) to access this address: http://jackjones.voxlab.cn/spineTest.html
Mario As per the README.md for the spine-ts canvas backend, mesh rendering is a highly experimental feature that is broken in some browsers. I'm afraid this can not be fixed as it is a severe limitation of the browser Canvas API. You can switch to spine-ts WebGL.
lzy100w I found a temporary solution. if(isIos && triangleRendering==true) { canvas.getContext("2d").drawImage(canvas,0,0) } Drawing again can solve this problem, but it will reduce efficiency
Mario You will run into similar issues on other browser, which is why this feature is experimental, and likely will never work fully on all browser version. I'm glad you found a fix, but I'm worried you'll run into other similar issues.