cod4-sdk/raw/techniques/effect_add_eyeofs_dfalloff_fog.tech
2008-01-19 00:00:00 +00:00

22 lines
520 B
Text

{
stateMap "effect_add";
vertexShader 1.1 "vertcol_eyeofs_fog_dfa.hlsl"
{
eyeOffsetParms = material.eyeOffsetParms;
falloffParms = material.falloffParms;
falloffBeginColor = material.falloffBeginColor;
falloffEndColor = material.falloffEndColor;
}
pixelShader 2.0 "vertcol_simple_add_fog.hlsl"
{
fogColor = float4( 0, 0, 0, 0 );
colorMapSampler = material.colorMap;
}
vertex.position = code.position;
vertex.color[0] = code.color;
vertex.texcoord[0] = code.texcoord[0];
}