Skip to content

Commit

Permalink
[BUGFIX] Make PauseSubState texts tween from zero transparency
Browse files Browse the repository at this point in the history
The name speaks for itself

Makes texts appear more beautiful (as in previous versions)
  • Loading branch information
PurSnake authored and charlesisfeline committed Jul 16, 2024
1 parent f3bb1be commit 4f8ff1b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions source/funkin/play/PauseSubState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ class PauseSubState extends MusicBeatSubState
var delay:Float = 0.1;
for (child in metadata.members)
{
child.alpha = 0;
FlxTween.tween(child, {alpha: 1, y: child.y + 5}, 1.8, {ease: FlxEase.quartOut, startDelay: delay});
delay += 0.1;
}
Expand Down

0 comments on commit 4f8ff1b

Please sign in to comment.