[CLI] Add --filter-by-name support for fbx export mode

This commit is contained in:
VaDiM
2023-09-08 01:44:59 +03:00
parent 19c4835ea3
commit c3f99216b6
3 changed files with 70 additions and 20 deletions

View File

@ -878,7 +878,15 @@ namespace AssetStudioCLI.Options
sb.AppendLine($"# Log Level: {o_logLevel}");
sb.AppendLine($"# Log Output: {o_logOutput}");
sb.AppendLine($"# Export Asset List: {o_exportAssetList}");
sb.AppendLine($"# Assebmly Path: \"{o_assemblyPath}\"");
if (o_workMode.Value == WorkMode.SplitObjects)
{
sb.AppendLine($"# Export Image Format: {o_imageFormat}");
sb.AppendLine($"# Filter by Name(s): \"{string.Join("\", \"", o_filterByName.Value)}\"");
}
else
{
sb.AppendLine($"# Assebmly Path: \"{o_assemblyPath}\"");
}
sb.AppendLine($"# Unity Version: \"{o_unityVersion}\"");
break;
default: