Skip to content

Commit

Permalink
Merge pull request KadeArchive#1561 from cuckydev/master
Browse files Browse the repository at this point in the history
Fix note alpha during sustain clip
  • Loading branch information
Kade-github authored Aug 3, 2021
2 parents 005f72e + 7c1f566 commit e913173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Note.hx
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ class Note extends FlxSprite
wasGoodHit = true;
}

if (tooLate)
if (tooLate && !wasGoodHit)
{
if (alpha > 0.3)
alpha = 0.3;
Expand Down

0 comments on commit e913173

Please sign in to comment.