grid size change

This commit is contained in:
MaxRobinsonTheGreat
2020-07-22 16:13:18 -06:00
parent f0e725a8fa
commit 4ac9a3fb67
3 changed files with 3 additions and 3 deletions

2
dist/bundle.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -28,7 +28,7 @@
<br>
<h3>Grid Size</h3>
<label for="cell-size">Cell Size:</label>
<input type="number" id="cell-size" min="1" max="100" value=3 step="1">
<input type="number" id="cell-size" min="1" max="100" value=4 step="1">
<label for="fill-window">Fill Window</label>
<input type="checkbox" id="fill-window" checked>
<div class='col-row-input'>

View File

@@ -7,7 +7,7 @@ const render_speed = 60;
class Engine{
constructor(){
this.fps = 60;
this.env = new Environment(3);
this.env = new Environment(4);
this.organism_editor = new OrganismEditor();
this.controlpanel = new ControlPanel(this);
this.env.OriginOfLife();