mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-04-05 11:34:48 +00:00
fix hold note
This commit is contained in:
parent
49d302be95
commit
c4855c0ca8
source/funkin
|
@ -129,6 +129,11 @@ class SustainTrail extends FlxSprite
|
||||||
endOffset = bottomClip = 1;
|
endOffset = bottomClip = 1;
|
||||||
antialiasing = false;
|
antialiasing = false;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
endOffset = 0.5;
|
||||||
|
bottomClip = 0.9;
|
||||||
|
}
|
||||||
|
|
||||||
zoom = 1.0;
|
zoom = 1.0;
|
||||||
zoom *= noteStyle.fetchHoldNoteScale();
|
zoom *= noteStyle.fetchHoldNoteScale();
|
||||||
|
|
|
@ -69,6 +69,11 @@ class ChartEditorHoldNoteSprite extends SustainTrail
|
||||||
endOffset = bottomClip = 1;
|
endOffset = bottomClip = 1;
|
||||||
antialiasing = false;
|
antialiasing = false;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
endOffset = 0.5;
|
||||||
|
bottomClip = 0.9;
|
||||||
|
}
|
||||||
|
|
||||||
zoom = 1.0;
|
zoom = 1.0;
|
||||||
zoom *= noteStyle.fetchHoldNoteScale();
|
zoom *= noteStyle.fetchHoldNoteScale();
|
||||||
|
|
Loading…
Reference in a new issue