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

Add HEY! song events to Tutorial

This commit is contained in:
anysad 2024-07-11 18:10:45 +03:00 committed by EliteMasterEric
parent 50b587e3b8
commit 18b795d4f7

View file

@ -1502,7 +1502,7 @@ class PlayState extends MusicBeatSubState
if (opponentStrumline != null) opponentStrumline.onBeatHit();
// Make the characters dance on the beat
danceOnBeat();
//danceOnBeat();
return true;
}
@ -1522,16 +1522,6 @@ class PlayState extends MusicBeatSubState
function danceOnBeat():Void
{
if (currentStage == null) return;
// TODO: Add HEY! song events to Tutorial.
if (Conductor.instance.currentBeat % 16 == 15
&& currentStage.getDad().characterId == 'gf'
&& Conductor.instance.currentBeat > 16
&& Conductor.instance.currentBeat < 48)
{
currentStage.getBoyfriend().playAnimation('hey', true);
currentStage.getDad().playAnimation('cheer', true);
}
}
/**