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
commit e9131731d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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