Fix logo flying off-screen when exiting game

This commit is contained in:
Dean Herbert 2018-08-20 14:58:02 +09:00
parent 9376a4fe49
commit 39aa98d12d
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ protected override void Update()
if (logo != null)
{
if (logoTracking && iconFacade.IsLoaded)
if (logoTracking && logo.RelativePositionAxes == Axes.None && iconFacade.IsLoaded)
logo.Position = logoTrackingPosition;
iconFacade.Width = logo.SizeForFlow * 0.5f;