From edf295fc40a7741fac995dd4c90891899f7069c8 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Wed, 3 Jun 2020 12:17:56 +0200 Subject: [PATCH] reduce splash time --- TouchyTickets/Ui.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TouchyTickets/Ui.cs b/TouchyTickets/Ui.cs index e505cf8..b843359 100644 --- a/TouchyTickets/Ui.cs +++ b/TouchyTickets/Ui.cs @@ -288,7 +288,7 @@ namespace TouchyTickets { center.DrawAlpha += 0.01F; yield return new WaitEvent(CoroutineEvents.Update); } - yield return new WaitSeconds(1.5); + yield return new WaitSeconds(1); while (center.DrawAlpha > 0) { center.DrawAlpha -= 0.01F; yield return new WaitEvent(CoroutineEvents.Update);