mirror of
https://github.com/ppy/osu.git
synced 2025-01-19 15:02:54 +08:00
rearrange LaneCover members
This commit is contained in:
parent
25fb49d59f
commit
3b7d52da09
@ -85,6 +85,13 @@ namespace osu.Game.Rulesets.Mania.Mods
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[BackgroundDependencyLoader]
|
||||||
|
private void load(ManiaRulesetConfigManager configManager)
|
||||||
|
{
|
||||||
|
scrollDirection.BindTo(configManager.GetBindable<ManiaScrollingDirection>(ManiaRulesetSetting.ScrollDirection));
|
||||||
|
scrollDirection.BindValueChanged(onScrollDirectionChanged, true);
|
||||||
|
}
|
||||||
|
|
||||||
private void updateCoverage()
|
private void updateCoverage()
|
||||||
{
|
{
|
||||||
filled.Anchor = reversed ? Anchor.BottomLeft : Anchor.TopLeft;
|
filled.Anchor = reversed ? Anchor.BottomLeft : Anchor.TopLeft;
|
||||||
@ -118,13 +125,6 @@ namespace osu.Game.Rulesets.Mania.Mods
|
|||||||
updateCoverage();
|
updateCoverage();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
|
||||||
private void load(ManiaRulesetConfigManager configManager)
|
|
||||||
{
|
|
||||||
scrollDirection.BindTo(configManager.GetBindable<ManiaScrollingDirection>(ManiaRulesetSetting.ScrollDirection));
|
|
||||||
scrollDirection.BindValueChanged(onScrollDirectionChanged, true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user