Changed configs

This commit is contained in:
Leonardo
2021-10-07 17:20:39 +02:00
parent 028aed53f8
commit 78ab4b8598
9 changed files with 341 additions and 329 deletions
@@ -26,9 +26,53 @@ package com.seibel.lod.enums;
*/
public enum VerticalQuality
{
/** Lods only have height and depth data */
HEIGHTMAP,
/** Lods expand in three dimensions */
VOXEL;
LOW(
new int[]{2,
2,
2,
2,
1,
1,
1,
1,
1,
1,
1}
),
MEDIUM(
new int[]{4,
4,
2,
2,
2,
1,
1,
1,
1,
1,
1}
),
HIGH(
new int[]{
8,
8,
4,
4,
2,
2,
2,
1,
1,
1,
1}
);
public final int[] maxVerticalData;
VerticalQuality(int[] maxVerticalData)
{
this.maxVerticalData = maxVerticalData;
}
}