Tweaked ClipMap

This commit is contained in:
Josef 2025-03-27 19:31:02 +01:00
parent 560668edf8
commit 74e78d9d83
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ vec3 heightMapDirection( sampler2D terrain, vec2 terrainUV, vec2 kernelSize, flo
float hD = texture( terrain, terrainUV - vec2( 0, kernelSize.y ) ).r * normalScale;
float hU = texture( terrain, terrainUV + vec2( 0, kernelSize.y ) ).r * normalScale;
return vec3( hL - hR, hD - hU, 2.0 );
return vec3( hL - hR, 2.0, hD - hU );
}
vec3 heightMapNormal( sampler2D terrain, vec2 terrainUV, vec2 kernelSize, float normalScale )