From d5804050377548358fb7833020d83d4123711838 Mon Sep 17 00:00:00 2001 From: unanmed <1319491857@qq.com> Date: Sun, 4 Feb 2024 16:03:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B8=90=E5=8F=98=E9=9F=B3=E9=87=8F?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/audio/bgm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/audio/bgm.ts b/src/core/audio/bgm.ts index 55a0098..570773e 100644 --- a/src/core/audio/bgm.ts +++ b/src/core/audio/bgm.ts @@ -236,7 +236,7 @@ export class BgmController if (tran!.endVolume === 0) { bgm.pause(); } else { - bgm.volume = ani.value.volume * this.volume; + bgm.volume = tran!.endVolume * this.volume; } this.transitionData.delete(id); };