mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-22 03:51:23 +01:00
expanded cell density range, added spread customization option
This commit is contained in:
parent
f5c507a94b
commit
240c77ebf2
2 changed files with 23 additions and 2 deletions
12
index.html
12
index.html
|
|
@ -385,12 +385,22 @@
|
|||
<td></td>
|
||||
<td onmouseover="tip('Cells density controls underlying graph size and hightly affects performance')">Map cells density</td>
|
||||
<td>
|
||||
<input id="sizeInput" type="range" min="1" max="3" value="1">
|
||||
<input id="sizeInput" type="range" min="0.3" max="3" step="0.1" value="1">
|
||||
</td>
|
||||
<td>
|
||||
<output id="sizeOutput">1</output>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td onmouseover="tip('Cells spread distance')">Spread distance</td>
|
||||
<td>
|
||||
<input id="cellsSpreadInput" type="range" min="0.5" max="2" step="0.1" value="1">
|
||||
</td>
|
||||
<td>
|
||||
<output id="cellsSpreadOutput">1</output>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<i onmouseover="tip('Lock to restrict option randomization on new map generation')" data-locked=0 id="lockTemplateInput" class="icon-lock-open"></i>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue