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 Jun 1, 2024
1 parent 3b74a14 commit 7aa29bb
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 @@ -313,6 +313,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 7aa29bb

Please sign in to comment.