You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
261 B
Plaintext
9 lines
261 B
Plaintext
9 years ago
|
#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 );
|
||
|
}
|