A cross-platform simple voxel editor written is rust, using wgpu-rs. The UI elements are composed with the iced-wgpu wrapper
Download and install rustup from https://rustup.rs/
You can test it with:
rustc -VInstall Linux gtk dependency
sudo apt update && sudo apt install libgtk-3-devBefore building, first you need to fix an issue with the following command:
cargo update -p error-code --precise 2.0.0You can build the project with:
cargo build --releaseYou can run the application with:
cargo run --releaseYou can build the app with "--debug" to get better backtrace.
You can run the tests with
cargo test