Add scrolling gameplay visualisation mode to latency certifier

This commit is contained in:
Dean Herbert
2022-06-13 17:18:32 +09:00
parent fd09760421
commit f997886142
4 changed files with 222 additions and 0 deletions

View File

@ -108,6 +108,20 @@ 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();
}