Skip to content

zakorgy/voxel-editor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

voxel-editor

A cross-platform simple voxel editor written is rust, using wgpu-rs. The UI elements are composed with the iced-wgpu wrapper

Example image Example image

Install dependecies

Install Rustup

Download and install rustup from https://rustup.rs/

You can test it with:

rustc -V

Linux dependency

Install Linux gtk dependency

sudo apt update && sudo apt install libgtk-3-dev

Windows build fix

Before building, first you need to fix an issue with the following command:

cargo update -p error-code --precise 2.0.0

Build and Run

You can build the project with:

cargo build --release

You can run the application with:

cargo run --release

Development

You can build the app with "--debug" to get better backtrace.

You can run the tests with

cargo test