fix: 渐变音量错误

This commit is contained in:
unanmed 2024-02-04 16:03:03 +08:00
parent f808a5e00c
commit d580405037

View File

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