1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00

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

View File

@ -5,6 +5,7 @@ using System.Collections.Generic;
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 @@ namespace osu.Game.Rulesets.Mania.Edit
public DrawableManiaEditorRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod>? mods)
: base(ruleset, beatmap, mods)
{
ScrollMethod = ScrollVisualisationMethod.Constant;
}
protected override Playfield CreatePlayfield() => new ManiaEditorPlayfield(Beatmap.Stages)