heightmap-generation: redefine cells effect, more land on higher values

This commit is contained in:
Azgaar 2022-05-29 23:16:08 +03:00
parent 662163176b
commit 10b54a71b1

View file

@ -91,33 +91,33 @@ window.HeightmapGenerator = (function () {
const blobPowerMap = { const blobPowerMap = {
1000: 0.93, 1000: 0.93,
2000: 0.95, 2000: 0.95,
5000: 0.96, 5000: 0.97,
10000: 0.98, 10000: 0.98,
20000: 0.985, 20000: 0.99,
30000: 0.987, 30000: 0.991,
40000: 0.9892, 40000: 0.993,
50000: 0.9911, 50000: 0.994,
60000: 0.9921, 60000: 0.995,
70000: 0.9934, 70000: 0.9955,
80000: 0.9942, 80000: 0.996,
90000: 0.9946, 90000: 0.9964,
100000: 0.995 100000: 0.9973
}; };
return blobPowerMap[cells] || 0.98; return blobPowerMap[cells] || 0.98;
} }
function getLinePower() { function getLinePower() {
const linePowerMap = { const linePowerMap = {
1000: 0.74, 1000: 0.75,
2000: 0.75, 2000: 0.77,
5000: 0.78, 5000: 0.79,
10000: 0.81, 10000: 0.81,
20000: 0.82, 20000: 0.82,
30000: 0.83, 30000: 0.83,
40000: 0.84, 40000: 0.84,
50000: 0.855, 50000: 0.86,
60000: 0.87, 60000: 0.87,
70000: 0.885, 70000: 0.88,
80000: 0.91, 80000: 0.91,
90000: 0.92, 90000: 0.92,
100000: 0.93 100000: 0.93