Skip to content

Commit

Permalink
Input and Output are now values and not options
Browse files Browse the repository at this point in the history
  • Loading branch information
HeDo88TH committed May 25, 2022
1 parent 56da2fc commit d64abda
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
{
[Option('i', "input", Required = true, HelpText = "Input OBJ file.")]
[Value(0, Required = true, HelpText = "Input OBJ file.")]
public string Input { get; set; }

[Option('o', "output", Required = true, HelpText = "Output folder.")]
[Value(1, 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 d64abda

Please sign in to comment.