This commit is contained in:
smoogipoo
2018-01-12 17:19:59 +09:00
parent 441e8aced5
commit 8a04c954a9
3 changed files with 8 additions and 11 deletions

View File

@ -98,12 +98,11 @@ namespace osu.Game.Rulesets.UI.Scrolling
{
base.Update();
if (initialStateCache.IsValid)
return;
speedChangeVisualiser.ComputeInitialStates(Objects, direction, TimeRange, DrawSize);
initialStateCache.Validate();
if (!initialStateCache.IsValid)
{
speedChangeVisualiser.ComputeInitialStates(Objects, direction, TimeRange, DrawSize);
initialStateCache.Validate();
}
}
protected override void UpdateAfterChildrenLife()