mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-09 19:25:10 +00:00
create the mp3 -> wav cache if it doesn't exist
This commit is contained in:
parent
54897f2118
commit
e895c0e73d
1 changed files with 3 additions and 1 deletions
|
@ -155,6 +155,8 @@ namespace HeavenStudio
|
|||
{
|
||||
Directory.Delete(Path.Combine(Application.temporaryCachePath, "/savewav"), true);
|
||||
}
|
||||
if (!Directory.Exists(Application.temporaryCachePath, "/savewav"))
|
||||
Directory.CreateDirectory(Application.temporaryCachePath, "/savewav");
|
||||
if (audioType == AudioType.MPEG)
|
||||
{
|
||||
Debug.Log($"mp3 loaded, Converting {filePath} to wav...");
|
||||
|
@ -1194,4 +1196,4 @@ namespace HeavenStudio
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue