mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-05-20 01:31:29 -04:00
fix hold note
This commit is contained in:
parent
49d302be95
commit
c4855c0ca8
2 changed files with 10 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue