three.js transparent maps issue

前端 未结 4 1773
礼貌的吻别
礼貌的吻别 2021-01-02 13:31

I\'m creating loads of particles (80.000 to be exact) and I have set a transparent map, though, not all particles are transparent.

I\'m using a transparent PNG image

4条回答
  •  自闭症患者
    2021-01-02 13:43

    Disable the depthWrite attribute on the material.

    // create a new material
    material = new THREE.ParticleBasicMaterial({
        color: colors[i],
        size: 20,
        map: map,
        transparent: true,
        depthWrite: false,
    });
    

提交回复
热议问题