1
0
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:
Bartłomiej Dach 2022-04-04 20:02:47 +02:00
parent 57b8c32f25
commit 9b367d645d
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -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()