1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Adjust animation slightly

This commit is contained in:
Dean Herbert 2017-12-22 00:53:34 +09:00
parent 5c9d484395
commit aa388885b7

View File

@ -403,13 +403,13 @@ namespace osu.Game.Screens.Select.Leaderboards
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args)
{
icon.ScaleTo(0.8f, 400, Easing.OutQuint);
icon.ScaleTo(0.8f, 4000, Easing.OutQuint);
return base.OnMouseDown(state, args);
}
protected override bool OnMouseUp(InputState state, MouseUpEventArgs args)
{
icon.ScaleTo(1, 400, Easing.OutElastic);
icon.ScaleTo(1, 1000, Easing.OutElastic);
return base.OnMouseUp(state, args);
}
}