mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09: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:
@ -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"),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user