1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Move flags local to EndlessPlayer

This commit is contained in:
Dean Herbert 2023-12-06 17:18:35 +09:00
parent 639fac2d49
commit ca991f1f54
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -290,6 +290,10 @@ namespace osu.Game.Overlays.SkinEditor
{
protected override UserActivity? InitialActivity => null;
public override bool DisallowExternalBeatmapRulesetChanges => true;
public override bool? AllowGlobalTrackControl => false;
public EndlessPlayer(Func<IBeatmap, IReadOnlyList<Mod>, Score> createScore)
: base(createScore, new PlayerConfiguration
{

View File

@ -59,10 +59,6 @@ namespace osu.Game.Screens.Play
protected override bool PlayExitSound => !isRestarting;
public override bool DisallowExternalBeatmapRulesetChanges => true;
public override bool? AllowGlobalTrackControl => false;
protected override UserActivity InitialActivity => new UserActivity.InSoloGame(Beatmap.Value.BeatmapInfo, Ruleset.Value);
public override float BackgroundParallaxAmount => 0.1f;