1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 12:40:18 +08:00

Add statistic item for mania & taiko

This commit is contained in:
Henry Lin
2022-02-05 21:30:35 +08:00
Unverified
parent c35ef917a1
commit 440b674bb0
2 changed files with 22 additions and 0 deletions
+11
View File
@@ -378,6 +378,17 @@ namespace osu.Game.Rulesets.Mania
}
},
new StatisticRow
{
Columns = new[]
{
new StatisticItem("Performance Breakdown", () => new PerformanceBreakdownChart(score)
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y
}),
}
},
new StatisticRow
{
Columns = new[]
{
+11
View File
@@ -221,6 +221,17 @@ namespace osu.Game.Rulesets.Taiko
}
},
new StatisticRow
{
Columns = new[]
{
new StatisticItem("Performance Breakdown", () => new PerformanceBreakdownChart(score)
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y
}),
}
},
new StatisticRow
{
Columns = new[]
{