From 29443dfbd4b3ecbe5d0cae654e9cb72555b17220 Mon Sep 17 00:00:00 2001 From: yum Date: Tue, 17 Mar 2026 16:40:05 -0700 Subject: Clean up marble code --- math.cginc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'math.cginc') diff --git a/math.cginc b/math.cginc index 5803be5..fa38553 100755 --- a/math.cginc +++ b/math.cginc @@ -166,7 +166,8 @@ float3 domain_warp_procedural(float3 uvw, float strength, float g = 1; for (uint ii = 0; ii < octaves; ++ii) { - noise += value_noise3(uvw + noise * strength) * g; + float3 vnoise = value_noise3(uvw + (noise * 2.0 - 1.0) * strength); + noise += vnoise * g; uvw *= lacunarity; g *= gain; } -- cgit v1.2.3