1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 17:27:24 +08:00

Merge pull request #4678 from peppy/fix-retry-sound

Don't play screen "back" sample when retrying
This commit is contained in:
Dan Balasescu 2019-05-07 13:00:20 +09:00 committed by GitHub
commit 5cf7e4603a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -59,6 +59,8 @@ namespace osu.Game.Screens
private SampleChannel sampleExit;
protected virtual bool PlayResumeSound => true;
public virtual float BackgroundParallaxAmount => 1;
public Bindable<WorkingBeatmap> Beatmap { get; private set; }
@ -117,6 +119,7 @@ namespace osu.Game.Screens
public override void OnResuming(IScreen last)
{
if (PlayResumeSound)
sampleExit?.Play();
applyArrivingDefaults(true);

View File

@ -44,6 +44,8 @@ namespace osu.Game.Screens.Play
public override bool DisallowExternalBeatmapRulesetChanges => true;
protected override bool PlayResumeSound => false;
private Task loadTask;
private InputManager inputManager;