0

与此问题相关:Z-buffer issue with BufferGeometry in ParticleSystem

给定的解决方案对我不起作用,我制作了自己的着色器进行渲染,因为我为尺寸和 UV 添加了自定义属性。除了透明度的粒子排序之外,Everythinf 与缓冲区几何图形都可以正常工作。

如果激活 > 平方纹理部分隐藏其他粒子。

If Deactivated (depthTest : false) > 粒子看起来不错但没有排序。

感谢您的回答,该主题已被多次提出,但对我没有任何帮助。

使用 Three.js 61

            particleMaterial = new THREE.ShaderMaterial({
                    fragmentShader    : document.getElementById("sectorPointFragment").textContent,
                    vertexShader  : document.getElementById("sectorPointVertex").textContent,
                    uniforms  : uniforms,
                    attributes : attributes,
                    transparent : true,
                    alphaTest : 0.5
                });         


            _this.particles = new THREE.ParticleSystem(geometry, particleMaterial);

            _this.particles.sortParticles = true;   
4

1 回答 1

0

所以这是我采取的解决方案,每次都创建一个具有值的新数组。似乎有效,仅用 1000 个粒子进行了测试

this.updateShaders = function() {
    if(clock.getElapsedTime() - _lastZOrdering <= 0.2) {
        return;
    }
    // z-ordering
    var distances = [],
        attributes = this.particles.geometry.attributes,
        nbParticle = attributes.position.numItems / 3,
        tmpPos = new THREE.Vector3(0, 0, 0);

    for (var i = 0; i < nbParticle; ++i) {
        tmpPos.set(
            attributes.position.array[i * 3],
            attributes.position.array[i * 3 + 1],
            attributes.position.array[i * 3 + 2]
        );
        distances[i] = [this.controls.object.position.distanceTo(tmpPos), i];
    }
    distances.sort(function(a, b){ 
        return b[0] - a[0];
    });

    var index, indexSrc, indexDst, tmpTab;
    for (var val in attributes) {
        tmpTab = new Float32Array(attributes[val].itemSize * nbParticle);
        for(i = 0; i < nbParticle; ++i){
            index = distances[i][1];
            for(j = 0; j < attributes[val].itemSize; ++j){
                indexSrc = index * attributes[val].itemSize + j;
                indexDst = i * attributes[val].itemSize + j;
                tmpTab[indexDst] = attributes[val].array[indexSrc];
            }
        }
        attributes[val].array = tmpTab;
        attributes[val].needsUpdate = true;
    }
    _lastZOrdering = clock.getElapsedTime();
}
于 2013-09-19T18:00:14.197 回答