Hello, I want to have the Lighting effect:
http://www.wolfenstein3d.co.uk/coding-lighting.htm
( When you walk under a ceiling lamp the screen flashes ? )
But If I want to link the compiler says:
Linker error: Unable to open file 'OBJ\WL_AGENT.OBJ'
What is the problem? I have this:
case bo_gibs:
if (gamestate.health >10)
return;
SD_PlaySound (SLURPIESND);
HealSelf (1);
break;
case bo_light:
StartBonusFlash ();
SD_PlaySound (SLURPIESND);
HealSelf (1);
break;
I have tried many things like this:
case bo_gibs:
if (gamestate.health >10)
return;
SD_PlaySound (SLURPIESND);
HealSelf (1);
break;
case bo_light:
StartBonusFlash ();
But nothing seems to work.. Can anyone help please?
http://www.wolfenstein3d.co.uk/coding-lighting.htm
( When you walk under a ceiling lamp the screen flashes ? )
But If I want to link the compiler says:
Linker error: Unable to open file 'OBJ\WL_AGENT.OBJ'
What is the problem? I have this:
case bo_gibs:
if (gamestate.health >10)
return;
SD_PlaySound (SLURPIESND);
HealSelf (1);
break;
case bo_light:
StartBonusFlash ();
SD_PlaySound (SLURPIESND);
HealSelf (1);
break;
I have tried many things like this:
case bo_gibs:
if (gamestate.health >10)
return;
SD_PlaySound (SLURPIESND);
HealSelf (1);
break;
case bo_light:
StartBonusFlash ();
But nothing seems to work.. Can anyone help please?