diff --git a/README.md b/README.md new file mode 100644 index 0000000..c651316 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Game Of LIFE + +An isometric JavaScript implementation of Game Of Life. + +[Demo](http://play.dalehurwitz.com/gameoflife/) - Refresh page to generate a new game + +### TODO + +* Allow drawing to board +* Speed controls diff --git a/main.js b/main.js index 3ad2cae..928faed 100644 --- a/main.js +++ b/main.js @@ -260,7 +260,7 @@ init: function() { this.generateGliderGun(); //curCellMap = this.generateGliderGun(); - curCellMap = this.generateRandomMap(0.075); + curCellMap = this.generateRandomMap(0.095); //curCellMap = this.generateTestMap(); nextCellMap = this.generateEmptyMap(); },