Shader "TA/Snow"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
_AddTex ("AddTex",2D) = "white" {}
_BumpMap("BumpMap",2D)= "white" {}
_SnowStep(" Snow",Range(0,1))=0.5
_LightDir("LightDir",vector) = (0,0,1,1)
}
SubShader
{
Tags { "RenderType"="Opaque" }
LOD 100
Pass
{
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
// make fog work
#pragma multi_compile_fog
#include "UnityCG.cginc"
struct appdata
{
float4 vertex : POSITION;
float2 uv : TEXCOORD0;
half3 vnormal : NORMAL;
};
struct v2f
{
float2 uv : TEXCOORD0;
UNITY_FOG_COORDS(1)
float4 vertex : SV_POSITION;
fixed3 normal : NORMAL;
};
sampler2D _MainTex,_AddTex,_BumpMap;
fixed _SnowStep;
half4 _MainTex_ST,_LightDir;
v2f vert (appdata v)
{
v2f o;
o.vertex = UnityObjectToClipPos(v.vertex);
o.uv = TRANSFORM_TEX(v.uv, _MainTex);
o.normal = v.vnormal;
UNITY_TRANSFER_FOG(o,o.vertex);
return o;
}
fixed4 frag (v2f i) : SV_Target
{
fixed4 s = tex2D(_AddTex, i.uv);
half3 customColor = step(1-_SnowStep*s.a,i.normal.y);
fixed4 col = tex2D(_MainTex, i.uv);
fixed3 bum = UnpackNormal(tex2D(_BumpMap, i.uv) * _LightDir.w);
half sDir = max(0,dot(_LightDir,bum));
// apply fog
UNITY_APPLY_FOG(i.fogCoord, col);
return half4((col.rgb*sDir + customColor*s*0.7),1);
}
ENDCG
}
}
}
Unity3dShader-积雪
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...