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
版权声明:本文标题:three.js - How to support InstanceMeshBatchedMesh in custom ShaderMaterial? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743754403a2533242.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论