What is the process for making an LFO module to retrigger with the TransportHandler transportChange callback?
And should I use the callback in the first place?
Context:
I always want the LFO synced to the DAW (phase and BPM)
Here's what I have so far, nothing fancy...
const var TH = Engine.createTransportHandler();
TH.setSyncMode(TH.InternalOnly);
TH.setLinkBpmToSyncMode(true);
//! Transport
TH.setOnTransportChange(SyncNotification, transportChanged);
inline function transportChanged(isPlaying)
{
// Handled here???
}
//! Tempo
TH.setOnTempoChange(SyncNotification, tempoChanged);
inline function tempoChanged(BPM)
{
}








)
