Add a bool to specify whether judgements should be visible for certain DrawableHitObjects

This commit is contained in:
Dean Herbert
2017-10-09 20:17:05 +09:00
parent b1a2da58bc
commit d5892cf54e
5 changed files with 13 additions and 1 deletions

View File

@ -25,6 +25,11 @@ namespace osu.Game.Rulesets.Objects.Drawables
/// </summary>
public virtual Color4 AccentColour { get; set; } = Color4.Gray;
/// <summary>
/// Whether a visible judgement should be displayed when this representation is hit.
/// </summary>
public virtual bool DisplayJudgement => true;
protected DrawableHitObject(HitObject hitObject)
{
HitObject = hitObject;