Skip to content

Commit

Permalink
Change default value for --optimize arg to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
TiberiumFusion committed Aug 22, 2024
1 parent 17fa5e6 commit 7838146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Smd2Pac/LaunchArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class LaunchArgs
public bool DeepSmdDirPath { get; private set; } = false;
public string OutputPacAnimDataPath { get; private set; } = null;
public bool EscapeOutputPacAnimData { get; private set; } = true;
public int PacAnimDataOptimizeLevel { get; private set; } = 1;
public int PacAnimDataOptimizeLevel { get; private set; } = 0;
public List<string> IgnoreBones { get; private set; } = new List<string>();
public Dictionary<string, Tuple<Vector3, Vector3>> BoneFixups { get; private set; } = new Dictionary<string, Tuple<Vector3, Vector3>>();
public string SubtractionBaseSmd { get; private set; } = null;
Expand Down

0 comments on commit 7838146

Please sign in to comment.