Add score statistic tracking (osu!).

This commit is contained in:
Dean Herbert
2017-04-19 15:40:10 +09:00
parent 662544e04f
commit 3b95fbab7d
10 changed files with 158 additions and 31 deletions

View File

@ -266,7 +266,7 @@ namespace osu.Game.Screens.Play
Delay(1000);
onCompletionEvent = Schedule(delegate
{
var score = scoreProcessor.CreateScore();
var score = scoreProcessor.GetPopulatedScore();
score.User = HitRenderer.Replay?.User ?? (Game as OsuGame)?.API?.LocalUser?.Value;
Push(new Results(score));
});