Disable SVs from being visualised in mania editor

This commit is contained in:
Dan Balasescu 2023-08-15 18:51:24 +09:00
parent 4e96853c75
commit ec9e7f14a8
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@
using osu.Framework.Graphics;
using osuTK;
using osu.Game.Beatmaps;
using osu.Game.Configuration;
using osu.Game.Rulesets.Mania.UI;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.UI;
@ -19,6 +20,7 @@ public partial class DrawableManiaEditorRuleset : DrawableManiaRuleset
public DrawableManiaEditorRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod>? mods)
: base(ruleset, beatmap, mods)
{
ScrollMethod = ScrollVisualisationMethod.Constant;
}
protected override Playfield CreatePlayfield() => new ManiaEditorPlayfield(Beatmap.Stages)