Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcusbuffett/spell-creator
Just messing around with amethyst game engine
https://github.com/marcusbuffett/spell-creator
Last synced: 25 days ago
JSON representation
Just messing around with amethyst game engine
- Host: GitHub
- URL: https://github.com/marcusbuffett/spell-creator
- Owner: marcusbuffett
- Created: 2020-05-09T04:47:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-09T04:47:37.000Z (over 4 years ago)
- Last Synced: 2024-05-01T13:08:28.265Z (8 months ago)
- Language: Rust
- Size: 25.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spell-creator
## 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"
```