From fb952ef119bd45714667d4a0ae6fff3e72261363 Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Fri, 12 Mar 2021 23:32:02 +0000 Subject: [PATCH] Allow lower split scale --- constants/voxel_constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/voxel_constants.h b/constants/voxel_constants.h index 633c1a24..22a1bbae 100644 --- a/constants/voxel_constants.h +++ b/constants/voxel_constants.h @@ -5,7 +5,7 @@ namespace VoxelConstants { -static const float MINIMUM_LOD_SPLIT_SCALE = 2.f; +static const float MINIMUM_LOD_SPLIT_SCALE = 1.f; static const float MAXIMUM_LOD_SPLIT_SCALE = 5.f; static const unsigned int MAX_LOD = 32; static const unsigned int MAX_VOLUME_EXTENT = 0x1fffffff;