https://github.com/azriel91/autexousious
Main repository for Will -- 2.5D moddable action adventure game
https://github.com/azriel91/autexousious
gamedev indiegame rust
Last synced: 7 months ago
JSON representation
Main repository for Will -- 2.5D moddable action adventure game
- Host: GitHub
- URL: https://github.com/azriel91/autexousious
- Owner: azriel91
- License: apache-2.0
- Created: 2020-03-12T09:27:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-18T22:42:51.000Z (over 3 years ago)
- Last Synced: 2025-03-18T05:51:16.128Z (7 months ago)
- Topics: gamedev, indiegame, rust
- Language: Rust
- Homepage: https://azriel.im/will
- Size: 8.48 MB
- Stars: 45
- Watchers: 5
- Forks: 3
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Autexousious


Repository for the game *Will*, and supporting applications. These include:
* **Will:** 2.5D moddable action / adventure game.
* **Session Server:** Server to coordinate online play.## Development
The applications in this repository are built on the [Amethyst game engine](https://github.com/amethyst/amethyst).
### Setup
1. Install [Rust](https://rustup.rs/).
2. Install [system dependencies](https://github.com/amethyst/amethyst#dependencies).
3. Clone this repository and the asset repository.```bash
git clone git@github.com:azriel91/autexousious.git
cd autexousious
mkdir assets
git clone git@github.com:azriel91/will_assets.git assets/default
```### Ongoing
* Running applications:
```bash
# Will
cargo run --bin will --release
cargo run --bin will --release -- --session_server_address 127.0.0.1# Session server
cargo run --bin session_server --release -- --address 127.0.0.1
```* Running tests:
```bash
# quieten output
export AMETHYST_LOG_LEVEL_FILTER=WARNcargo test --workspace --tests -- --no-capture
```## License
Licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)at your option.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally
submitted for inclusion in the work by you, as defined in the Apache-2.0
license, shall be dual licensed as above, without any additional terms or
conditions.