Static variables
staticread onlybeatsPerMeasure:Float
Number of beats per mesure (top number in time signature). Defaults to 4.
staticread onlycrochet:Float
Current Crochet (time per beat), in milliseconds. It should be crotchet but ehhh, now it's there for backward compatibility.
staticread onlydenominator:Float
How much value notes to divide for beat (bottom or divisor number in time signature). Only for a convinient way to access divisor instead of multiply by steps per beat.
View on GitHub
staticinvalidEvents:Array<ChartEvent> = []
Array of all events that have been rejected by the Conductor.
View on GitHub
staticonTimeSignatureChange:FlxTypedSignal<(Float, Float) ‑> Void> = new FlxTypedSignal()
staticread onlystepsPerBeat:Int
Number of steps per beat. Defaults to 4. Not a divisor number for time signature, it does the complete opposite. It's because CNE Conductor is based in sixteenth note instead of beat.
Static methods
View on GitHub
staticchangeBPM(bpm:Float = 100, beatsPerMeasure:Float = 4, stepsPerBeat:Int = 4):Void
View on GitHub
staticmapBPMChanges(song:ChartData):Void
Maps BPM changes from a song.
Parameters:
song | Song to map BPM changes from. |
---|