From d3a62082b45eecb9130e74a134ef70497040f574 Mon Sep 17 00:00:00 2001 From: EVAST9919 Date: Tue, 10 Oct 2017 20:20:49 +0300 Subject: [PATCH] Final adjustments --- osu.Game/Screens/Menu/IntroSequence.cs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/osu.Game/Screens/Menu/IntroSequence.cs b/osu.Game/Screens/Menu/IntroSequence.cs index 43887edf97..4c4b48ea5b 100644 --- a/osu.Game/Screens/Menu/IntroSequence.cs +++ b/osu.Game/Screens/Menu/IntroSequence.cs @@ -49,17 +49,19 @@ public class IntroSequence : Container private const int big_ring_animation_start_delay = 2000; private const int big_ring_resize_duration = 500; private const int big_ring_foreground_resize_delay = 250; - private const int big_ring_fade_duration = 600; + private const int big_ring_fade_duration = 450; private const int background_animation_start_time = 2250; private const int foreground_animation_start_time = 2300; - private const int colored_curcle_rotation_delay = 150; + private const int colored_curcle_rotation_delay = 110; private const int purple_circle_animation_start_time = 2250; private const int yellow_circle_animation_start_time = 2315; private const int blue_circle_animation_start_time = 2380; private const int pink_circle_animation_start_time = 2445; + private const int logo_fade_duration = 300; + //Position private const int bar_start_offset = 80; private const int bar_end_offset = 120; @@ -332,10 +334,10 @@ public void Start() pinkCircle.ResizeTo(colored_circle_size, duration, Easing.InOutQuad); } - logo.Delay(3200).FadeIn(300); + logo.Delay(full_animation_duration).FadeIn(logo_fade_duration); - backgroundFill.Delay(3200).FadeOut(); - foregroundFill.Delay(3500).FadeOut(); + backgroundFill.Delay(full_animation_duration + logo_fade_duration).FadeOut(); + foregroundFill.Delay(full_animation_duration + logo_fade_duration).FadeOut(); } private void setDefaults()