mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
Add glow to footerV2 buttons
This commit is contained in:
parent
6cfe1356cd
commit
5e8f6df799
@ -5,6 +5,7 @@ using osu.Framework.Allocation;
|
||||
using osu.Framework.Bindables;
|
||||
using osu.Framework.Extensions.Color4Extensions;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Colour;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Effects;
|
||||
using osu.Framework.Graphics.Shapes;
|
||||
@ -68,6 +69,7 @@ namespace osu.Game.Screens.Select.FooterV2
|
||||
protected Container TextContainer;
|
||||
private readonly Box bar;
|
||||
private readonly Box backgroundBox;
|
||||
private readonly Box glowBox;
|
||||
|
||||
public FooterButtonV2()
|
||||
{
|
||||
@ -93,6 +95,10 @@ namespace osu.Game.Screens.Select.FooterV2
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both
|
||||
},
|
||||
glowBox = new Box
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both
|
||||
},
|
||||
// For elements that should not be sheared.
|
||||
new Container
|
||||
{
|
||||
@ -211,6 +217,7 @@ namespace osu.Game.Screens.Select.FooterV2
|
||||
}
|
||||
|
||||
backgroundBox.FadeColour(backgroundColour, transition_length, Easing.OutQuint);
|
||||
glowBox.Colour = ColourInfo.GradientVertical(buttonAccentColour.Opacity(0f), buttonAccentColour.Opacity(0.2f));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user