Files
distant-horizons-sharded/src/main/java/com/seibel/lod/enums/ShadingMode.java
T
2021-09-25 23:17:17 -05:00

22 lines
397 B
Java

package com.seibel.lod.enums;
/**
* NONE, GAME_SHADING
*
* @author James Seibel
* @version 7-25-2020
*/
public enum ShadingMode
{
/**
* LODs will have the same lighting on every side.
* can make large similarly colored areas hard to differentiate
*/
NONE,
/**
* LODs will have darker sides and bottoms to simulate
* Minecraft's fast, top down lighting.
*/
GAME_SHADING;
}