Merge pull request #1561 from cuckydev/master

Fix note alpha during sustain clip
This commit is contained in:
Kade M
2021-08-02 22:05:57 -07:00
committed by GitHub

View File

@@ -274,7 +274,7 @@ class Note extends FlxSprite
wasGoodHit = true;
}
if (tooLate)
if (tooLate && !wasGoodHit)
{
if (alpha > 0.3)
alpha = 0.3;