Merge pull request #557 from peppy/update-grade-textures

Update grade textures.
This commit is contained in:
Dan Balasescu
2017-03-28 09:26:09 +09:00
committed by GitHub
2 changed files with 4 additions and 7 deletions

View File

@ -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,
},
}; };
} }
} }