From 0900bdf872cc7d376022874a5d5bf69fbc631119 Mon Sep 17 00:00:00 2001 From: cocos02 Date: Fri, 12 Jun 2026 23:06:15 +0800 Subject: [PATCH] fix: mute video when entering loop --- engine/core/Engine.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/core/Engine.ts b/engine/core/Engine.ts index df79f52..49ab873 100644 --- a/engine/core/Engine.ts +++ b/engine/core/Engine.ts @@ -209,6 +209,7 @@ export class Engine { if (!this.loopActive && time >= scene.loopStart) { this.loopActive = true + this.videoManager.setMuted(true) const validChoices = this.getValidChoices(scene) if (validChoices.length > 0) { this.emit('choiceRequest', validChoices)