Voxelise mesh preview #58
-
I find that the result that the voxelise mesh preview gives looks much better than the final result with Minecraft blocks (in terms of texture). Does anyone have a texture pack to make it look like the voxelise preview? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can create a Minecraft resource pack where each texture is a pure colour. Then you can create an atlas from this texture pack using Voxels can be any of the 16.7M RGB colours but there are only a few hundred Minecraft blocks so unfortunately the block mesh will never look as good as the voxel mesh. Additionally, voxel colours are calculated by directly sampling the underlying mesh whereas blocks are only approximates. Hope this helps. |
Beta Was this translation helpful? Give feedback.
You can create a Minecraft resource pack where each texture is a pure colour. Then you can create an atlas from this texture pack using
npm run atlas
. Then select that atlas when you assign the blocks and the conversion from voxels to blocks should be more accurate.Voxels can be any of the 16.7M RGB colours but there are only a few hundred Minecraft blocks so unfortunately the block mesh will never look as good as the voxel mesh. Additionally, voxel colours are calculated by directly sampling the underlying mesh whereas blocks are only approximates.
Hope this helps.