From 08bcd8faf1f8fd97241259080c1323ac8c700f90 Mon Sep 17 00:00:00 2001 From: TJH Date: Tue, 24 Feb 2026 17:40:55 +0800 Subject: [PATCH] =?UTF-8?q?=E7=82=B9=E5=87=BB=E5=81=9C=E6=AD=A2=E7=9A=84?= =?UTF-8?q?=E8=8A=82=E5=A5=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/Game/scripts/SlotScene.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/assets/Game/scripts/SlotScene.ts b/assets/Game/scripts/SlotScene.ts index 1157feb..b9df9b9 100644 --- a/assets/Game/scripts/SlotScene.ts +++ b/assets/Game/scripts/SlotScene.ts @@ -392,9 +392,12 @@ export class SlotScene extends Component { // 滚轮没有开始旋转的时候不能停止 if (!this.slotGame.isScroll()) return; - this.slotBar.manualStop(); - this.slotGame.manualStop(); + + this.scheduleOnce(() => { + this.slotGame.manualStop(); + }, 0.3) + } private handleErrSpin() {