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:
parent
84d4d044d6
commit
6a62f38c33
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue