12 lines
524 B
Markdown
12 lines
524 B
Markdown
# John Conway's Game of Life: 3D
|
|
![Game of Life 3D](https://git.montehaselino.de/servostar/Shadertoy-Shaders/raw/branch/main/Game-of-Life-3D/overview.png)
|
|
|
|
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.
|
|
|
|
[Watch video preview](https://git.montehaselino.de/servostar/Shadertoy-Shaders/raw/branch/main/Game-of-Life-3D/overview.webm)
|