Remove scrolling gameplay mode for now

This commit is contained in:
Dean Herbert
2022-06-10 19:43:09 +09:00
parent ef5c1a1ecb
commit 837958b254
2 changed files with 0 additions and 15 deletions

View File

@ -108,20 +108,6 @@ namespace osu.Game.Screens.Utility
};
break;
case LatencyVisualMode.ScrollingGameplay:
visualContent.Children = new Drawable[]
{
new ScrollingGameplay
{
RelativeSizeAxes = Axes.Both,
},
new LatencyCursorContainer
{
RelativeSizeAxes = Axes.Both,
},
};
break;
default:
throw new ArgumentOutOfRangeException();
}

View File

@ -7,7 +7,6 @@ namespace osu.Game.Screens.Utility
public enum LatencyVisualMode
{
CircleGameplay,
ScrollingGameplay,
Simple,
}
}