mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-11-14 07:42:42 -05:00
[CLI] Some minor fixes
This commit is contained in:
@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user