Voxel engine written in Rust (backup/mirror)
Go to file
2023-05-20 16:43:00 +02:00
.cargo update workflow/cargo config 2023-05-16 23:33:17 +02:00
.github/workflows Oops, checkout already skips tag creation... 2023-05-19 03:51:32 +02:00
.readme fix builds with nightly, update readme 2023-05-16 13:42:55 +02:00
.vscode
assets/blocks
kubi add some android metadata 2023-05-20 16:43:00 +02:00
kubi-logging
kubi-server minor changes to netwrok code 2023-05-20 15:17:16 +02:00
kubi-shared Big refactor + Early wip position sync /connect events in multiplayer 2023-05-19 07:02:20 +02:00
.gitignore
Cargo.lock player position sync, refactor some stuff 2023-05-20 02:32:32 +02:00
Cargo.toml player position sync, refactor some stuff 2023-05-20 02:32:32 +02:00
README.md Update README.md 2023-05-18 06:09:19 +03:00
Server.toml Finish upgrading server to uflow 2023-03-09 03:30:37 +01:00

Kubi

Voxel engine written in Rust

features

  • multithreaded procedural world generation
  • procedural structures
  • multithreaded mesh generation
  • cubic chunks (32x32x32)
  • low-level OpenGL renderer, targetting OpenGL ES 3.0
  • frustum culling
  • work-in-progress multiplayer support
  • block placement system
  • partial gamepad input support

download

Latest nightly release

building

build/run

cargo build -p kubi
cargo run -p kubi

build with nightly features

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

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