mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 09:43:10 +08:00
Always play pop in sequence
This commit is contained in:
parent
57b8c32f25
commit
9b367d645d
@ -29,6 +29,8 @@ namespace osu.Game.Overlays.Mods
|
||||
[Cached]
|
||||
public Bindable<IReadOnlyList<Mod>> SelectedMods { get; private set; } = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
|
||||
|
||||
protected override bool StartHidden => true;
|
||||
|
||||
private readonly BindableBool customisationVisible = new BindableBool();
|
||||
|
||||
private DifficultyMultiplierDisplay multiplierDisplay;
|
||||
@ -164,7 +166,8 @@ namespace osu.Game.Overlays.Mods
|
||||
modSettingsArea = new ModSettingsArea
|
||||
{
|
||||
Anchor = Anchor.BottomCentre,
|
||||
Origin = Anchor.BottomCentre
|
||||
Origin = Anchor.BottomCentre,
|
||||
Height = 0
|
||||
}
|
||||
};
|
||||
|
||||
@ -190,8 +193,6 @@ namespace osu.Game.Overlays.Mods
|
||||
}
|
||||
|
||||
customisationVisible.BindValueChanged(_ => updateCustomisationVisualState(), true);
|
||||
|
||||
FinishTransforms(true);
|
||||
}
|
||||
|
||||
private void updateMultiplier()
|
||||
|
Loading…
Reference in New Issue
Block a user