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

Fix volume glow being cut off

Fixes #2285.
This commit is contained in:
smoogipoo 2018-03-23 18:17:14 +09:00
parent 72531229fe
commit 52fa837447

View File

@ -12,6 +12,7 @@ using osu.Framework.Graphics.Effects;
using osu.Framework.Graphics.Shapes; using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.UserInterface; using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input.Bindings; using osu.Framework.Input.Bindings;
using osu.Framework.MathUtils;
using osu.Game.Graphics; using osu.Game.Graphics;
using osu.Game.Graphics.Sprites; using osu.Game.Graphics.Sprites;
using osu.Game.Input.Bindings; using osu.Game.Input.Bindings;
@ -93,19 +94,25 @@ namespace osu.Game.Overlays.Volume
Colour = colours.Gray2, Colour = colours.Gray2,
Size = new Vector2(0.8f) Size = new Vector2(0.8f)
}, },
(volumeCircle = new CircularProgress new Container
{ {
RelativeSizeAxes = Axes.Both,
InnerRadius = 0.05f,
Rotation = 180,
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Origin = Anchor.Centre, Origin = Anchor.Centre,
Size = new Vector2(0.8f) RelativeSizeAxes = Axes.Both,
}).WithEffect(new GlowEffect Size = new Vector2(0.8f),
{ Padding = new MarginPadding(-Blur.KernelSize(5)),
Colour = meterColour, Rotation = 180,
Strength = 2 Child = (volumeCircle = new CircularProgress
}), {
RelativeSizeAxes = Axes.Both,
InnerRadius = 0.05f,
}).WithEffect(new GlowEffect
{
Colour = meterColour,
Strength = 2,
PadExtent = true
}),
},
maxGlow = (text = new OsuSpriteText maxGlow = (text = new OsuSpriteText
{ {
Anchor = Anchor.Centre, Anchor = Anchor.Centre,