Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nixon-voxell/lumina
A top down fast paced objective based PvPvE game.
https://github.com/nixon-voxell/lumina
Last synced: about 2 months ago
JSON representation
A top down fast paced objective based PvPvE game.
- Host: GitHub
- URL: https://github.com/nixon-voxell/lumina
- Owner: nixon-voxell
- Created: 2024-08-12T17:55:18.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T02:21:51.000Z (about 2 months ago)
- Last Synced: 2024-11-05T03:22:53.612Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 7.84 MB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lumina
A top down fast paced objective based PvPvE game.
## Quickstart
To compile Lumina, you have to perform a recursive clone:
```
git clone --recursive https://github.com/nixon-voxell/lumina.git
```### Run the game
To run the game, you need to start the server and the client.
You can do so manually using:```
cargo run --bin lumina_server
cargo run --bin lumina_client
```For development purposes, a shell script has been created to speed things up:
#### Windows
```
run.bat x
```With `x` being the number of clients you want to spawn.
### Test Bed
To improve development time, the `crates/test_bed/examples` folder is used to create mini test cases with minimal compilation time. Run a test example using the following command:
```
cargo run --example test_name
```With `test_name` being the name of your testing example.