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

add saruky gf ringtone as easter egg

This commit is contained in:
Cameron Taylor 2024-05-01 16:23:02 -04:00
parent 05361af964
commit 0f6ee32d8f

View file

@ -62,6 +62,7 @@ class TitleState extends MusicBeatState
curWacky = FlxG.random.getObject(getIntroTextShit()); curWacky = FlxG.random.getObject(getIntroTextShit());
FlxG.sound.cache(Paths.music('freakyMenu/freakyMenu')); FlxG.sound.cache(Paths.music('freakyMenu/freakyMenu'));
FlxG.sound.cache(Paths.music('girlfriendsRingtone/girlfriendsRingtone'));
// DEBUG BULLSHIT // DEBUG BULLSHIT
@ -379,9 +380,16 @@ class TitleState extends MusicBeatState
cheatActive = true; cheatActive = true;
var spec:SpectogramSprite = new SpectogramSprite(FlxG.sound.music); var spec:SpectogramSprite = new SpectogramSprite(FlxG.sound.music);
// add(spec);
Conductor.instance.forceBPM(190); FunkinSound.playMusic('girlfriendsRingtone',
{
startingVolume: 0.0,
overrideExisting: true,
restartTrack: true
});
FlxG.sound.music.fadeIn(4.0, 0.0, 1.0);
FlxG.camera.flash(FlxColor.WHITE, 1); FlxG.camera.flash(FlxColor.WHITE, 1);
FunkinSound.playOnce(Paths.sound('confirmMenu'), 0.7); FunkinSound.playOnce(Paths.sound('confirmMenu'), 0.7);
} }