diff --git a/assets/_Game/Scripts/Gacha/LuckyWheel.ts b/assets/_Game/Scripts/Gacha/LuckyWheel.ts index 1123cad..62c0621 100644 --- a/assets/_Game/Scripts/Gacha/LuckyWheel.ts +++ b/assets/_Game/Scripts/Gacha/LuckyWheel.ts @@ -129,7 +129,6 @@ export default class LuckyWheel extends GachaBase { public async spin() { if (this._spinning) return; - this._spinning = true; AudioManager.playSfx(this.btnSfx); this._random = this._allCards.getRandomIndex(); this.animationHandler.clearTrack(0); @@ -138,5 +137,6 @@ export default class LuckyWheel extends GachaBase { this._timeSpin = randomRangeInt(10, 15); this._maxAngle = 360 * this._timeSpin; this._preAngle = this._maxAngle; + this._spinning = true; } }