convert fnf bpm changes to ke bpm changes

This commit is contained in:
KadeDeveloper
2021-08-11 21:18:49 -07:00
parent 7c3b2860fc
commit ab948419c5
3 changed files with 31 additions and 4 deletions

View File

@@ -86,9 +86,6 @@ class MusicBeatState extends FlxUIState
var step = ((60 / data.bpm) * 1000) / 4;
var startInMS = (data.startTime * 1000);
var percent = (Conductor.songPosition - startInMS) / (data.length * 1000);
curDecimalBeat = data.startBeat + (((Conductor.songPosition/1000) - data.startTime) * (data.bpm / 60));
var ste:Int = Math.floor(data.startStep + ((Conductor.songPosition - startInMS) / step));
if (ste >= 0)