From b1a3195bec67824525b270b4fbdc6dc318d23991 Mon Sep 17 00:00:00 2001 From: TJH Date: Sat, 11 Apr 2026 11:14:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=8D=E8=B4=B9=E5=8A=A0=E8=BD=BD=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/Game/Prefab/FreeSpinEnter.prefab | 8 ++++---- assets/Game/Scripts/FreeSpinEnterSpine.ts | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/assets/Game/Prefab/FreeSpinEnter.prefab b/assets/Game/Prefab/FreeSpinEnter.prefab index 8b2763c..7a74185 100644 --- a/assets/Game/Prefab/FreeSpinEnter.prefab +++ b/assets/Game/Prefab/FreeSpinEnter.prefab @@ -645,7 +645,7 @@ "__id__": 26 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { "__id__": 28 @@ -1123,7 +1123,7 @@ "__id__": 26 }, "_children": [], - "_active": false, + "_active": true, "_components": [ { "__id__": 50 @@ -1259,7 +1259,7 @@ "__id__": 26 }, "_children": [], - "_active": false, + "_active": true, "_components": [ { "__id__": 56 @@ -1425,7 +1425,7 @@ "__id__": 62 } ], - "_active": true, + "_active": false, "_components": [ { "__id__": 70 diff --git a/assets/Game/Scripts/FreeSpinEnterSpine.ts b/assets/Game/Scripts/FreeSpinEnterSpine.ts index 347666d..bdb1e20 100644 --- a/assets/Game/Scripts/FreeSpinEnterSpine.ts +++ b/assets/Game/Scripts/FreeSpinEnterSpine.ts @@ -33,6 +33,7 @@ export class FreeSpinEnterSpine extends Component { this.hasClickBtn = false; this.loadingNode.active = true; this.freeSpinCount.string = freeSpinCount.toString(); + this.freeSpinCount.node.active = false Tween.stopAllByTarget(this.loadingNode); this.startBtn.off(Node.EventType.TOUCH_START); @@ -63,7 +64,9 @@ export class FreeSpinEnterSpine extends Component { }) .onComplete(() => { this.loadingNode.active = false; + this.loadingProgressLabel.string = '' this.startBtn.active = true; + this.freeSpinCount.node.active = true this.startBtn.scale = new Vec3(0.1, 0.1, 0.1); tween(this.startBtn) .set({ scale: new Vec3(0.1, 0.1, 0.1) })