
08-11-2004, 03:09 PM
You shouldn't have spaces in your shader name, i.e.
[code:5ac77]
The Clinic
{
nomipmaps
nopicmip
cull none
force32bit
surfaceparm nolightmap
{
map $whiteimage
}
{
clampMap textures/mohmenu/dmloading/theclinic.tga
blendfunc gl_one_minus_src_alpha gl_src_alpha
}
}
[/code:5ac77]
should be
[code:5ac77]
theclinic
{
nomipmaps
nopicmip
cull none
force32bit
surfaceparm nolightmap
{
map $whiteimage
}
{
clampMap textures/mohmenu/dmloading/theclinic.tga
blendfunc gl_one_minus_src_alpha gl_src_alpha
}
}
[/code:5ac77]
|