- [Core] Fix bug with loading some bundles from ZIP file.

- [CLI] added new options.
This commit is contained in:
Razmoth
2023-08-24 21:49:17 +04:00
parent 995b7ee58b
commit cde398e592
7 changed files with 15 additions and 2 deletions

View File

@@ -40,10 +40,13 @@ namespace AssetStudioCLI
}
Studio.Game = game;
Logger.LogVerbose = o.Verbose;
Logger.Default = new ConsoleLogger();
Logger.FileLogging = Settings.Default.enableFileLogging;
AssetsHelper.Minimal = Settings.Default.minimalAssetMap;
Shader.Parsable = !Settings.Default.disableShader;
Renderer.Parsable = !Settings.Default.disableRenderer;
AnimationClip.Parsable = !Settings.Default.disableAnimationClip;
assetsManager.Silent = o.Silent;
assetsManager.Game = game;
ModelOnly = o.Model;