fix some sfx wrong path

This commit is contained in:
Tran Hai Nam
2026-04-24 15:24:15 +07:00
parent 28fd76c10d
commit 43d2f7291a
+1 -1
View File
@@ -688,7 +688,7 @@ public class CECModel
{
if(sfx.m_strFilePaths != null && sfx.m_strFilePaths.Count > 0)
{
string soundpath = AFile.NormalizePath(sfx.m_strFilePaths[0]);
string soundpath = AFile.NormalizePath(sfx.m_strFilePaths[0],true);
soundpath = soundpath.ToLower();
SFXManager.Instance.PlaySkillSfxAtPointAsync(soundpath, Vector3.zero).Forget();
}