Skip to content

Commit

Permalink
Add readme, adjust random map ratio
Browse files Browse the repository at this point in the history
  • Loading branch information
Dale Hurwitz committed Oct 18, 2016
1 parent b00cac5 commit 3c885c5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
},
Expand Down

0 comments on commit 3c885c5

Please sign in to comment.