Fix swells not stopping at the hit position

This commit is contained in:
smoogipoo
2018-01-04 21:45:29 +09:00
parent 4fee76ba0b
commit add68ff068
3 changed files with 7 additions and 4 deletions

View File

@ -29,9 +29,12 @@ namespace osu.Game.Rulesets.UI.Scrolling
RelativeSizeAxes = Axes.Both;
}
protected override void UpdateAfterChildren()
protected override void UpdateAfterChildrenLife()
{
base.UpdateAfterChildren();
base.UpdateAfterChildrenLife();
// We need to calculate this as soon as possible so that hitobjects
// get the final say in their positions
var currentMultiplier = controlPointAt(Time.Current);