Skip to content

Commit

Permalink
maybe its cuz of the alpha thing idk i just suck at flixel
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Oct 19, 2024
1 parent 92b9067 commit 45f59fd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions source/funkin/play/notes/Strumline.hx
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ class Strumline extends FlxSpriteGroup
{
note.holdNoteSprite.hitNote = true;
note.holdNoteSprite.missedNote = false;
note.holdNoteSprite.alpha = 0.8;
note.holdNoteSprite.alpha = 0.6;

note.holdNoteSprite.sustainLength = (note.holdNoteSprite.strumTime + note.holdNoteSprite.fullSustainLength)
- (conductorInUse.songPosition - conductorInUse.inputOffset);
Expand Down Expand Up @@ -731,14 +731,14 @@ class Strumline extends FlxSpriteGroup
holdNoteSprite.missedNote = false;
holdNoteSprite.hitNote = false;
holdNoteSprite.visible = true;
holdNoteSprite.alpha = 0.8;
holdNoteSprite.alpha = 0.6;

holdNoteSprite.x = this.x;
holdNoteSprite.x += getXPos(DIRECTIONS[note.getDirection() % KEY_COUNT]);
holdNoteSprite.x += STRUMLINE_SIZE / 2;
holdNoteSprite.x -= holdNoteSprite.width / 2;
holdNoteSprite.y = -9999;
holdNoteSprite.alpha = 0.8;
holdNoteSprite.alpha = 0.6;
}

return holdNoteSprite;
Expand Down
2 changes: 1 addition & 1 deletion source/funkin/play/notes/SustainTrail.hx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class SustainTrail extends FlxSprite

flipY = Preferences.downscroll;

alpha = 0.8;
alpha = 0.6;
// alpha = 1.0;
// calls updateColorTransform(), which initializes processedGraphic!
updateColorTransform();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class ChartEditorHoldNoteSprite extends SustainTrail

flipY = false;

alpha = 0.8;
alpha = 0.6;

updateColorTransform();

Expand Down Expand Up @@ -152,7 +152,7 @@ class ChartEditorHoldNoteSprite extends SustainTrail
hitNote = false;
active = true;
visible = true;
alpha = 0.8;
alpha = 0.6;
graphicWidth = graphic.width / 8 * zoom; // amount of notes * 2

updateHitbox();
Expand Down

0 comments on commit 45f59fd

Please sign in to comment.