mirror of
https://github.com/osukey/osukey.git
synced 2025-05-24 23:17:25 +09:00
Fix post-merge breakage
This commit is contained in:
parent
bc54b3c85f
commit
6fd95e0c52
@ -34,11 +34,6 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
|||||||
|
|
||||||
public TJudgement Judgement;
|
public TJudgement Judgement;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether this hit object has been judged.
|
|
||||||
/// </summary>
|
|
||||||
public virtual bool Judged => (Judgement?.Result ?? HitResult.None) != HitResult.None;
|
|
||||||
|
|
||||||
protected abstract TJudgement CreateJudgement();
|
protected abstract TJudgement CreateJudgement();
|
||||||
|
|
||||||
protected abstract void UpdateState(ArmedState state);
|
protected abstract void UpdateState(ArmedState state);
|
||||||
@ -82,7 +77,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether this hit object and all of its nested hit objects have been judged.
|
/// Whether this hit object and all of its nested hit objects have been judged.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed override bool Judged => base.Judged && (NestedHitObjects?.All(h => h.Judged) ?? true);
|
public bool Judged => (Judgement?.Result ?? HitResult.None) != HitResult.None && (NestedHitObjects?.All(h => h.Judged) ?? true);
|
||||||
|
|
||||||
protected DrawableHitObject(TObject hitObject)
|
protected DrawableHitObject(TObject hitObject)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user