create the mp3 -> wav cache if it doesn't exist

This commit is contained in:
minenice55 2024-01-10 18:53:57 -05:00 committed by GitHub
parent 54897f2118
commit e895c0e73d

View file

@ -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
}
}
}
}
}