Don't play 'back' sample when exiting Editor

This commit is contained in:
Jamie Taylor 2022-06-15 13:04:17 +09:00
parent 6b744a14b0
commit 5e3ccf7087
No known key found for this signature in database
GPG Key ID: 2ACFA8B6370B8C8C
2 changed files with 4 additions and 0 deletions

View File

@ -63,6 +63,8 @@ namespace osu.Game.Screens.Edit
public override bool? AllowTrackAdjustments => false;
protected override bool PlayExitSound => false;
protected bool HasUnsavedChanges
{
get

View File

@ -40,6 +40,8 @@ namespace osu.Game.Screens.Edit
public override bool DisallowExternalBeatmapRulesetChanges => true;
protected override bool PlayExitSound => false;
[Resolved]
private BeatmapManager beatmapManager { get; set; }