3D Cellular Automata (Conway's Game of Life) Simulation

Rules:

The rules are based on the original Game of Life rules with some modifications. The rules are as follows

  • Any live cell with not {4} live neighbors dies, as if by underpopulation or overpopulation.
  • Any live cell with {4} live neighbors lives on to the next generation.
  • Any dead cell with {4} live neighbors becomes a live cell, by reproduction.
  • A cell when dying takes 5 steps to die. Only then it will be considered dead.
Steps: 0