Skip to content

Commit

Permalink
Added values descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
HeDo88TH committed May 25, 2022
1 parent d64abda commit 6012b61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Obj2Tiles/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ namespace Obj2Tiles;

public class Options
{
[Value(0, Required = true, HelpText = "Input OBJ file.")]
[Value(0, MetaName = "Input", Required = true, HelpText = "Input OBJ file.")]
public string Input { get; set; }

[Value(1, Required = true, HelpText = "Output folder.")]
[Value(1, MetaName = "Output", Required = true, HelpText = "Output folder.")]
public string Output { get; set; }

[Option('s', "stage", Required = false, HelpText = "Stage to stop at (Decimation, Splitting, Tiling)", Default = Stage.Tiling)]
Expand Down

0 comments on commit 6012b61

Please sign in to comment.