Merge branch 'facade-container' of https://github.com/nyquillerium/osu into facade-container

This commit is contained in:
David Zhao 2019-04-08 15:24:59 +09:00
commit 376bed3a30
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ protected override void Update()
var amount = (float)Interpolation.ApplyEasing(easing, Math.Min(elapsedDuration / duration, 1));
// Interpolate the position of the logo, where amount 0 is where the logo was when it first began interpolating, and amount 1 is the target location.
Logo.Position = Vector2.Lerp((Vector2)startPosition, localPos, amount);
Logo.Position = Vector2.Lerp(startPosition.Value, localPos, amount);
}
else
{