Merge !50
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -650,15 +650,20 @@
|
||||
"Chunk",
|
||||
|
||||
"distanthorizons.config.enum.EVerticalQuality.HEIGHT_MAP":
|
||||
"Height Map",
|
||||
"1. Height Map",
|
||||
"distanthorizons.config.enum.EVerticalQuality.LOW":
|
||||
"Low",
|
||||
"2. Low",
|
||||
"distanthorizons.config.enum.EVerticalQuality.MEDIUM":
|
||||
"Medium",
|
||||
"3. Medium",
|
||||
"distanthorizons.config.enum.EVerticalQuality.HIGH":
|
||||
"High",
|
||||
"4. High",
|
||||
"distanthorizons.config.enum.EVerticalQuality.VERY_HIGH":
|
||||
"5. Very High",
|
||||
"distanthorizons.config.enum.EVerticalQuality.EXTREME":
|
||||
"Extreme",
|
||||
"6. Extreme",
|
||||
"distanthorizons.config.enum.EVerticalQuality.PIXEL_ART":
|
||||
"7. Pixel Art",
|
||||
|
||||
"distanthorizons.config.enum.EHorizontalQuality.LOWEST":
|
||||
"Lowest",
|
||||
"distanthorizons.config.enum.EHorizontalQuality.LOW":
|
||||
|
||||
Reference in New Issue
Block a user