/* * This file is part of the Distant Horizon mod (formerly 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; /** * NEAR, FAR, or NEAR_AND_FAR. * * @author James Seibel * @version 02-14-2021 */ public enum FogDistance { /** good for fast or fancy fog qualities. */ NEAR, /** good for fast or fancy fog qualities. */ FAR, /** only looks good if the fog quality is set to Fancy. */ NEAR_AND_FAR }