refactor: adjust mountain frequency

This commit is contained in:
2026-04-27 15:26:49 +08:00
parent 932c11a646
commit dc3be5a4bc
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ constexpr float FREQ1_MIN = 0.001f;
constexpr float FREQ1_MAX = 0.020f; constexpr float FREQ1_MAX = 0.020f;
constexpr float FREQ2_MIN = 0.005f; constexpr float FREQ2_MIN = 0.005f;
constexpr float FREQ2_MAX = 0.050f; constexpr float FREQ2_MAX = 0.050f;
constexpr float FREQ3_MIN = 0.010f; constexpr float FREQ3_MIN = 0.005f;
constexpr float FREQ3_MAX = 0.080f; constexpr float FREQ3_MAX = 0.080f;
constexpr int HEIGHT_BASE_MIN = 50; constexpr int HEIGHT_BASE_MIN = 50;
constexpr int HEIGHT_BASE_MAX = 175; constexpr int HEIGHT_BASE_MAX = 175;

View File

@@ -45,7 +45,7 @@ static MountainParams mountain {
Biome::MOUNTAIN, Biome::MOUNTAIN,
{0.0f, 0.5f}, {0.0f, 0.5f},
{0.5f, 1.0f}, {0.5f, 1.0f},
{0.006f, 0.015f, 0.030f}, {0.006f, 0.014f, 0.010f},
{70, 70} {70, 70}
} }
}; };