Conway's Game of Life
A downloadable Conway's Game of Life for Windows, macOS, and Linux
*Sorry, Unity WebGL only supports C/C++ Multithreading
Conway's Game of Life is a cellular automaton, a mathematical game that simulates the evolution of cells on a grid. It was devised by mathematician John Conway in 1970 and has gained popularity due to its simplicity and ability to create complex patterns from straightforward rules.
Basics of the Game:
- Grid: The game is played on a grid of square cells, which can be thought of as a two-dimensional universe.
- Cells: Each cell can either be alive or dead. This state is determined by its surroundings and evolves over generations.
Rules:
The evolution of cells from one generation to the next is governed by simple rules
- Underpopulation: If a live cell has fewer than two live neighbors, it dies due to underpopulation.
- Survival: If a live cell has two or three live neighbors, it survives to the next generation.
- Overpopulation: If a live cell has more than three live neighbors, it dies due to overpopulation.
- Reproduction: If a dead cell has exactly three live neighbors, it becomes a live cell due to reproduction.
How to play:
Use your right mouse to place a cell.
Status | Released |
Platforms | Windows, macOS, Linux |
Rating | Rated 5.0 out of 5 stars (1 total ratings) |
Author | MOKI Studio |
Genre | Simulation |
Tags | Experimental, Indie, john-conway, Life Simulation, Math, Procedural Generation, Singleplayer, Unity |
Download
Download
Game of Life.zip 26 MB
Install instructions
Don't forget to EXTRACT
Development log
- Conway's Game of LifeDec 11, 2023
Comments
Log in with itch.io to leave a comment.
Nice sim