Add glow to supporter promo on changelog

Added glow to the supporter promo at the end of the changelog, as it is on the website.
This commit is contained in:
Jacob Van Meter
2021-08-14 20:00:26 -04:00
parent 9e799efb1d
commit 95943fdb25

View File

@ -138,14 +138,28 @@ namespace osu.Game.Overlays.Changelog
FillMode = FillMode.Fill, FillMode = FillMode.Fill,
Texture = textures.Get(@"Online/supporter-pippi"), Texture = textures.Get(@"Online/supporter-pippi"),
}, },
new Sprite new Container
{ {
Anchor = Anchor.TopCentre, Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre, Origin = Anchor.TopCentre,
Width = 75, Width = 75,
Height = 75, Height = 75,
Margin = new MarginPadding { Top = 70 }, Margin = new MarginPadding { Top = 83 },
Texture = textures.Get(@"Online/supporter-heart"), Masking = true,
EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Shadow,
Colour = Color4.HotPink.Opacity(0.88f),
Offset = new Vector2(0, 0),
Radius = 17,
Roundness = 39f,
},
Child = new Sprite
{
Width = 75,
Height = 75,
Texture = textures.Get(@"Online/supporter-heart"),
},
}, },
}; };
} }