Use star difficulty colour spectrum game-wide

This commit is contained in:
Salman Ahmed
2021-08-03 14:17:02 +03:00
parent 6fd97d67eb
commit 9a5e052dc0
5 changed files with 7 additions and 34 deletions

View File

@ -86,8 +86,8 @@ namespace osu.Game.Screens.OnlinePlay.Components
minDisplay.Current.Value = minDifficulty;
maxDisplay.Current.Value = maxDifficulty;
minBackground.Colour = colours.ForDifficultyRating(minDifficulty.DifficultyRating, true);
maxBackground.Colour = colours.ForDifficultyRating(maxDifficulty.DifficultyRating, true);
minBackground.Colour = colours.ForStarDifficulty(minDifficulty.Stars);
maxBackground.Colour = colours.ForStarDifficulty(maxDifficulty.Stars);
}
}
}