Source code for the Bevy Minesweeper Tutorial by Félix de Maneville:
- Introduction
- Project Setup
- Tile Map Generation
- Spawning the board
- Tiles and Components
- Interaction and the board resource
- Covering and Uncovering tiles
- Placing a safe start
- Generic states
- Board dynamic themes
- Gameplay completion
- WASM support
A browser version is available here
use cargo run
to launch the app in native. Use the debug
feature for debug inspector and board console output.
- Native:
cargo serve --release
and openhttp://127.0.0.1:1334
- Browser:
./build_wasm.sh
and openpublic/index.html
in a browser
Use the left mouse button to uncover tiles, and the right mouse button to mark tiles.
You can also Clear the board and Generate a new one.