1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-19 14:42:56 +08:00

Merge pull request #11977 from Joehuu/fix-legacy-combo-counter-depth

This commit is contained in:
Bartłomiej Dach 2021-03-07 16:49:13 +01:00 committed by GitHub
commit 418f33dc17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,14 +84,15 @@ namespace osu.Game.Screens.Play.HUD
{ {
InternalChildren = new[] InternalChildren = new[]
{ {
displayedCountSpriteText = createSpriteText().With(s =>
{
s.Alpha = 0;
}),
popOutCount = createSpriteText().With(s => popOutCount = createSpriteText().With(s =>
{ {
s.Alpha = 0; s.Alpha = 0;
s.Margin = new MarginPadding(0.05f); s.Margin = new MarginPadding(0.05f);
s.Blending = BlendingParameters.Additive;
}),
displayedCountSpriteText = createSpriteText().With(s =>
{
s.Alpha = 0;
}) })
}; };