Chane size of simulation grid.

This commit is contained in:
2019-03-19 06:47:28 +01:00
parent 046c089100
commit 3e29624fdb

View File

@@ -60,8 +60,8 @@ CellAutomata.prototype = {
this.Tick();
},
Init: function () {
this.CellsWidth = 200;
this.CellsHeight = 100;
this.CellsWidth = 400;
this.CellsHeight = 200;
this.Cells = this.CreateGrid(this.CellsWidth, this.CellsHeight, function (x, y) { return false; });
this.CellsNext = this.CreateGrid(this.CellsWidth, this.CellsHeight, function (x, y) { return false; });