Add the overdraw

Overdraw renders LODs on top of vanilla chunks based with  three different settings.
This commit is contained in:
James Seibel
2021-10-10 21:31:45 -05:00
parent 9d1a9eb9f3
commit 732476b454
4 changed files with 101 additions and 11 deletions
@@ -0,0 +1,23 @@
package com.seibel.lod.enums;
/**
* None, Half, Always
*
* <p>
* This represents how far the LODs should overlap with
* the vanilla Minecraft terrain.
*
* @author James Seibel
* @version 10-10-2021
*/
public enum VanillaOverdraw
{
/** Never draw LODs where a minecraft chunk could be. */
NEVER,
/** Draw LODs over the farther minecraft chunks. */
HALF,
/** Draw LODs over all minecraft chunks. */
ALWAYS,
}