From a246dd756127155480ef923d8e81574af3a561f4 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 21 Aug 2021 13:02:21 -0500 Subject: [PATCH] improve a few comments --- src/main/java/com/seibel/lod/util/LodUtil.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/seibel/lod/util/LodUtil.java b/src/main/java/com/seibel/lod/util/LodUtil.java index 2048dd575..cbc4bde79 100644 --- a/src/main/java/com/seibel/lod/util/LodUtil.java +++ b/src/main/java/com/seibel/lod/util/LodUtil.java @@ -65,11 +65,14 @@ public class LodUtil public static final byte BLOCK_DETAIL_LEVEL = 0; - /** detail level 9 */ + /** measured in Blocks
+ * detail level 9 */ public static final short REGION_WIDTH = 512; - /** detail level 4 */ + /** measured in Blocks
+ * detail level 4 */ public static final short CHUNK_WIDTH = 16; - /** detail level 0 */ + /** measured in Blocks
+ * detail level 0 */ public static final short BLOCK_WIDTH = 1;