From a66dcfe1ec2fc3072557031c264ecdd5b4aa05c3 Mon Sep 17 00:00:00 2001 From: TJH Date: Mon, 20 Apr 2026 15:28:18 +0800 Subject: [PATCH] =?UTF-8?q?bigwin=E5=8A=A8=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/Game/Scripts/BigWin.ts | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/assets/Game/Scripts/BigWin.ts b/assets/Game/Scripts/BigWin.ts index 583a93c..272d6c2 100644 --- a/assets/Game/Scripts/BigWin.ts +++ b/assets/Game/Scripts/BigWin.ts @@ -119,10 +119,10 @@ export class BigWin extends Component { .start(); this.startBubbleAnimation(actionNode); - // this.playSpineAnimation(actionNode, 'ruchang', false, () => { - // this.playSpineAnimation(actionNode, 'chixu', true); + this.playSpineAnimation(actionNode, 'ruchang', false, () => { + this.playSpineAnimation(actionNode, 'chixu', true); - // }); + }); } startScrolling(isFirst: boolean, curType: WIN_TYPE, startValue: number, targetValue: number, callBack: () => void) { @@ -262,10 +262,7 @@ export class BigWin extends Component { } if (activeNode) { - // this.playSpineAnimation(activeNode, 'xiaoshi', false, onComplete); - this.scheduleOnce(() => { - onComplete() - }, 0.5) + this.playSpineAnimation(activeNode, 'xiaoshi', false, onComplete); } else { onComplete(); } @@ -284,12 +281,9 @@ export class BigWin extends Component { } if (activeNode) { - // this.playSpineAnimation(activeNode, 'xiaoshi', false, () => { - // this.closeAndDestroy(callBack); - // }); - this.scheduleOnce(() => { + this.playSpineAnimation(activeNode, 'xiaoshi', false, () => { this.closeAndDestroy(callBack); - }, 0.5) + }); } else { this.closeAndDestroy(callBack); }