1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 12:42:56 +08:00

Add combo info to JudgementInfo.

This commit is contained in:
Dean Herbert 2016-11-29 21:46:30 +09:00
parent f8c1f4dd58
commit 18d331f869
2 changed files with 3 additions and 0 deletions

View File

@ -111,6 +111,7 @@ namespace osu.Game.Modes.Objects.Drawables
public class JudgementInfo
{
public ulong? ComboAtHit;
public HitResult? Result;
public double TimeOffset;
}

View File

@ -27,6 +27,8 @@ namespace osu.Game.Modes
{
Judgements.Add(judgement);
UpdateCalculations();
judgement.ComboAtHit = (ulong)Combo.Value;
}
/// <summary>