https://github.com/learningbyexample/rust-pong
amethyst pong tutorial
https://github.com/learningbyexample/rust-pong
Last synced: 4 months ago
JSON representation
amethyst pong tutorial
- Host: GitHub
- URL: https://github.com/learningbyexample/rust-pong
- Owner: LearningByExample
- Created: 2020-07-09T07:11:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-16T16:47:01.000Z (over 5 years ago)
- Last Synced: 2025-03-15T10:30:21.579Z (10 months ago)
- Language: Rust
- Size: 5.67 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust-pong
Amethyst Pong Tutorial
## Info
This project follows the Amethyst pong tutorial :
https://book.amethyst.rs/master/pong-tutorial.html
## How to run
To run the game, run the following command, which defaults to the `vulkan` graphics backend:
```bash
cargo run
```
Windows and Linux users may explicitly choose `"vulkan"` with the following command:
```bash
cargo run --no-default-features --features "vulkan"
```
Mac OS X users may explicitly choose `"metal"` with the following command:
```bash
cargo run --no-default-features --features "metal"
```