pixijs / spine

Pixi.js plugin that enables Spine support.
Other
564 stars 217 forks source link

spine animation appears black border. #484

Open GarvinPanda opened 1 year ago

GarvinPanda commented 1 year ago

When I set transparent: true or backgroundAlpha: 0 in new Application my spine animation appears black border. image but When I set backgroundColor: 0xcccccc Without setting backgroundAlpha or transparent in new Application ,The black border is gone. image

How do I solve it?

ivanpopelyshev commented 1 year ago

If you want to blend ADD with browser background (not canvas background!) - the result is not guaranteed.

Here's a thread I made in chromium bugtracker: https://bugs.chromium.org/p/chromium/issues/detail?id=1034121

GarvinPanda commented 1 year ago

If you want to blend ADD with browser background (not canvas background!) - the result is not guaranteed.

Here's a thread I made in chromium bugtracker: https://bugs.chromium.org/p/chromium/issues/detail?id=1034121

Thank you for your answer, I will see if I can achieve it in another way.