1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 21:02:55 +08:00

Remove pointless zero opacity specification

This commit is contained in:
Dean Herbert 2023-06-26 13:19:07 +09:00
parent 5477ef6bfb
commit 8d2dccbda5

View File

@ -4,7 +4,6 @@
#nullable disable #nullable disable
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Effects; using osu.Framework.Graphics.Effects;
@ -32,7 +31,7 @@ namespace osu.Game.Overlays
Masking = true; Masking = true;
EdgeEffect = new EdgeEffectParameters EdgeEffect = new EdgeEffectParameters
{ {
Colour = Color4.Black.Opacity(0), Colour = Color4.Black,
Type = EdgeEffectType.Shadow, Type = EdgeEffectType.Shadow,
Radius = 10, Radius = 10,
Hollow = true, Hollow = true,