1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-11-25 13:45:49 +00:00

Remove empty function.

This commit is contained in:
EliteMasterEric 2024-07-11 21:45:06 -04:00
parent 305ab3146f
commit 4a7545a0db

View file

@ -1501,9 +1501,6 @@ class PlayState extends MusicBeatSubState
if (playerStrumline != null) playerStrumline.onBeatHit();
if (opponentStrumline != null) opponentStrumline.onBeatHit();
// Make the characters dance on the beat
//danceOnBeat();
return true;
}
@ -1514,16 +1511,6 @@ class PlayState extends MusicBeatSubState
super.destroy();
}
/**
* Handles characters dancing to the beat of the current song.
*
* TODO: Move some of this logic into `Bopper.hx`, or individual character scripts.
*/
function danceOnBeat():Void
{
if (currentStage == null) return;
}
/**
* Initializes the game and HUD cameras.
*/