mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
Merge branch 'master' into make_pause_menu_translatable
This commit is contained in:
commit
dcfc99a092
@ -233,7 +233,13 @@ namespace osu.Game.Screens
|
||||
/// </summary>
|
||||
protected virtual void LogoArriving(OsuLogo logo, bool resuming)
|
||||
{
|
||||
ApplyLogoArrivingDefaults(logo);
|
||||
logo.Action = null;
|
||||
logo.FadeOut(300, Easing.OutQuint);
|
||||
logo.Anchor = Anchor.TopLeft;
|
||||
logo.Origin = Anchor.Centre;
|
||||
logo.RelativePositionAxes = Axes.Both;
|
||||
logo.Triangles = true;
|
||||
logo.Ripple = true;
|
||||
}
|
||||
|
||||
private void applyArrivingDefaults(bool isResuming)
|
||||
@ -244,22 +250,6 @@ namespace osu.Game.Screens
|
||||
}, true);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Applies default animations to an arriving logo.
|
||||
/// Todo: This should not exist.
|
||||
/// </summary>
|
||||
/// <param name="logo">The logo to apply animations to.</param>
|
||||
public static void ApplyLogoArrivingDefaults(OsuLogo logo)
|
||||
{
|
||||
logo.Action = null;
|
||||
logo.FadeOut(300, Easing.OutQuint);
|
||||
logo.Anchor = Anchor.TopLeft;
|
||||
logo.Origin = Anchor.Centre;
|
||||
logo.RelativePositionAxes = Axes.Both;
|
||||
logo.Triangles = true;
|
||||
logo.Ripple = true;
|
||||
}
|
||||
|
||||
private void onExitingLogo()
|
||||
{
|
||||
logo?.AppendAnimatingAction(() => LogoExiting(logo), false);
|
||||
|
Loading…
Reference in New Issue
Block a user