From 2707748843d53cbf41d0c5eb9b5fccd3d3928f86 Mon Sep 17 00:00:00 2001 From: zhenyan121 <3367366583@qq.com> Date: Thu, 23 Apr 2026 15:40:40 +0800 Subject: [PATCH] refactor: increase BLEND_RADIUS to 12 --- src/gameplay/chunk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gameplay/chunk.cpp b/src/gameplay/chunk.cpp index fa2c014..9e6e225 100644 --- a/src/gameplay/chunk.cpp +++ b/src/gameplay/chunk.cpp @@ -265,7 +265,7 @@ void Chunk::gen_phase_three() { void Chunk::gen_phase_four(const std::array, 4>& neighbor_heightmap) { // Width of interpolation influence (in number of cells) - constexpr int BLEND_RADIUS = 8; + constexpr int BLEND_RADIUS = 12; for (int x = 0; x < SIZE_X; x++) { for (int z = 0; z < SIZE_Z; z++) {