diff --git a/src/main/java/com/backsun/lod/enums/DrawMode.java b/src/main/java/com/backsun/lod/enums/DrawMode.java deleted file mode 100644 index b31e39376..000000000 --- a/src/main/java/com/backsun/lod/enums/DrawMode.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.backsun.lod.enums; - -/** - * @author James Seibel - * @version 1-23-2021 - */ -public enum DrawMode -{ - /** Draw the LOD objects in groups. - *
- *
- * Fancy fog: render the center and outside LOD - * objects in 2 different groups. - *
- * Fast fog: render all LOD objects at one time. - */ - BATCH(0), - - /** Draw each LOD objects separately. - *
- *
- * Not suggested normally since draw calls are GPU expensive. - */ - INDIVIDUAL(5); - - public final int value; - - private DrawMode(int newValue) - { - value = newValue; - } -}