Shadertoy-Shaders/Game-of-Life-3D/README.md

10 lines
400 B
Markdown

# John Conway's Game of Life: 3D
Multipass GPU implementation of the famous Game of Life. But in 3D!
The rules of this 3D version are as follows:
A cell lives if:
- it is alive and either 5 or 6 neighboors are alive
- or it has 4 alive neighboors
otherwise the cell dies.
![overview.png](https://git.teridax.de/teridax/Shadertoy-Shaders/raw/branch/main/John-Conway's-Game-of-Life:2D/overview.png)