1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-15 11:22:55 +00:00

quicki fix for incorrect clip tweens

This commit is contained in:
Cameron Taylor 2024-06-04 16:51:27 -04:00
parent 84d4d044d6
commit 6a62f38c33

View file

@ -671,14 +671,9 @@ class SongMenuItem extends FlxSpriteGroup
ranking.alpha = this.selected ? 1 : 0.7;
ranking.color = this.selected ? 0xFFFFFFFF : 0xFFAAAAAA;
if (selected)
{
if (songText.tooLong == true) songText.initMove();
}
else
{
if (songText.tooLong == true) songText.resetText();
}
if (songText.tooLong) songText.resetText();
if (selected && songText.tooLong) songText.initMove();
}
}