You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.6 KiB
77 lines
1.6 KiB
// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)' |
|
|
|
// WarFX Shader |
|
// (c) 2015 Jean Moreno |
|
|
|
Shader "WFX/Scroll/Smoke" |
|
{ |
|
Properties |
|
{ |
|
_TintColor ("Tint Color", Color) = (0.5,0.5,0.5,0.5) |
|
_MainTex ("Texture", 2D) = "white" {} |
|
|
|
_ScrollSpeed ("Scroll Speed", Float) = 2.0 |
|
} |
|
|
|
SubShader |
|
{ |
|
Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" } |
|
Blend DstColor SrcAlpha |
|
Cull Off Lighting Off ZWrite Off Fog { Color (0.5,0.5,0.5,0.5) } |
|
|
|
Pass |
|
{ |
|
CGPROGRAM |
|
|
|
#pragma vertex vert |
|
#pragma fragment frag |
|
#pragma fragmentoption ARB_precision_hint_fastest |
|
#include "UnityCG.cginc" |
|
|
|
#pragma debug |
|
|
|
struct v2f |
|
{ |
|
float4 pos : SV_POSITION; |
|
float2 uv : TEXCOORD0; |
|
fixed4 color : COLOR; |
|
}; |
|
|
|
struct vdata |
|
{ |
|
float4 vertex : POSITION; |
|
half2 texcoord : TEXCOORD0; |
|
// float3 normal : NORMAL; |
|
// float4 texcoord : TEXCOORD0; |
|
// float4 texcoord1 : TEXCOORD1; |
|
fixed4 color : COLOR; |
|
}; |
|
|
|
fixed4 _TintColor; |
|
sampler2D _MainTex; |
|
float _ScrollSpeed; |
|
|
|
v2f vert (vdata v) |
|
{ |
|
v2f o; |
|
o.pos = UnityObjectToClipPos (v.vertex); |
|
o.color = v.color; |
|
o.uv = v.texcoord; |
|
return o; |
|
} |
|
|
|
fixed4 frag (v2f i) : COLOR0 |
|
{ |
|
float mask = tex2D(_MainTex, i.uv).a * i.color.a; |
|
i.uv.y -= fmod(_Time*_ScrollSpeed,1); |
|
fixed4 tex = tex2D(_MainTex, i.uv); |
|
tex.rgb *= i.color.rgb * _TintColor.rgb; |
|
tex.a = mask; |
|
tex = lerp(fixed4(0.5,0.5,0.5,0.5), tex, mask); |
|
return tex; |
|
} |
|
|
|
ENDCG |
|
} |
|
} |
|
} |