From 5a856c65fa56e68840d04975a8a95ee07e4902ce Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 21 Aug 2021 08:03:35 -0500 Subject: [PATCH] Update the debug colors to work up to region size --- src/main/java/com/seibel/lod/util/LodUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/seibel/lod/util/LodUtil.java b/src/main/java/com/seibel/lod/util/LodUtil.java index 18384b500..2048dd575 100644 --- a/src/main/java/com/seibel/lod/util/LodUtil.java +++ b/src/main/java/com/seibel/lod/util/LodUtil.java @@ -52,9 +52,9 @@ public class LodUtil /** * In order of nearest to farthest:
- * 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 */