mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 01:41:22 +01:00
feat: Update compass layer and rose element id for v1.98.00
This commit is contained in:
parent
e4f2de6472
commit
fc7ef72628
20 changed files with 157 additions and 122 deletions
5
main.js
5
main.js
|
|
@ -53,7 +53,7 @@ let biomes = viewbox.append("g").attr("id", "biomes");
|
|||
let cells = viewbox.append("g").attr("id", "cells");
|
||||
let gridOverlay = viewbox.append("g").attr("id", "gridOverlay");
|
||||
let coordinates = viewbox.append("g").attr("id", "coordinates");
|
||||
let compass = viewbox.append("g").attr("id", "compass");
|
||||
let compass = viewbox.append("g").attr("id", "compass").style("display", "none");
|
||||
let rivers = viewbox.append("g").attr("id", "rivers");
|
||||
let terrain = viewbox.append("g").attr("id", "terrain");
|
||||
let relig = viewbox.append("g").attr("id", "relig");
|
||||
|
|
@ -126,6 +126,9 @@ emblems.append("g").attr("id", "burgEmblems");
|
|||
emblems.append("g").attr("id", "provinceEmblems");
|
||||
emblems.append("g").attr("id", "stateEmblems");
|
||||
|
||||
// compass
|
||||
compass.append("use").attr("xlink:href", "#defs-compass-rose");
|
||||
|
||||
// fogging
|
||||
fogging.append("rect").attr("x", 0).attr("y", 0).attr("width", "100%").attr("height", "100%");
|
||||
fogging
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue