From 45f59fd7aa5152f058c2766c9aa6f0a3b133d31f Mon Sep 17 00:00:00 2001 From: CharlesCatYT Date: Sat, 19 Oct 2024 00:24:45 -0400 Subject: [PATCH] maybe its cuz of the alpha thing idk i just suck at flixel --- source/funkin/play/notes/Strumline.hx | 6 +++--- source/funkin/play/notes/SustainTrail.hx | 2 +- .../debug/charting/components/ChartEditorHoldNoteSprite.hx | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/funkin/play/notes/Strumline.hx b/source/funkin/play/notes/Strumline.hx index 29aa1005..59328c81 100644 --- a/source/funkin/play/notes/Strumline.hx +++ b/source/funkin/play/notes/Strumline.hx @@ -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); @@ -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; diff --git a/source/funkin/play/notes/SustainTrail.hx b/source/funkin/play/notes/SustainTrail.hx index 20688578..71949211 100644 --- a/source/funkin/play/notes/SustainTrail.hx +++ b/source/funkin/play/notes/SustainTrail.hx @@ -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(); diff --git a/source/funkin/ui/debug/charting/components/ChartEditorHoldNoteSprite.hx b/source/funkin/ui/debug/charting/components/ChartEditorHoldNoteSprite.hx index 6a2ca4fb..3fa11c03 100644 --- a/source/funkin/ui/debug/charting/components/ChartEditorHoldNoteSprite.hx +++ b/source/funkin/ui/debug/charting/components/ChartEditorHoldNoteSprite.hx @@ -88,7 +88,7 @@ class ChartEditorHoldNoteSprite extends SustainTrail flipY = false; - alpha = 0.8; + alpha = 0.6; updateColorTransform(); @@ -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();