[CLI] Some minor fixes

This commit is contained in:
VaDiM
2025-09-04 17:54:55 +03:00
parent 2d449ff4cd
commit 7ce8b8c8ae

View File

@ -397,7 +397,7 @@ namespace AssetStudioCLI.Options
"Auto - Search for model-related animations and export model with them\n" + "Auto - Search for model-related animations and export model with them\n" +
"Skip - Don't export animations\n" + "Skip - Don't export animations\n" +
"All - Try to bind all loaded animations to each loaded model\n", "All - Try to bind all loaded animations to each loaded model\n",
optionExample: "--fbx-animation skip\n", optionExample: "Example: \"--fbx-animation skip\"\n",
optionHelpGroup: HelpGroups.FBX optionHelpGroup: HelpGroups.FBX
); );
f_fbxUvsAsDiffuseMaps = new GroupedOption<bool> f_fbxUvsAsDiffuseMaps = new GroupedOption<bool>
@ -551,7 +551,7 @@ namespace AssetStudioCLI.Options
f_avoidLoadingViaTypetree = new GroupedOption<bool> f_avoidLoadingViaTypetree = new GroupedOption<bool>
( (
optionDefaultValue: false, optionDefaultValue: false,
optionName: "--avoid-typetree-loading", optionName: "--ignore-typetree",
optionDescription: "(Flag) If specified, Studio will not try to parse assets at load time\nusing their type tree\n", optionDescription: "(Flag) If specified, Studio will not try to parse assets at load time\nusing their type tree\n",
optionExample: "", optionExample: "",
optionHelpGroup: HelpGroups.Advanced, optionHelpGroup: HelpGroups.Advanced,
@ -737,7 +737,7 @@ namespace AssetStudioCLI.Options
f_notRestoreExtensionName.Value = true; f_notRestoreExtensionName.Value = true;
flagIndexes.Add(i); flagIndexes.Add(i);
break; break;
case "--avoid-typetree-loading": case "--ignore-typetree":
f_avoidLoadingViaTypetree.Value = true; f_avoidLoadingViaTypetree.Value = true;
flagIndexes.Add(i); flagIndexes.Add(i);
break; break;