WIP shit for nicer charting hehe

This commit is contained in:
Cameron Taylor
2020-11-13 18:49:20 -08:00
parent 9b91dc1b80
commit 87ec99dd1e
3 changed files with 18 additions and 10 deletions

View File

@ -34,7 +34,7 @@ class MusicBeatState extends FlxUIState
everyStep();
updateCurStep();
curBeat = Math.round(curStep / 4);
curBeat = Math.floor(curStep / 4);
super.update(elapsed);
}