Update the debug colors to work up to region size

This commit is contained in:
James Seibel
2021-08-21 08:03:35 -05:00
parent 75d6da98dc
commit 5a856c65fa
@@ -52,9 +52,9 @@ public class LodUtil
/**
* In order of nearest to farthest: <br>
* Red, Orange, Yellow, Green, Blue, Magenta, Pink
* Red, Orange, Yellow, Green, Cyan, Blue, Magenta, white, gray, black
*/
public static final Color DEBUG_DETAIL_LEVEL_COLORS[] = new Color[] { Color.RED, Color.ORANGE, Color.YELLOW, Color.GREEN, Color.BLUE, Color.MAGENTA, Color.pink};
public static final Color DEBUG_DETAIL_LEVEL_COLORS[] = new Color[] { Color.RED, Color.ORANGE, Color.YELLOW, Color.GREEN, Color.CYAN, Color.BLUE, Color.MAGENTA, Color.WHITE, Color.GRAY, Color.BLACK };
/** 512 blocks wide */