You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe this.$callback is defined alright, but somehow the events are not scheduled correctly. Needs further investigation.
cverb.param.output.set(1.0, 2, 1) also works but it only change abruptly.
This works as intended. param.set() is basically a simple wrapper of AudioParam automation methods. set(1, 2, 1) is identical to AudioParam.linearRampToValueAtTime(1, 2). If you don't have a previous time/value point, you can't generate a linear ramp. Instead, you get a jump instead.
I have some plans to redesign WAAX's parameter control. Feel free to throw your ideas!
This is more of a question.
How do I change output value of a plugin over time? I tried to use the following syntax but it seems like not working.
This goes into
GenericParam.prototype.set()
but does not work sincethis.$callback
is not defined.cverb.param.output.set(1.0, 2, 1)
also works but it only change abruptly.Cheers!
The text was updated successfully, but these errors were encountered: