Conway's Game Of Life!

So, apparently this has been done a few times, but here’s my simulator for Conway’s Game of Life!

If you don’t know what Conway’s Game of Life, then here are the rules:

  • If a living cell has less than two or more than 3 living neighbors, then that cell will die.
  • If a living cell has 2-3 living neighbors, then the cell will stay alive.
  • If a dead cell has exactly 3 living neighbors, then that cell will come back to life.

If you want more information, here’s a link to a wiki about the “game”:

9 Likes

Yo this is actually sick
making it mouse compatible is really cool

1 Like

It should also be comparable with hardware.

1 Like

NEW UPDATE.
I have slightly updated this project and made it so that there are slight improvements to things such as the pause menu and the non-mouse controls for the cursor. Here’s the updated project:

1 Like