1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Fix osu!mania note masking resulting in miss judgements not occurring.

This commit is contained in:
smoogipooo 2017-09-12 09:26:09 +09:00
parent 19b048ef4a
commit 3c98bc065f

View File

@ -30,12 +30,12 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
Masking = true;
Add(headPiece = new NotePiece
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre
Origin = Anchor.TopCentre,
Masking = true
});
}
@ -69,7 +69,7 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
if (!ApplyGlow)
return;
EdgeEffect = new EdgeEffectParameters
headPiece.EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Glow,
Colour = AccentColour.Opacity(0.5f),