标签:glsl opengl unity3d 信息图 shader
转发请保持地址:http://blog.csdn.net/stalendp/article/details/30989295
本文将介绍怎么通过alpha通道来隐藏信息,并实现卡牌特效。运行效果如下:
Shader "stalendp/imageShine" { Properties { _MainTex ("image", 2D) = "white" {} _NoiseTex("noise", 2D) = "bump" {} _percent("percent", Range(-0.3, 1)) = 0 _DefColor ("defalutColor", COLOR) = ( 0, .8, .4, 1) } CGINCLUDE #include "UnityCG.cginc" sampler2D _MainTex; sampler2D _NoiseTex; float _percent; fixed4 _DefColor; struct v2f { half4 pos:SV_POSITION; half4 uv : TEXCOORD0; }; v2f vert(appdata_full v) { v2f o; o.pos = mul (UNITY_MATRIX_MVP, v.vertex); o.uv.xy = v.texcoord.xy; o.uv.zw = v.texcoord.xy + _Time.xx ; return o; } fixed4 frag(v2f i) : COLOR0 { // 原始卡牌, 把alpha设置为1,屏蔽掉alpha通道信息 fixed4 tex0 = tex2D(_MainTex, i.uv.xy); tex0.a = 1; // 透明躁动卡牌; 使用alpha通道信息,设置显示颜色,并加入躁动; half3 noise = tex2D(_NoiseTex, i.uv.zw ); fixed4 tex1 = tex2D(_MainTex, i.uv.xy + noise.xy * 0.05 - 0.025); tex1.rgb = _DefColor.rgb; return lerp(tex0, tex1, smoothstep(0, 0.3, i.uv.y-_percent)); } ENDCG SubShader { Tags {"Queue" = "Transparent"} ZWrite Off Blend SrcAlpha OneMinusSrcAlpha Pass { CGPROGRAM #pragma vertex vert #pragma fragment frag #pragma fragmentoption ARB_precision_hint_fastest ENDCG } } FallBack Off }
1)在本例中,在photoshop中处理图片,在alpha通道中存放了如下的信息图:
然后导出图片成为 tif格式。
2)准备一张噪声图片,并在unity下转化为Normal Map类型。如下图:
3)用Quad来测试当前shader。填写shader参数如下:
调节percent,就可以看到文章开头的那个特效。
half3 noise = tex2D(_NoiseTex, i.uv.zw ); fixed4 tex1 = tex2D(_MainTex, i.uv.xy + noise.xy * 0.05 - 0.025); tex1.rgb = _DefColor.rgb;2)两个图片的叠加;通过比较uv中的v 和 _percent,来融合处理后的alpha通道和rgb通道。
lerp(tex0, tex1, smoothstep(0, 0.3, i.uv.y-_percent));
【OpenGL】Shader实例分析(六)- 卡牌特效,布布扣,bubuko.com
标签:glsl opengl unity3d 信息图 shader
原文地址:http://blog.csdn.net/stalendp/article/details/30989295