We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f68c199 commit 3c9933cCopy full SHA for 3c9933c
MOD.Scripts.Core.Audio/MODAudioSet.cs
@@ -6,7 +6,6 @@
6
using System.Collections.Generic;
7
using System.IO;
8
using System.Text;
9
-using UnityEngine;
10
11
namespace MOD.Scripts.Core.Audio
12
{
@@ -56,7 +55,8 @@ public bool IsInstalledCached()
56
55
return false;
57
}
58
59
- bool audioSetInstalled = seCascade.IsInstalled(Application.streamingAssetsPath) && bgmCascade.IsInstalled(Application.streamingAssetsPath);
+ string streamingAssetsPath = UnityEngine.Application.streamingAssetsPath;
+ bool audioSetInstalled = seCascade.IsInstalled(streamingAssetsPath) && bgmCascade.IsInstalled(streamingAssetsPath);
60
isInstalled = audioSetInstalled;
61
return audioSetInstalled;
62
0 commit comments