Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/eyzi/bevy-study
- Owner: eyzi
- License: mit
- Created: 2022-10-21T08:09:01.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-29T01:48:27.000Z (about 2 years ago)
- Last Synced: 2024-10-15T07:28:37.537Z (2 months ago)
- Topics: bevy, game-development, rust
- Language: Rust
- Homepage:
- Size: 8.19 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)