View Single Post
Old
  (#8)
jv_map is Offline
Senior Member
 
Posts: 238
Join Date: Sep 2002
Location: Where I wanted to go today
  Send a message via MSN to jv_map  
Default 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]
  
Reply With Quote