mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-18 18:11:24 +01:00
fix: bug fixes, 3d mode controls change to MapContol
This commit is contained in:
parent
07d0729cfc
commit
34b880e10f
19 changed files with 398 additions and 182 deletions
|
|
@ -238,6 +238,7 @@ function editHeightmap(options) {
|
|||
}
|
||||
|
||||
Biomes.define();
|
||||
Features.defineGroups();
|
||||
|
||||
rankCells();
|
||||
Cultures.generate();
|
||||
|
|
@ -256,7 +257,7 @@ function editHeightmap(options) {
|
|||
Provinces.getPoles();
|
||||
|
||||
Rivers.specify();
|
||||
Features.specify();
|
||||
Lakes.defineNames();
|
||||
|
||||
Military.generate();
|
||||
Markers.generate();
|
||||
|
|
@ -345,7 +346,10 @@ function editHeightmap(options) {
|
|||
reGraph();
|
||||
Features.markupPack();
|
||||
|
||||
if (erosionAllowed) Rivers.generate(true);
|
||||
if (erosionAllowed) {
|
||||
Rivers.generate(true);
|
||||
Features.defineGroups();
|
||||
}
|
||||
|
||||
// assign saved pack data from grid back to pack
|
||||
const n = pack.cells.i.length;
|
||||
|
|
@ -439,7 +443,7 @@ function editHeightmap(options) {
|
|||
|
||||
if (erosionAllowed) {
|
||||
Rivers.specify();
|
||||
Features.specify();
|
||||
Lakes.defineNames();
|
||||
}
|
||||
|
||||
// restore zones from grid
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue