both VoxelStream.load_voxel_block() and VoxelStream.save_voxel_block() have a parameter named origin_in_voxels. Confusingly, it does not take the origin in voxel coordinates, but rather in block coordinates. Specifying (16, 16, 16) will return block (16, 16, 16), rather than the block containing position (16, 16, 16).
both
VoxelStream.load_voxel_block()
andVoxelStream.save_voxel_block()
have a parameter namedorigin_in_voxels
. Confusingly, it does not take the origin in voxel coordinates, but rather in block coordinates. Specifying(16, 16, 16)
will return block(16, 16, 16)
, rather than the block containing position(16, 16, 16)
.