Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eyzi/bevy-study

a dummy's game dev study with rust and bevy
https://github.com/eyzi/bevy-study

bevy game-development rust

Last synced: 25 days ago
JSON representation

a dummy's game dev study with rust and bevy

Awesome Lists containing this project

README

        

# Bevy Study

a dummy's attempt at making games in rust using bevy

## Usage
```
cargo run --example
```

If you have [cargo-cmd](https://crates.io/crates/cargo-cmd) and
[cargo-watch](https://crates.io/crates/cargo-watch) installed, the
following commands are available:
```sh
# running with hotreload. alias for
# "cargo watch -i assets -i target -- cargo run --example "
cargo cmd run

# building for release. alias for
# "cargo build --release --example "
cargo cmd build
```

## Game List
- [space-invader](https://github.com/eyzi/bevy-study/tree/main/examples/space-invaders)
- [snake](https://github.com/eyzi/bevy-study/tree/main/examples/snake)
- [minesweeper (unfinished)](https://github.com/eyzi/bevy-study/tree/main/examples/minesweeper)
- [tetris](https://github.com/eyzi/bevy-study/tree/main/examples/tetris)
- [chess (unfinished)](https://github.com/eyzi/bevy-study/tree/main/examples/chess)
- [rpg (unfinished)](https://github.com/eyzi/bevy-study/tree/main/examples/rpg)
- [vn](https://github.com/eyzi/bevy-study/tree/main/examples/vn)