mirror of
https://github.com/ppy/osu
synced 2024-12-15 11:25:29 +00:00
Fix note input ordering.
This commit is contained in:
parent
dcf879687d
commit
78067e085c
@ -189,7 +189,12 @@ namespace osu.Game.Rulesets.Mania.UI
|
||||
}
|
||||
}
|
||||
|
||||
public override void Add(DrawableHitObject<ManiaHitObject, ManiaJudgement> h) => Columns.ElementAt(h.HitObject.Column).Add(h);
|
||||
public override void Add(DrawableHitObject<ManiaHitObject, ManiaJudgement> h)
|
||||
{
|
||||
h.Depth = (float)h.HitObject.StartTime;
|
||||
|
||||
Columns.ElementAt(h.HitObject.Column).Add(h);
|
||||
}
|
||||
|
||||
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user