From d550a33bad94132ae9ed9b002510af6c63856be4 Mon Sep 17 00:00:00 2001 From: SMB <123291842+SMB-5@users.noreply.github.com> Date: Tue, 15 Oct 2024 17:35:21 +0800 Subject: [PATCH] gf as a easter egg to fix this --- source/states/TitleState.hx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/states/TitleState.hx b/source/states/TitleState.hx index d951751327d..7c72e730ba7 100644 --- a/source/states/TitleState.hx +++ b/source/states/TitleState.hx @@ -59,7 +59,7 @@ class TitleState extends MusicBeatState #if TITLE_SCREEN_EASTER_EGG final easterEggKeys:Array = [ - 'SHADOW', 'RIVEREN', 'BBPANZU', 'PESSY' + 'SHADOW', 'RIVEREN', 'BBPANZU', 'PESSY', 'GF' ]; final allowedKeys:String = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; var easterEggKeysBuffer:String = ''; @@ -328,6 +328,11 @@ class TitleState extends MusicBeatState gfPosition.y += 60; danceLeftFrames = [29, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]; danceRightFrames = [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28]; + case 'GF': + characterImage = 'gfDanceTitle'; + animationName = 'gfDance'; + danceLeftFrames = [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]; + danceRightFrames = [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]; } }