mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
Merge branch 'master' into hub-send-version-hash
This commit is contained in:
@ -111,6 +111,6 @@ namespace osu.Game.Online.API
|
|||||||
/// <param name="username">The username to create the account with.</param>
|
/// <param name="username">The username to create the account with.</param>
|
||||||
/// <param name="password">The password to create the account with.</param>
|
/// <param name="password">The password to create the account with.</param>
|
||||||
/// <returns>Any errors encoutnered during account creation.</returns>
|
/// <returns>Any errors encoutnered during account creation.</returns>
|
||||||
RegistrationRequest.RegistrationRequestErrors CreateAccount(string email, string username, string password);
|
RegistrationRequest.RegistrationRequestErrors? CreateAccount(string email, string username, string password);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -176,6 +176,7 @@ namespace osu.Game.Overlays.Volume
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
Bindable.ValueChanged += volume =>
|
Bindable.ValueChanged += volume =>
|
||||||
{
|
{
|
||||||
this.TransformTo("DisplayVolume",
|
this.TransformTo("DisplayVolume",
|
||||||
@ -183,6 +184,7 @@ namespace osu.Game.Overlays.Volume
|
|||||||
400,
|
400,
|
||||||
Easing.OutQuint);
|
Easing.OutQuint);
|
||||||
};
|
};
|
||||||
|
|
||||||
bgProgress.Current.Value = 0.75f;
|
bgProgress.Current.Value = 0.75f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,15 +68,19 @@ namespace osu.Game.Screens
|
|||||||
|
|
||||||
public override bool OnExiting(IScreen next)
|
public override bool OnExiting(IScreen next)
|
||||||
{
|
{
|
||||||
this.FadeOut(transition_length, Easing.OutExpo);
|
if (IsLoaded)
|
||||||
this.MoveToX(x_movement_amount, transition_length, Easing.OutExpo);
|
{
|
||||||
|
this.FadeOut(transition_length, Easing.OutExpo);
|
||||||
|
this.MoveToX(x_movement_amount, transition_length, Easing.OutExpo);
|
||||||
|
}
|
||||||
|
|
||||||
return base.OnExiting(next);
|
return base.OnExiting(next);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void OnResuming(IScreen last)
|
public override void OnResuming(IScreen last)
|
||||||
{
|
{
|
||||||
this.MoveToX(0, transition_length, Easing.OutExpo);
|
if (IsLoaded)
|
||||||
|
this.MoveToX(0, transition_length, Easing.OutExpo);
|
||||||
base.OnResuming(last);
|
base.OnResuming(last);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user