Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/afonsolage/craft-world
CraftWorld game development project
https://github.com/afonsolage/craft-world
Last synced: about 1 month ago
JSON representation
CraftWorld game development project
- Host: GitHub
- URL: https://github.com/afonsolage/craft-world
- Owner: afonsolage
- Created: 2020-07-10T15:27:51.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-24T22:40:23.000Z (over 4 years ago)
- Last Synced: 2024-12-07T23:43:30.709Z (about 1 month ago)
- Language: Rust
- Size: 458 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# craft-world
## 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"
```