<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Retrigger LFO with transport]]></title><description><![CDATA[<p dir="auto">What is the process for making an LFO module to retrigger with the TransportHandler transportChange callback?<br />
And should I use the callback in the first place?</p>
<p dir="auto">Context:<br />
I always want the LFO synced to the DAW (phase and BPM)</p>
<p dir="auto">Here's what I have so far, nothing fancy...</p>
<pre><code>const var TH = Engine.createTransportHandler();

TH.setSyncMode(TH.InternalOnly); // &lt;- stupid me, needed External...
TH.setLinkBpmToSyncMode(true);

//! Transport
TH.setOnTransportChange(SyncNotification, transportChanged);
inline function transportChanged(isPlaying)
{
	
}

//! Beat
TH.setOnBeatChange(SyncNotification, beatChanged);
inline function beatChanged(beat, isNew)
{
	// Sync here???
}

//! Tempo
TH.setOnTempoChange(SyncNotification, tempoChanged);
inline function tempoChanged(BPM)
{
	
}
</code></pre>
]]></description><link>https://forum.hise.audio/topic/14923/retrigger-lfo-with-transport</link><generator>RSS for Node</generator><lastBuildDate>Tue, 14 Jul 2026 15:24:42 GMT</lastBuildDate><atom:link href="https://forum.hise.audio/topic/14923.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 14 Jul 2026 13:04:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Retrigger LFO with transport on Tue, 14 Jul 2026 14:26:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/3118">@Oli-Ullmann</a> Arfffff.... Don't bother... the temperature here is just melting my brain...<br />
I used <code>TH.InternalOnly</code> instead of <code>TH.ExternalOnly</code>, my eyes reading one thing and my brain another... It's my brain that is not in sync... <img src="https://forum.hise.audio/assets/plugins/nodebb-plugin-emoji/emoji/android/1f923.png?v=fba14f4754a" class="not-responsive emoji emoji-android emoji--rolling_on_the_floor_laughing" style="height:23px;width:auto;vertical-align:middle" title=":rolling_on_the_floor_laughing:" alt="🤣" /></p>
]]></description><link>https://forum.hise.audio/post/121968</link><guid isPermaLink="true">https://forum.hise.audio/post/121968</guid><dc:creator><![CDATA[ustk]]></dc:creator><pubDate>Tue, 14 Jul 2026 14:26:54 GMT</pubDate></item><item><title><![CDATA[Reply to Retrigger LFO with transport on Tue, 14 Jul 2026 14:17:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/449">@ustk</a><br />
Can't you just enable <code>TempoSync</code> and <code>ClockSync</code> in the LFO? It works for me with an FX plug-in.</p>
]]></description><link>https://forum.hise.audio/post/121967</link><guid isPermaLink="true">https://forum.hise.audio/post/121967</guid><dc:creator><![CDATA[Oli Ullmann]]></dc:creator><pubDate>Tue, 14 Jul 2026 14:17:07 GMT</pubDate></item></channel></rss>