Added evolved birth distance

This commit is contained in:
MaxRobinsonTheGreat
2020-08-03 18:22:45 -06:00
parent add3872423
commit 310fc39216
6 changed files with 331 additions and 8 deletions

6
dist/css/style.css vendored
View File

@@ -163,9 +163,9 @@ button:hover{
}
#editor-env {
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
height: 195px;
width: 195px;
}

10
dist/index.html vendored
View File

@@ -115,7 +115,15 @@
<div class='cell-type' id='armor' title="Armor: Negates affects of killer cell."></div>
<button id='clear-editor'>Clear</button>
</div>
<p id='editor-cell-count'>1 cell</p>
<div id='editor-details'>
<div id='organism-details'>
<p id='editor-cell-count'>1 cell</p>
</div>
<div id='organism-options'>
<label for="birth-distance" title='The number of cells away offspring will spawn.'>Reproduction Distance:</label>
<input type="number" id="birth-distance" min="1" max="100" value=3 step="1">
</div>
</div>
</div>
</div>
<div id='hyperparameters' class='tab'>

300
dist/js/bundle.js vendored

File diff suppressed because one or more lines are too long