findBeat
Description​
Finds the currently played beat given a list of tracks and the current time.
- JavaScript
- C#
- Kotlin
findBeat(trackLookup: Set<number>, tick: number, currentBeatHint?: MidiTickLookupFindBeatResult | null): MidiTickLookupFindBeatResult | null
MidiTickLookupFindBeatResult? FindBeat(Set<double> trackLookup, double tick, MidiTickLookupFindBeatResult? currentBeatHint)
fun findBeat(trackLookup: Set<Double>, tick: Double, currentBeatHint: MidiTickLookupFindBeatResult?): MidiTickLookupFindBeatResult?
Parameter | Summary |
---|---|
trackLookupAll | The tracks indices in which to search the played beat for. |
tickAll | The current time in midi ticks. |
currentBeatHintAll | Used for optimized lookup during playback. By passing in a previous result lookup of the next one can be optimized using heuristics. (optional). |
Returns​
The information about the current beat or null if no beat could be found.