1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 00:22:58 +08:00

Restore original values in FadeColour method call

This commit is contained in:
Arphox 2019-06-04 21:37:10 +02:00
parent 5f4d7437bc
commit 900cd5c484

View File

@ -76,7 +76,7 @@ namespace osu.Game.Graphics.Containers
private void fadeIn()
{
EffectTargets.ForEach(d => d.FadeColour(Color4.Black, FADE_DURATION * 10, Easing.OutQuint));
EffectTargets.ForEach(d => d.FadeColour(HoverColour, FADE_DURATION, Easing.OutQuint));
}
}
}