Fix taiko hitobjects potentially disappearing before being judged

This commit is contained in:
smoogipoo
2018-11-29 12:12:29 +09:00
parent 52bc47499f
commit aea84f737b
2 changed files with 2 additions and 2 deletions

View File

@ -84,6 +84,8 @@ namespace osu.Game.Rulesets.Objects.Drawables
public override bool RemoveCompletedTransforms => false;
protected override bool RequiresChildrenUpdate => true;
public override bool IsPresent => base.IsPresent || State.Value == ArmedState.Idle && Clock?.CurrentTime >= LifetimeStart;
public readonly Bindable<ArmedState> State = new Bindable<ArmedState>();
protected DrawableHitObject(HitObject hitObject)