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); } } }