- [GUI] Add option to export selected assets in AssetBrowser.

This commit is contained in:
Razmoth
2024-02-02 22:36:50 +04:00
parent 0a02ea9cee
commit b32843860e
7 changed files with 408 additions and 136 deletions

View File

@@ -28,23 +28,6 @@ namespace AssetStudio
internal HashSet<string> noexistFiles = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
internal HashSet<string> assetsFileListHash = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
public void LoadFiles(string file)
{
if (Silent)
{
Logger.Silent = true;
Progress.Silent = true;
}
Load(new string[] { file });
if (Silent)
{
Logger.Silent = false;
Progress.Silent = false;
}
}
public void LoadFiles(params string[] files)
{
if (Silent)