1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-25 01:39:55 +08:00

Merge pull request #14403 from Joehuu/fix-nub-glow

Fix nub glow color not having 0 alpha when being set
This commit is contained in:
Dean Herbert
2021-08-20 15:07:30 +09:00
committed by GitHub
Unverified
+1 -1
View File
@@ -149,7 +149,7 @@ namespace osu.Game.Graphics.UserInterface
glowColour = value;
var effect = EdgeEffect;
effect.Colour = value;
effect.Colour = Glowing ? value : value.Opacity(0);
EdgeEffect = effect;
}
}