When viewed from a large angle
When viewed from a small angle
Why is it that when viewed from a small angle, the middle of the stripes is not transparent, but black
demo:https://stackblitz.com/edit/stackblitz-starters-rwnypm?file=src%2Fmain.ts
When viewed from a large angle
When viewed from a small angle
Why is it that when viewed from a small angle, the middle of the stripes is not transparent, but black
demo:https://stackblitz.com/edit/stackblitz-starters-rwnypm?file=src%2Fmain.ts
This is caused by having both objects transparent. The rendering automatically sorts them (as the algorithm for showing transparent objects requires to have them sorted). The two simplest ways to fix the issue are:
Thank you very much. I manually set the rendering order using renderOrder to solve this problem