mirror of
https://github.com/ppy/osu.git
synced 2025-01-16 04:32:57 +08:00
Merge remote-tracking branch 'refs/remotes/ppy/master' into pause_buttons_refactor
This commit is contained in:
commit
2348b619a3
@ -1 +1 @@
|
|||||||
Subproject commit 2d8a6c1699ff1acd3915fc28e8906dabf1b145a3
|
Subproject commit e67453159540f5008b5efadfbc12dfb3f4bee1f7
|
@ -13,14 +13,14 @@ namespace osu.Game.Screens.Select.Leaderboards
|
|||||||
{
|
{
|
||||||
public class DrawableRank : Container
|
public class DrawableRank : Container
|
||||||
{
|
{
|
||||||
private readonly Sprite sprite;
|
private readonly Sprite rankSprite;
|
||||||
|
|
||||||
public ScoreRank Rank { get; private set; }
|
public ScoreRank Rank { get; private set; }
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(TextureStore textures)
|
private void load(TextureStore textures)
|
||||||
{
|
{
|
||||||
sprite.Texture = textures.Get($@"Badges/ScoreRanks/{Rank.GetDescription()}");
|
rankSprite.Texture = textures.Get($@"Grades/{Rank.GetDescription()}");
|
||||||
}
|
}
|
||||||
|
|
||||||
public DrawableRank(ScoreRank rank)
|
public DrawableRank(ScoreRank rank)
|
||||||
@ -29,10 +29,7 @@ namespace osu.Game.Screens.Select.Leaderboards
|
|||||||
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
sprite = new Sprite
|
rankSprite = new Sprite { FillMode = FillMode.Fill },
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user