Changed configs
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user