From 669a0356e0fe4513fe000dd23772d4b842e1ce36 Mon Sep 17 00:00:00 2001 From: neru <152752583+neeeruuu@users.noreply.github.com> Date: Fri, 2 Jan 2026 03:38:19 -0300 Subject: [PATCH] style: reduce curve strength --- src/app/shaders/grass.vert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/shaders/grass.vert b/src/app/shaders/grass.vert index 7ba8b3e..f53a2c3 100644 --- a/src/app/shaders/grass.vert +++ b/src/app/shaders/grass.vert @@ -24,7 +24,7 @@ float taper = 1.0 - taperFactor * 0.6; // Width goes from 1.0 to 0.4 at tip transformed.x *= taper; transformed.z *= taper; -float curveStrength = 5.0 + noiseVal * 2.0; +float curveStrength = 3.0 + noiseVal * 2.0; float curveAmount = uv.y * uv.y * curveStrength; vec2 curveDir = normalize(vec2(noiseVal, fbm(vec2(worldZ, worldX))) - 0.5); // Randomize curve direction