Files
distant-horizons-sharded/src/main/java/com/seibel/lod/enums/DistanceQualityDropOff.java
T

18 lines
313 B
Java

package com.seibel.lod.enums;
/**
* @author Leonardo Amato
* @version 22-08-2021
*/
public enum DistanceQualityDropOff
{
/**
* different Lod detail render and generate linearly to the distance
*/
LINEAR,
/**
* different Lod detail render and generate quadratically to the distance
*/
QUADRATIC,
}