Move MusicController adjustment set to inside OsuScreen itself (and result nullable)

This commit is contained in:
Dean Herbert
2021-09-16 16:08:09 +09:00
parent 9057be1a02
commit fa693bb8a8
9 changed files with 23 additions and 25 deletions

View File

@ -56,7 +56,7 @@ namespace osu.Game.Screens.Play
protected override OverlayActivation InitialOverlayActivationMode => OverlayActivation.UserTriggered;
// We are managing our own adjustments (see OnEntering/OnExiting).
public override bool AllowTrackAdjustments => false;
public override bool? AllowTrackAdjustments => false;
private readonly IBindable<bool> gameActive = new Bindable<bool>(true);