This commit is contained in:
James Seibel
2024-03-17 19:09:01 -05:00
2 changed files with 17 additions and 10 deletions
@@ -34,11 +34,13 @@ import com.seibel.distanthorizons.coreapi.util.MathUtil;
*/
public enum EVerticalQuality
{
HEIGHT_MAP(new int[]{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}),
LOW(new int[]{4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1}),
MEDIUM(new int[]{6, 4, 3, 3, 3, 3, 3, 2, 2, 2, 1}),
HIGH(new int[]{16, 8, 4, 3, 3, 3, 3, 3, 3, 3, 1}),
EXTREME(new int[]{32, 16, 8, 4, 4, 3, 3, 3, 3, 3, 1});
HEIGHT_MAP( new int[]{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}),
LOW( new int[]{4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1}),
MEDIUM( new int[]{6, 4, 3, 3, 3, 3, 3, 2, 2, 2, 1}),
HIGH( new int[]{16, 8, 4, 3, 3, 3, 3, 3, 3, 3, 1}),
VERY_HIGH( new int[]{32, 16, 8, 4, 4, 3, 3, 3, 3, 3, 1}),
EXTREME( new int[]{64, 32, 8, 4, 4, 3, 3, 3, 3, 3, 1}),
PIXEL_ART( new int[]{512, 64, 16, 8, 4, 3, 3, 3, 3, 3, 1});
/** represents how many LODs can be rendered in a single vertical slice */
public final int[] maxVerticalData;