Some minor fixes

This commit is contained in:
VaDiM
2025-10-07 00:40:28 +03:00
parent 6c3ff89dbf
commit 6d5b633d55
4 changed files with 17 additions and 18 deletions

View File

@ -30,6 +30,7 @@ namespace AssetStudioCLI
{
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");
Progress.Default = new Progress<int>(ShowCurProgressValue);
Progress.SetInstance(1, new Progress<int>(ShowCurProgressValue));
assetsManager.LoadViaTypeTree = !CLIOptions.f_avoidLoadingViaTypetree.Value;
assetsManager.Options.CustomUnityVersion = CLIOptions.o_unityVersion.Value;
assetsManager.Options.BundleOptions.CustomBlockInfoCompression = CLIOptions.o_bundleBlockInfoCompression.Value;
@ -519,11 +520,11 @@ namespace AssetStudioCLI
info += $"\n#\n# Total: {parsedAssetsList.Count} assets";
}
info += $"\n\n# Exportable Live2D Models: {l2dModelDict.Count}";
info += $"\n\n[Cubism Live2D]\n# Exportable Models: {l2dModelDict.Count}";
}
else
{
info += "No exportable assets found.";
info += "\n\nNo exportable assets found.";
}
if (CLIOptions.o_logLevel.Value > LoggerEvent.Info)