decimal bpm for real!!
This commit is contained in:
@ -83,7 +83,7 @@ class ChartingState extends MusicBeatState
|
||||
**/
|
||||
var curSelectedNote:Array<Dynamic>;
|
||||
|
||||
var tempBpm:Int = 0;
|
||||
var tempBpm:Float = 0;
|
||||
var gridBlackLine:FlxSprite;
|
||||
var vocals:FlxSound;
|
||||
|
||||
@ -646,7 +646,7 @@ class ChartingState extends MusicBeatState
|
||||
|
||||
function sectionStartTime():Float
|
||||
{
|
||||
var daBPM:Int = _song.bpm;
|
||||
var daBPM:Float = _song.bpm;
|
||||
var daPos:Float = 0;
|
||||
for (i in 0...curSection)
|
||||
{
|
||||
@ -1187,7 +1187,7 @@ class ChartingState extends MusicBeatState
|
||||
else
|
||||
{
|
||||
// get last bpm
|
||||
var daBPM:Int = _song.bpm;
|
||||
var daBPM:Float = _song.bpm;
|
||||
for (i in 0...curSection)
|
||||
if (_song.notes[i].changeBPM)
|
||||
daBPM = _song.notes[i].bpm;
|
||||
|
Reference in New Issue
Block a user