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() {