Kubi

Voxel engine written in Rust

features

download

Latest nightly release

building

build/run ```sh cargo build -p kubi cargo run -p kubi ``` build with nightly features ```sh RUSTFLAGS="-C target-cpu=native" cargo +nightly build -p kubi -r --features nightly -- ```

mutiplayer

to join a multiplayer server, just pass the ip address as an argument ```sh cargo run -p kubi -- 127.0.0.1:1234 ```

server configuration

``` [server] address = "0.0.0.0:12345" # ip address to bind to max_clients = 32 # max amount of connected clients timeout_ms = 10000 # client timeout in ms [world] seed = 0xfeb_face_dead_cafe # worldgen seed to use [query] name = "Kubi Server" # server name ```
~ uwu