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

12 lines
524 B
Markdown
Raw Normal View History

2023-06-16 21:08:05 +00:00
# John Conway's Game of Life: 3D
2024-03-02 13:34:46 +00:00
![Game of Life 3D](https://git.montehaselino.de/servostar/Shadertoy-Shaders/raw/branch/main/Game-of-Life-3D/overview.png)
2023-06-16 21:14:37 +00:00
2023-06-16 21:08:05 +00:00
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.
2024-03-02 13:34:46 +00:00
[Watch video preview](https://git.montehaselino.de/servostar/Shadertoy-Shaders/raw/branch/main/Game-of-Life-3D/overview.webm)