23 lines
465 B
Text
23 lines
465 B
Text
|
// backward compatibility for shipping
|
||
|
|
||
|
{
|
||
|
stateMap "zfeather_add";
|
||
|
|
||
|
vertexShader 2.0 "zfeather_spot_shad_dtex.hlsl"
|
||
|
{
|
||
|
featherParms = material.featherParms;
|
||
|
}
|
||
|
|
||
|
pixelShader 2.0 "zfeather_add_spot_shad.hlsl"
|
||
|
{
|
||
|
fogColor = float4( 0, 0, 0, 0 );
|
||
|
colorMapSampler = material.colorMap;
|
||
|
featherParms = material.featherParms;
|
||
|
}
|
||
|
|
||
|
vertex.position = code.position;
|
||
|
vertex.color[0] = code.color;
|
||
|
vertex.texcoord[0] = code.texcoord[0];
|
||
|
|
||
|
}
|