Three.js, custom shader and png texture with transparency

瘦欲@ 提交于 2019-12-05 23:51:48

问题


I have an extremely simple PNG texture: a grey circle with a transparent background.

I use it as a uniform map for a THREE.ShaderMaterial:

var uniforms = THREE.UniformsUtils.merge( [basicShader.uniforms] );
uniforms['map'].value = THREE.ImageUtils.loadTexture( "img/particle.png" );
uniforms['size'].value = 100;
uniforms['opacity'].value = 0.5;
uniforms['psColor'].value = new THREE.Color( 0xffffff );

Here is my fragment shader (just part of it):

gl_FragColor = vec4( psColor, vOpacity );
gl_FragColor = gl_FragColor * texture2D( map,vec2( gl_PointCoord.x, 1.0 - gl_PointCoord.y ) );
gl_FragColor = gl_FragColor * vec4( vColor, 1.0 );

I applied the material to some particles (THREE.PointCloud mesh) and it works quite well:

But if i turn the camera of more than 180 degrees I see this:

I understand that the fragment shader is not correctly taking into account the alpha value of the PNG texture.

What is the best approach in this case, to get the right color and opacity (from custom attributes) and still get the alpha right from the PNG?

And why is it behaving correctly on one side?


回答1:


Transparent objects must be rendered from back to front -- from furthest to closest. This is because of the depth buffer.

But PointCloud particles are not sorted based on distance from the camera. That would be too inefficient. The particles are always rendered in the same order, regardless of the camera position.

You have several work-arounds.

The first is to discard fragments for which the alpha is low. You can use a pattern like so:

if ( textureColor.a < 0.5 ) discard;

Another option is to set material.depthTest = false or material.depthWrite = false. You might not like the side effects, however, if you have other objects in the scene.

three.js r.71



来源:https://stackoverflow.com/questions/31037195/three-js-custom-shader-and-png-texture-with-transparency

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!