From 8b3048871586e5f3a239657a28295f8c13b6d686 Mon Sep 17 00:00:00 2001 From: Nicolas Perrier Date: Thu, 3 Feb 2022 16:32:36 +0100 Subject: [PATCH] Just add a debug log to check quantization --- SchematicToVoxCore/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SchematicToVoxCore/Program.cs b/SchematicToVoxCore/Program.cs index a2f07b8..2a32d6a 100644 --- a/SchematicToVoxCore/Program.cs +++ b/SchematicToVoxCore/Program.cs @@ -142,6 +142,8 @@ private static void DisplayArguments() Console.WriteLine("[INFO] Enabled option: heightmap (value=" + HEIGHT_MAP + ")"); if (Schematic.DEBUG) Console.WriteLine("[INFO] Enabled option: debug"); + if (DISABLE_QUANTIZATION) + Console.WriteLine("[INFO] Enabled option: disable-quantization"); Console.WriteLine("[INFO] Specified output path: " + Path.GetFullPath(OUTPUT_PATH)); }