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 class JudgementInfo
{ {
public ulong? ComboAtHit;
public HitResult? Result; public HitResult? Result;
public double TimeOffset; public double TimeOffset;
} }

View File

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