Merge remote-tracking branch 'upstream/master' into hud-improvements

# Conflicts:
#	osu.Game.Modes.Osu/Scoring/OsuScoreProcessor.cs
This commit is contained in:
Dean Herbert
2017-04-14 19:29:59 +09:00
53 changed files with 1086 additions and 222 deletions

View File

@ -115,8 +115,6 @@ namespace osu.Game.Graphics.UserInterface
{
base.LoadComplete();
Flush(false, TransformType);
DisplayedCountSpriteText.Text = FormatCount(Current);
}
@ -210,8 +208,8 @@ namespace osu.Game.Graphics.UserInterface
? GetProportionalDuration(currentValue, newValue)
: RollingDuration;
transform.StartTime = Time.Current;
transform.EndTime = Time.Current + rollingTotalDuration;
transform.StartTime = TransformStartTime;
transform.EndTime = TransformStartTime + rollingTotalDuration;
transform.StartValue = currentValue;
transform.EndValue = newValue;
transform.Easing = RollingEasing;