admin管理员组

文章数量:1344531

I have no idea how to extend my shader. It is quite simple. I have geometries with custom focus attribute with value between 0-1 and based on that I render plane colour. But for BatchedMesh this shader does not work. (I see geometry on (0,0,0) point ) In web I found something about instanceMatrix attribute but I don`t know how to use it correctly.

const focusMaterial = new THREE.ShaderMaterial({
    vertexShader: /* glsl */`

    attribute float focus;

    varying float vFocus;

    void main() {
        vFocus = focus;
        gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
    }`,
    fragmentShader: /* glsl */`
        varying float vFocus;

        void main() {
            gl_FragColor = vec4(vFocus,vFocus,0.5,1.0);
        }
    `,
});

本文标签: threejsHow to support InstanceMeshBatchedMesh in custom ShaderMaterialStack Overflow