mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-16 17:31:24 +01:00
Added 100k to 1M cells in options.js and index.html
This commit is contained in:
parent
c85db3b3e1
commit
fecbae826c
2 changed files with 11 additions and 4 deletions
|
|
@ -1564,7 +1564,7 @@
|
|||
data-stored="points"
|
||||
type="range"
|
||||
min="1"
|
||||
max="13"
|
||||
max="20"
|
||||
value="4"
|
||||
data-cells="10000"
|
||||
/>
|
||||
|
|
@ -5807,7 +5807,7 @@
|
|||
<div data-tip="Set points (cells) number of the submap" style="display: flex; gap: 1em">
|
||||
<div>Points number</div>
|
||||
<div>
|
||||
<input id="submapPointsInput" type="range" min="1" max="13" value="4" />
|
||||
<input id="submapPointsInput" type="range" min="1" max="20" value="4" />
|
||||
<output id="submapPointsFormatted" style="color: #053305">10K</output>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -5838,7 +5838,7 @@
|
|||
>
|
||||
<div>Points number</div>
|
||||
<div>
|
||||
<input id="transformPointsInput" type="range" min="1" max="13" value="4" />
|
||||
<input id="transformPointsInput" type="range" min="1" max="20" value="4" />
|
||||
<output id="transformPointsFormatted" style="color: #053305">10K</output>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -327,7 +327,14 @@ const cellsDensityMap = {
|
|||
10: 70000,
|
||||
11: 80000,
|
||||
12: 90000,
|
||||
13: 100000
|
||||
13: 100000,
|
||||
14: 150000,
|
||||
15: 200000,
|
||||
16: 300000,
|
||||
17: 400000,
|
||||
18: 500000,
|
||||
19: 750000,
|
||||
20: 1000000
|
||||
};
|
||||
|
||||
function changeCellsDensity(value) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue