Replace LodGeometryQuality with LodDetail

This commit is contained in:
James Seibel
2021-05-29 12:45:19 -05:00
parent af36224a57
commit a3357c1193
2 changed files with 25 additions and 19 deletions
@@ -0,0 +1,25 @@
package com.backsun.lod.enums;
/**
* single, quad
*
* @author James Seibel
* @version 05-29-2021
*/
public enum LodDetail
{
/** render 1 LOD for each chunk */
SINGLE(1),
/** render 4 LODs for each chunk */
QUAD(4);
/** How many data points wide the related
* LodChunk object should contain */
public final int value;
private LodDetail(int newValue)
{
value = newValue;
}
}
@@ -1,19 +0,0 @@
package com.backsun.lod.enums;
/**
* Single, single_close_quad_far, quad
*
* @author James Seibel
* @version 05-08-2021
*/
public enum LodGeometryQuality
{
/** render 1 LOD for each chunk */
SINGLE,
/** render 4 LODs for each near chunk and 1 LOD for each far chunk */
SINGLE_CLOSE_QUAD_FAR,
/** render 4 LODs for each chunk */
QUAD;
}