- Unity 2021.2
- VFX Graph
- HDRP
- Enable Eperimental Operators/Blocks (Edit > Preferences > Visual Effects)
VoxToVFX allows you to import a MagicaVoxel project into Unity using the new VFX Graph. No mesh is created, so the import process for huge world is very quick ! All voxels are particles rendered on the GPU. It support also world regions of MagicaVoxel so you can import world bigger than 126^3.
You need to convert first your vox file at the runtime. This conversion step is very quick and it convert your files into different chunks with 3 levels of details. Once your model is converted, a .zip file is created: it contains all the chunks data.
Then you can import the data.
I made a fork of the Visual Effect Graph to be able to use more than 16 contexts since it's not possible to use per-particle sub-mesh mask.
The modification is in the file "[email protected]\Editor\Data\VFXData.cs" line 400 :
if (contextCount > 16) throw new InvalidOperationException(string.Format("Too many contexts that use particle data {0} > 16", contextCount));
Change 16 to 32
- Add support for cloud material
- Add support for realtime raytracing (will need Unity 2022.2 in the future)