Speed up animations

This commit is contained in:
DrabWeb
2017-06-01 06:10:26 -03:00
parent a707d63647
commit fad5b4ca9d
2 changed files with 7 additions and 5 deletions

View File

@ -154,7 +154,7 @@ namespace osu.Game.Overlays.Chat
protected override bool OnHover(InputState state)
{
if (!channel.Joined.Value)
name.FadeColour(hoverColour, transition_duration);
name.FadeColour(hoverColour, 50, EasingTypes.OutQuint);
return base.OnHover(state);
}