From 4bca82b31cf79065dc4b5fd2835d744ebcb67878 Mon Sep 17 00:00:00 2001 From: Luca Di Leo Date: Mon, 4 Nov 2024 00:07:37 +0100 Subject: [PATCH] Fix for https://github.com/OpenDroneMap/Obj2Tiles/pull/63#discussion_r1827072657 --- Obj2Tiles/Options.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Obj2Tiles/Options.cs b/Obj2Tiles/Options.cs index 926a274..5c83713 100644 --- a/Obj2Tiles/Options.cs +++ b/Obj2Tiles/Options.cs @@ -47,7 +47,7 @@ public sealed class Options [Option("keep-intermediate", Required = false, HelpText = "Keeps the intermediate files (do not cleanup)", Default = false)] public bool KeepIntermediateFiles { get; set; } - [Option('t', "y-up-to-z-up", Required = true, HelpText = "Convert the upward Y-axis to the upward Z-axis, which is used in some situations where the upward axis may be the Y-axis or the Z-axis after the obj is exported.", Default = true)] + [Option('t', "y-up-to-z-up", Required = false, HelpText = "Convert the upward Y-axis to the upward Z-axis, which is used in some situations where the upward axis may be the Y-axis or the Z-axis after the obj is exported.", Default = true)] public bool? YUpToZUp { get; set; } }