1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 05:22:54 +08:00

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,
Texture = textures.Get(@"Online/supporter-pippi"),
},
new Sprite
new Container
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Width = 75,
Height = 75,
Margin = new MarginPadding { Top = 70 },
Texture = textures.Get(@"Online/supporter-heart"),
Margin = new MarginPadding { Top = 83 },
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"),
},
},
};
}