Hi it would be good if the Delay times on this fx offered sync mode as well as displayed the time in ms for unsynced mode instead of values like 2.0 3.0 etc
I suppose displaying time in ms for reverbs would be good as well.
Unless there is a value code out there what does 2.99 vs 3.51 mean?
repro Lyrebird delay fx sync mode and delay times in normal rate
-
- KVRian
- 784 posts since 29 Mar, 2016
- u-he
- 30216 posts since 8 Aug, 2002 from Berlin
The long unsynced delaytime is in seconds/4. Hence, at 4.0 it's one second, at 8.0 it's two seconds. Everything in between is scaled linearly.
The short unsynced delay time is the value * 30ms, and then 25ms deducted. This makes 5 ms the shortest delay (without modulation) and 215ms (out of my head) as max.
Here's the actual code:
The short unsynced delay time is the value * 30ms, and then 25ms deducted. This makes 5 ms the shortest delay (without modulation) and 215ms (out of my head) as max.
Here's the actual code:
Code: Select all
case 0: DelaytimeMS = -25.f + myParams->DelayTime * 30.f;
case 1: DelaytimeMS = myParams->DelayTime * 1000.f * 0.25f;
