Tool for converting .vox files to other useful formats
npm install voxel-toy
npm install -g voxel-toy
`
Don't have NodeJS or NPM? Get it here: https://nodejs.org
Usage
$3
`
vox -f /path/to/file.vox
`
$3
Once the .t3d file has been generated, open the file in a text editor and copy the entire contents. Open UE4 and paste the contents into the scene editor. Your voxel model will now be converted into UE4 BSPs/brushes/geometry.
Options
-c, --compress Merge individual voxels into larger blocks where possible
-f, --file The path to the .vox file
-s, --size The size of each individual voxel in UE4 units
Example:
vox -f /path/to/file.vox -s 200 -c true
Development
$3
`
git clone https://github.com/bberak/voxel-toy
cd voxel-toy
npm install
node src/index.js
`
$3
Install pkg globally:
`
npm install -g pkg
`
Create a MacOS executable:
`
pkg -t node8-macos-x64 -o vox .
`
Create a Windows executable:
`
pkg -t node8-win-x64 -o vox .
``