mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 16:02:55 +08:00
Add actual statistics changes to better visualise layout
This commit is contained in:
parent
aebbffacf2
commit
654a7057fc
@ -87,7 +87,44 @@ namespace osu.Game.Tests.Visual.Ranking
|
|||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
State = { Value = Visibility.Visible },
|
State = { Value = Visibility.Visible },
|
||||||
Score = { Value = score },
|
Score = { Value = score },
|
||||||
StatisticsUpdate = { Value = new SoloStatisticsUpdate(score, new UserStatistics(), new UserStatistics()) }
|
StatisticsUpdate =
|
||||||
|
{
|
||||||
|
Value = new SoloStatisticsUpdate(score, new UserStatistics
|
||||||
|
{
|
||||||
|
Level = new UserStatistics.LevelInfo
|
||||||
|
{
|
||||||
|
Current = 5,
|
||||||
|
Progress = 20,
|
||||||
|
},
|
||||||
|
GlobalRank = 38000,
|
||||||
|
CountryRank = 12006,
|
||||||
|
PP = 2134,
|
||||||
|
RankedScore = 21123849,
|
||||||
|
Accuracy = 0.985,
|
||||||
|
PlayCount = 13375,
|
||||||
|
PlayTime = 354490,
|
||||||
|
TotalScore = 128749597,
|
||||||
|
TotalHits = 0,
|
||||||
|
MaxCombo = 1233,
|
||||||
|
}, new UserStatistics
|
||||||
|
{
|
||||||
|
Level = new UserStatistics.LevelInfo
|
||||||
|
{
|
||||||
|
Current = 5,
|
||||||
|
Progress = 30,
|
||||||
|
},
|
||||||
|
GlobalRank = 36000,
|
||||||
|
CountryRank = 12000,
|
||||||
|
PP = (decimal)2134.5,
|
||||||
|
RankedScore = 23897015,
|
||||||
|
Accuracy = 0.984,
|
||||||
|
PlayCount = 13376,
|
||||||
|
PlayTime = 35789,
|
||||||
|
TotalScore = 132218497,
|
||||||
|
TotalHits = 0,
|
||||||
|
MaxCombo = 1233,
|
||||||
|
})
|
||||||
|
}
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user