mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
Merge pull request #263 from FunkinCrew/bugfix/note-sustain-rendering
Fix an issue where hold notes early in a song would not render properly.
This commit is contained in:
commit
97dea7403d
1 changed files with 5 additions and 3 deletions
|
@ -149,9 +149,9 @@ class SustainTrail extends FlxSprite
|
|||
if (sustainLength == s) return s;
|
||||
|
||||
height = sustainHeight(s, getScrollSpeed());
|
||||
// updateColorTransform();
|
||||
this.sustainLength = s;
|
||||
updateClipping();
|
||||
return sustainLength = s;
|
||||
return this.sustainLength;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -162,13 +162,15 @@ class SustainTrail extends FlxSprite
|
|||
public function updateClipping(songTime:Float = 0):Void
|
||||
{
|
||||
var clipHeight:Float = FlxMath.bound(sustainHeight(sustainLength - (songTime - strumTime), getScrollSpeed()), 0, height);
|
||||
if (clipHeight == 0)
|
||||
if (clipHeight <= 0.1)
|
||||
{
|
||||
visible = false;
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
visible = true;
|
||||
}
|
||||
|
||||
var bottomHeight:Float = graphic.height * zoom * endOffset;
|
||||
var partHeight:Float = clipHeight - bottomHeight;
|
||||
|
|
Loading…
Reference in a new issue