dynamic camer, reformat chart, lvl2

This commit is contained in:
Cameron Taylor
2020-10-04 17:53:49 -07:00
parent de17188ae4
commit 9e1ccaf083
36 changed files with 92 additions and 36 deletions

View File

@ -16,4 +16,12 @@ class Conductor
public static var safeZoneOffset:Float = (safeFrames / 60) * 1000; // is calculated in create(), is safeFrames in milliseconds
public function new() {}
public static function changeBPM(newBpm:Int)
{
bpm = newBpm;
crochet = ((60 / bpm) * 1000);
stepCrochet = crochet / 4;
}
}