mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-27 03:35:27 +00:00
9 lines
261 B
Plaintext
9 lines
261 B
Plaintext
|
#define PARALLAX_SCALE 0.04
|
||
|
#define PARALLAX_BIAS -0.02
|
||
|
|
||
|
vec2 getParallaxOffset(vec3 eyeDir, mat3 tbn, float height)
|
||
|
{
|
||
|
vec3 TSeyeDir = normalize((vec4(normalize(tbn * eyeDir),0)).xyz);
|
||
|
return TSeyeDir.xy * ( height * PARALLAX_SCALE + PARALLAX_BIAS );
|
||
|
}
|