2023-06-16 21:08:05 +00:00
|
|
|
# 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.
|
|
|
|
|
2023-06-16 21:12:09 +00:00
|
|
|
[overview.png](https://git.teridax.de/teridax/Shadertoy-Shaders/raw/branch/main/Game-of-Life-3D/overview.webm)
|