diff --git a/src/utils/plane_desert.js b/src/utils/plane_desert.js index 3c05a4e..5e1755a 100644 --- a/src/utils/plane_desert.js +++ b/src/utils/plane_desert.js @@ -64,7 +64,7 @@ const createDesertTerrain = () => { let n = perlin.noise(v2.x, v2.y, 0.314) n = Math.abs(n) n = Math.pow(n, 3) - position.setY(i, Math.min(n * 35, 10)) + position.setY(i, Math.min(n * 35, 1)) } plane.computeVertexNormals()