mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 15:44:04 +09:00
Reduce harshness of scale for now
Though I don't feel like we should worry about this much just yet until we have actual designs and can see how it looks. It's very well possible that we use different transitions here...
This commit is contained in:
@ -28,14 +28,14 @@ namespace osu.Game.Screens.Edit.Screens
|
||||
{
|
||||
base.LoadComplete();
|
||||
|
||||
this.ScaleTo(0.5f).FadeTo(0)
|
||||
this.ScaleTo(0.75f).FadeTo(0)
|
||||
.Then()
|
||||
.ScaleTo(1f, 500, Easing.OutQuint).FadeTo(1f, 250, Easing.OutQuint);
|
||||
}
|
||||
|
||||
public void Exit()
|
||||
{
|
||||
this.ScaleTo(1.5f, 500).FadeOut(250).Expire();
|
||||
this.ScaleTo(1.25f, 500).FadeOut(250).Expire();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user