mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 16:13:34 +08:00
Make scores slanted in test scene
This commit is contained in:
parent
9b84d8ac2f
commit
1f01293783
@ -53,15 +53,22 @@ namespace osu.Game.Tests.Visual.SongSelect
|
||||
Width = relativeWidth,
|
||||
Anchor = Anchor.Centre,
|
||||
Origin = Anchor.Centre,
|
||||
Spacing = new Vector2(0, 10),
|
||||
RelativeSizeAxes = Axes.X,
|
||||
AutoSizeAxes = Axes.Y,
|
||||
Spacing = new Vector2(0f, 2f),
|
||||
},
|
||||
drawWidthText = new OsuSpriteText(),
|
||||
};
|
||||
|
||||
int i = 0;
|
||||
|
||||
foreach (var scoreInfo in getTestScores())
|
||||
fillFlow.Add(new LeaderboardScoreV2(scoreInfo, scoreInfo.Position, scoreInfo.User.Id == 2));
|
||||
{
|
||||
fillFlow.Add(new LeaderboardScoreV2(scoreInfo, scoreInfo.Position, scoreInfo.User.Id == 2)
|
||||
{
|
||||
Margin = new MarginPadding { Right = 10f * i, Left = -10f * i++ },
|
||||
});
|
||||
}
|
||||
|
||||
foreach (var score in fillFlow.Children)
|
||||
score.Show();
|
||||
|
Loading…
Reference in New Issue
Block a user