8061ce0ea4
* Reorganize dependencies * Enable logging in the minimal-winit example * Fix a very minor bug in the minimal-winit example
18 lines
374 B
Markdown
18 lines
374 B
Markdown
# Conway's Game of Life
|
|
|
|
![Conway's Game of Life](../../img/conway.png)
|
|
|
|
## Running
|
|
|
|
```bash
|
|
cargo run --release --example conway --features conway
|
|
```
|
|
|
|
## Controls
|
|
|
|
- Mouse: Left click toggles cells, dragging draws lines.
|
|
- <kbd>P</kbd>: Toggle pause.
|
|
- <kbd>space</kbd>: Frame step (enables pause if not already paused)
|
|
- <kbd>R</kbd>: Randomize
|
|
- <kbd>escape</kbd>: Quit
|