1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-12-23 13:48:23 +00:00

fix hold note

This commit is contained in:
lemz 2024-06-11 20:52:08 +02:00 committed by EliteMasterEric
parent 49d302be95
commit c4855c0ca8
2 changed files with 10 additions and 0 deletions

View file

@ -129,6 +129,11 @@ class SustainTrail extends FlxSprite
endOffset = bottomClip = 1;
antialiasing = false;
}
else
{
endOffset = 0.5;
bottomClip = 0.9;
}
zoom = 1.0;
zoom *= noteStyle.fetchHoldNoteScale();

View file

@ -69,6 +69,11 @@ class ChartEditorHoldNoteSprite extends SustainTrail
endOffset = bottomClip = 1;
antialiasing = false;
}
else
{
endOffset = 0.5;
bottomClip = 0.9;
}
zoom = 1.0;
zoom *= noteStyle.fetchHoldNoteScale();