1
0
Fork 0
fgdata/Shaders/3dcloud-ALS.frag

18 lines
398 B
GLSL
Raw Normal View History

2012-03-08 22:20:39 +00:00
uniform sampler2D baseTexture;
varying float fogFactor;
varying vec3 hazeColor;
void main(void)
{
vec4 base = texture2D( baseTexture, gl_TexCoord[0].st);
if (base.a < 0.02)
discard;
2012-03-08 22:20:39 +00:00
vec4 finalColor = base * gl_Color;
2012-04-26 10:03:51 +00:00
2012-03-08 22:20:39 +00:00
gl_FragColor.rgb = mix(hazeColor, finalColor.rgb, fogFactor );
gl_FragColor.a = mix(0.0, finalColor.a, 1.0 - 0.5 * (1.0 - fogFactor));
}