Skip to content

Commit bd5b32a

Browse files
committed
fix
1 parent 1eddad4 commit bd5b32a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Assets/Scripts/Scenes/Result/ResultScreenManager.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,10 @@ async UniTask WaitForTaskAsync()
434434
_isInited = true;
435435
CabinetLed.SetButtonLight(Color.yellow, 4);
436436
var t1 = _scoreSaveTask;
437-
await UniTask.Delay(3000);
437+
if (RecordHelper.IsEnabled)
438+
{
439+
await UniTask.Delay(3000);
440+
}
438441
var t2 = RecordHelper.StopRecordAsync();
439442
while (!t1.IsCompleted || !t2.IsCompleted)
440443
{

0 commit comments

Comments
 (0)