2.1.2 • Published 2 years ago

vox-reader v2.1.2

Weekly downloads
5
License
MIT
Repository
github
Last release
2 years ago

vox-reader

npm module for reading .vox files which can be exported in MagickaVoxel. It's the inverse function to vox-saver.js

💾 Installation

npm install --save vox-reader

🚀 Usage

const fs = require('fs');
const readVox = require('vox-reader');

fs.readFile('my-voxel-art.vox', (error, buffer) =>
{
 if (error) throw error;

 console.log(readVox(buffer));
});

📖 License

(c) 2019 Florian Fechner. MIT License

2.1.2

2 years ago

2.1.1

2 years ago

2.1.0

2 years ago

2.0.3

5 years ago

2.0.2

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.0.0

6 years ago