Three.js / WebGL – transparent planes hiding other planes behind them

Let’s say that you are using some transparent *.png image. Then this would help:

new THREE.MeshBasicMaterial( { side:THREE.BackSide,map:texture, depthWrite: false, depthTest: false });

Leave a Comment