- Home /
Why does the 3D Text shader show specular at certain angles?
I'm using the 3D Text shader from the wiki. It solves the z-buffering problems that the standard 3d text shader had. But there are unwanted specular highlights in the transparent areas of the text that appear only when the camera is at certain angles to the 3D text objects.
I'm using two directional lights in the scene. Adjusting their direction or settings or using other light types has no effect.
Here is an example to illustrate:
...and at a slightly different camera angle:
Would like to know what's causing this. Could this be solved by a simple change in the shader (including here so its handy)? If not, is there a certain part of the shader to investigate as a starting point?
Shader "GUI/3D Text Shader" { Properties { _MainTex ("Font Texture", 2D) = "white" {} _Color ("Text Color", Color) = (1,1,1,1) }
SubShader { Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" } Lighting Off Cull Off ZWrite On Fog { Mode Off } Blend SrcAlpha OneMinusSrcAlpha Pass { Color [_Color] SetTexture [_MainTex] { combine primary, texture * primary } } } }
Heh, thx Eagle-Eye-Eric. That would be a typo by a user. $$anonymous$$ust get spellchecking into the comment fields...
Answer by Wolfram · May 25, 2011 at 07:23 PM
It's not specular, it's the background color.
I assume the dark rectangle with the small triangle at the bottom also uses a transparent shader? The problem is the transparency sorting between these two objects - at certain viewing angles it will fail, rendering the text first, and the dark shape afterwards. However, since the 3D Text shader uses "ZWrite On", pixels that are actually behind the text are prevented from being rendered, because their z-test fails.
There are some ways to get around this, but a perfect solution working in all cases is difficult, and depend on the geometric situation in your scene.
Things you can try are:
change the shader to "ZWrite Off". This might sometimes cause the text to vanish, though.
change the shader to "Queue"="Transparent+1". This might cause the text to be overlaid over other transparent objects, even when the text should be behind.
experiment with the two parameters of "ZOffset" (check the ShaderLab docs on the Unity site)
physically offset the 3D text from the dark object, so that it is closer to the viewer/ floating above its surface, to help the transparency sorting algorithm to fail less often
don't use a transparent shader for the dark "background" geometry behind your text
Thanks for the reply, that's helpful as a start. Yes, the material behind the 3Dtext object is also transparent. And, pulling the text away from the backing polygons does mitigate the problem a little. Buy me some time to do this shader experimenting.
DUDE THAN$$anonymous$$ YOU!!! i just put "Queue"="Transparent+1" and it worked fine, i know it will appears in front of transparent objects, but for my situation it's not a problem
Note that since Unity 3.x (I think) you can access+modify the queue level directly from the material, so you no longer have to modify/write your own shader. So you could write a small script that simply increments the current material.renderQueue. http://unity3d.com/support/documentation/ScriptReference/$$anonymous$$aterial-renderQueue.html
Answer by Barrett-Fox · May 25, 2011 at 10:10 PM
And, indeed, another answer to my own question is to render text to a texture off-camera and combine text and background into one shader. Have done that route before on another project. But I wanted to get a better understanding of these sorting issues.
Your answer
Follow this Question
Related Questions
Simplest Unlit Instanced shader - how to enable switching it on/off (with AlphaTest)? 0 Answers
Rendering transparent objects back to back (HDRP Lit shader) 0 Answers
Tree Creator Shader will not fade 0 Answers
Adding specular to shader 0 Answers
transparent + reflection shader (river water problems) 2 Answers