heightmap selection - refactor, make generation immutable to get predictable result

This commit is contained in:
Azgaar 2022-05-29 22:11:32 +03:00 committed by Peter
parent 8ea89111fc
commit b6a1012753
4 changed files with 18 additions and 4 deletions

View file

@ -510,7 +510,6 @@ window.HeightmapGenerator = (function () {
const powered = lightness < 0.2 ? lightness : 0.2 + (lightness - 0.2) ** 0.8;
heights[i] = minmax(Math.floor(powered * 100), 0, 100);
}
return heights;
}
return {