| It's in SynthDef, but I would say that it should be placed also elsewhere. I by myself I've asked twice...
Best
-a- On Jul 27, 2009, at 3:23 PM, Andrew C. Smith wrote: Is there a help file that outlines these t_ and other types of special arguments? I've spent a while looking for it and can't seem to find it. All kinds of cmd-d didn't bring anything up. Andrew On Mon, Jul 27, 2009 at 4:34 AM, jesus gollonet< listas@xxxxxxxxxxxxxxxxx> wrote: great it works!
time to stop overlooking those funny t_ arguments.
cmd+shift+d 'ing t_trig now.
thanks a lot, dan.
best,
jesús.
Dan Stowell escribió:
Hi -
You need to know one of the secret tricks of supercollider ;)
Change the name of your trigger control from "trig" to "t_trig", and
you will find it works just like you want it to...
(Controls beginning with "t_" are assumed to be trigger-type controls
and treated slightly differently)
HTH
Dan
2009/7/27 jesus gollonet <listas@xxxxxxxxxxxxxxxxx>:
Hi all.
I'm stuck with what I believe to be a shamefully simple problem.
I have this simple playbuf synthdef
SynthDef(\pbf, { |out = 0, bufnum = 0, rate = 1, amp = 0.5, trig=0|
Out.ar(out,
Pan2.ar(
PlayBuf.ar(1, bufnum, BufRateScale.kr(bufnum) * rate, trig),
level:amp
)
)
}).memStore;
which I'm going to use for short percussive sounds, and I'd like to be able
to trigger it using Synth.set instead of creating a new Synth every time,
ie:
a = Synth(\pbf, [\bufnum,~b4])
// each time I do this I should hear it. but only hear it the first
time.
a.set(\trig,1)
a.set(\trig,1)
a.set(\trig,1)
the problem is that trig is only triggered when I change from <=0 to >0 so
I have to manually reset the trigger each time:
a.set(\trig,1)
a.set(\trig,0)
a.set(\trig,1)
and I've been looking for a way to auto reset the trig, but no luck yet...
any pointers?
Thanks a lot!
jesús.
_______________________________________________
sc-users mailing list
info (subscription, etc.):
http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: https://listarc.bham.ac.uk/marchives/sc-users/
search: https://listarc.bham.ac.uk/lists/sc-users/search/
_______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtmlarchive: https://listarc.bham.ac.uk/marchives/sc-users/search: https://listarc.bham.ac.uk/lists/sc-users/search/
-------------------------------------------------- Andrea Valle -------------------------------------------------- CIRMA - DAMS Università degli Studi di Torino -------------------------------------------------- " This is a very complicated case, Maude. You know, a lotta ins, a lotta outs, a lotta what-have-yous." (Jeffrey 'The Dude' Lebowski)
|