From 6dafe72c3b0afbd4f18bbc7a22362a57d70f75ab Mon Sep 17 00:00:00 2001 From: bd_ Date: Sun, 29 Sep 2024 13:53:07 -0700 Subject: [PATCH] fix: play audio path mapping is broken Closes: #936 --- Editor/Animation/AnimatorCombiner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Editor/Animation/AnimatorCombiner.cs b/Editor/Animation/AnimatorCombiner.cs index 36ddf4de..674140dc 100644 --- a/Editor/Animation/AnimatorCombiner.cs +++ b/Editor/Animation/AnimatorCombiner.cs @@ -611,7 +611,7 @@ namespace nadena.dev.modular_avatar.animation { if (!string.IsNullOrEmpty(playAudio.SourcePath) && !string.IsNullOrEmpty(basePath) && !playAudio.SourcePath.StartsWith(basePath)) { - playAudio.SourcePath = $"{basePath}/{playAudio.SourcePath}"; + playAudio.SourcePath = $"{basePath}{playAudio.SourcePath}"; } break; }