From 7ce8b8c8ae316050b48502ad224b4a2f84332082 Mon Sep 17 00:00:00 2001 From: VaDiM Date: Thu, 4 Sep 2025 17:54:55 +0300 Subject: [PATCH] [CLI] Some minor fixes --- AssetStudioCLI/Options/CLIOptions.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AssetStudioCLI/Options/CLIOptions.cs b/AssetStudioCLI/Options/CLIOptions.cs index 98453bf..740011e 100644 --- a/AssetStudioCLI/Options/CLIOptions.cs +++ b/AssetStudioCLI/Options/CLIOptions.cs @@ -397,7 +397,7 @@ namespace AssetStudioCLI.Options "Auto - Search for model-related animations and export model with them\n" + "Skip - Don't export animations\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 ); f_fbxUvsAsDiffuseMaps = new GroupedOption @@ -551,7 +551,7 @@ namespace AssetStudioCLI.Options f_avoidLoadingViaTypetree = new GroupedOption ( 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", optionExample: "", optionHelpGroup: HelpGroups.Advanced, @@ -737,7 +737,7 @@ namespace AssetStudioCLI.Options f_notRestoreExtensionName.Value = true; flagIndexes.Add(i); break; - case "--avoid-typetree-loading": + case "--ignore-typetree": f_avoidLoadingViaTypetree.Value = true; flagIndexes.Add(i); break;