Skip to content

Commit

Permalink
fixed note alpha not working correctly part 2
Browse files Browse the repository at this point in the history
closes #847
  • Loading branch information
JordanSantiagoYT committed Jan 12, 2025
1 parent 15aeab9 commit 4bf490d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Note.hx
Original file line number Diff line number Diff line change
Expand Up @@ -669,12 +669,12 @@ class Note extends FlxSprite
if (!mustPress)
{
visible = ClientPrefs.opponentStrums;
alpha = multAlpha = ClientPrefs.middleScroll ? ClientPrefs.oppNoteAlpha : 1;
alpha = ClientPrefs.middleScroll ? ClientPrefs.oppNoteAlpha : 1;
}
else
{
if (!visible) visible = true;
for (i in [alpha, multAlpha]) if (i != 1) i = 1;
if (alpha != 1) alpha = 1; //if (multAlpha != 1) multAlpha = 1;
}
if (flipY) flipY = false;
}
Expand Down

0 comments on commit 4bf490d

Please sign in to comment.