mirror of
https://github.com/osukey/osukey.git
synced 2025-06-29 15:17:57 +09:00
Fix hold notes handling all input ever
This commit is contained in:
parent
08f757a584
commit
6252b8aa42
@ -275,9 +275,8 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
beginHoldAt(Time.Current - Head.HitObject.StartTime);
|
beginHoldAt(Time.Current - Head.HitObject.StartTime);
|
||||||
Head.UpdateResult();
|
|
||||||
|
|
||||||
return true;
|
return Head.UpdateResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void beginHoldAt(double timeOffset)
|
private void beginHoldAt(double timeOffset)
|
||||||
|
@ -25,7 +25,7 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|||||||
Origin = Anchor.TopCentre;
|
Origin = Anchor.TopCentre;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateResult() => base.UpdateResult(true);
|
public bool UpdateResult() => base.UpdateResult(true);
|
||||||
|
|
||||||
protected override void UpdateInitialTransforms()
|
protected override void UpdateInitialTransforms()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user