13 Jul
2012
13 Jul
'12
1:49 p.m.
On 13 July 2012 19:24, George Locke
Hi,
I still feel new to chuck, and I'm wondering if there's a UGen that will make a (linear/whatever) ramp from its current value to a specified new value over a specified time? Might there be a way to hack the GenX or Envelope objects to behave this way? (For ppl familiar with max/msp, I'm looking for something equivalent to line~)
That is exactly what Envelope does, when used like this; Step unity => Envelope e => whatever; 1 => unity.next; from there on you can set e.value, e.target and e.duration as you please. Hope that helps, Kas.