/* * This file is part of the LOD Mod, licensed under the GNU GPL v3 License. * * Copyright (C) 2020 James Seibel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package com.seibel.lod.enums; /** * heightmap
* multi_lod
* * @author Leonardo Amato * @version 9-27-2021 */ public enum VerticalQuality { 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; } }