Update Animation Length

This commit is contained in:
Philip W 2021-11-14 12:34:07 +00:00
parent f4cf586606
commit 8ffa174660

View File

@ -19,13 +19,13 @@ public class FetchingScoresAnimation : MonoBehaviour
while (true) while (true)
{ {
textComponent.text = "Fetching Scores"; textComponent.text = "Fetching Scores";
await Task.Delay(1000); await Task.Delay(200);
textComponent.text = "Fetching Scores."; textComponent.text = "Fetching Scores.";
await Task.Delay(1000); await Task.Delay(200);
textComponent.text = "Fetching Scores.."; textComponent.text = "Fetching Scores..";
await Task.Delay(1000); await Task.Delay(200);
textComponent.text = "Fetching Scores..."; textComponent.text = "Fetching Scores...";
await Task.Delay(1000); await Task.Delay(200);
} }
} }
} }