From 8ffa1746609510d551560ba7c9e80ff12a6795be Mon Sep 17 00:00:00 2001 From: Philip White Date: Sun, 14 Nov 2021 12:34:07 +0000 Subject: [PATCH] Update Animation Length --- .../Game Over Screen/FetchingScoresAnimation.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Unity-Files/Assets/Animations/Game Over Screen/FetchingScoresAnimation.cs b/Unity-Files/Assets/Animations/Game Over Screen/FetchingScoresAnimation.cs index 3915e92..412aa14 100644 --- a/Unity-Files/Assets/Animations/Game Over Screen/FetchingScoresAnimation.cs +++ b/Unity-Files/Assets/Animations/Game Over Screen/FetchingScoresAnimation.cs @@ -19,13 +19,13 @@ public class FetchingScoresAnimation : MonoBehaviour while (true) { textComponent.text = "Fetching Scores"; - await Task.Delay(1000); + await Task.Delay(200); textComponent.text = "Fetching Scores."; - await Task.Delay(1000); + await Task.Delay(200); textComponent.text = "Fetching Scores.."; - await Task.Delay(1000); + await Task.Delay(200); textComponent.text = "Fetching Scores..."; - await Task.Delay(1000); + await Task.Delay(200); } } }