From 74e78d9d8365a0b1e89f73e2c298c41ef337b545 Mon Sep 17 00:00:00 2001 From: Josef Date: Thu, 27 Mar 2025 19:31:02 +0100 Subject: [PATCH] Tweaked ClipMap --- Runtime/Shading/Library/Textures.gdshaderinc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/Shading/Library/Textures.gdshaderinc b/Runtime/Shading/Library/Textures.gdshaderinc index 04a3506..8d7222b 100644 --- a/Runtime/Shading/Library/Textures.gdshaderinc +++ b/Runtime/Shading/Library/Textures.gdshaderinc @@ -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 )