Game of Life
Jun 30, 2022
Conway’s game of life : wiki article
This game is driven by simple rules and by applying those rules to the current generation we produce the next generation.
- Any live cell with fewer than two live neighbours dies, as if by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
It is build with using PixiJS web renderer and Typescript