Finishing touches for hexen compatibility (1.1 update):
- Fully implemented ammo cubes. - Fixed environment map shaders (incorrect texture coords were being used). - HUD support for displaying Hexen keys. - Fixed "has no ammo" messages displaying more often than they should. - Fixed lack of footsteps with UT physics disabled. - Sneaky initial Strife compatibility work: - Impact Hammer will have reduced alert distance. - HUD support for displaying Strife keys.
This commit is contained in:
parent
cd0d7d0ec7
commit
da8f6fc4b2
27 changed files with 314 additions and 70 deletions
|
|
@ -3,5 +3,5 @@ vec4 ProcessTexel()
|
|||
{
|
||||
vec3 eyedir = normalize(uCameraPos.xyz-pixelpos.xyz);
|
||||
vec3 norm = reflect(eyedir,normalize(vWorldNormal.xyz));
|
||||
return getTexel(norm.xz*0.5);
|
||||
return getTexel(norm.xz*0.5+0.5);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@ vec4 ProcessTexel()
|
|||
{
|
||||
vec3 eyedir = normalize(uCameraPos.xyz-pixelpos.xyz);
|
||||
vec3 norm = reflect(eyedir,normalize(vWorldNormal.xyz));
|
||||
return getTexel(norm.xz*0.5);
|
||||
return getTexel(norm.xz*0.5+0.5);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue