mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-23 12:31:24 +01:00
update height model and scale parameters
This commit is contained in:
parent
d6d292f5bd
commit
5084e831f9
3 changed files with 4 additions and 3 deletions
|
|
@ -74,7 +74,7 @@ window.Submap = (function () {
|
|||
// raise every land cell a bit except riverbeds
|
||||
grid.cells.h.forEach((h, i) => {
|
||||
if (!rbeds[i] || grid.cells.t[i]<1) return;
|
||||
grid.cells.h[i] = Math.min(grid.cells.h[i] * 1.1, 255);
|
||||
grid.cells.h[i] = Math.min(grid.cells.h[i]+2, 100);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue