mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-18 10:01:23 +01:00
added topography
This commit is contained in:
parent
21df872ca2
commit
2c3692f000
5 changed files with 151 additions and 1 deletions
3
main.js
3
main.js
|
|
@ -50,6 +50,7 @@ let lakes = viewbox.append("g").attr("id", "lakes");
|
|||
let landmass = viewbox.append("g").attr("id", "landmass");
|
||||
let texture = viewbox.append("g").attr("id", "texture");
|
||||
let terrs = viewbox.append("g").attr("id", "terrs");
|
||||
let topography = viewbox.append("g").attr("id", "topography");
|
||||
let biomes = viewbox.append("g").attr("id", "biomes");
|
||||
let cells = viewbox.append("g").attr("id", "cells");
|
||||
let gridOverlay = viewbox.append("g").attr("id", "gridOverlay");
|
||||
|
|
@ -249,7 +250,7 @@ document.addEventListener("DOMContentLoaded", async () => {
|
|||
hideLoading();
|
||||
await checkLoadParameters();
|
||||
}
|
||||
restoreDefaultEvents; // apply default viewbox events
|
||||
restoreDefaultEvents(); // apply default viewbox events
|
||||
initiateAutosave();
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue