Fix Axes.None requirement for FacadeContainer

This commit is contained in:
David Zhao
2019-04-03 19:57:22 +09:00
parent 020be50f03
commit 2ed945605e
5 changed files with 229 additions and 125 deletions

View File

@ -172,7 +172,11 @@ namespace osu.Game.Screens.Play
content.SetLogo(logo, 1.0f, 500, Easing.InOutExpo);
Scheduler.AddDelayed(() => content.Tracking = true, resuming ? 0 : 500);
Scheduler.AddDelayed(() =>
{
content.Tracking = true;
//logo.RelativePositionAxes = Axes.None;
}, resuming ? 0 : 500);
}
protected override void LogoExiting(OsuLogo logo)