We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Issue migrated from SourceForge | ID: 1886415 | Submitted by 'jamshark70'] [http://sourceforge.net/support/tracker.php?aid=1886415]
SynthDef(\sin, { |freq = 440, amp = 0.2, out = 0| Out.ar(out, (SinOsc.ar(freq, 0, amp) * EnvGen.kr(Env.perc(0.01, 0.1), doneAction: 2)) ! 2); }).memStore;
// sound a = Synth(\sin);
// no sound s.makeBundle(0.2, { a = Synth(\sin); });
// sound s.latency = nil; p = Pbind(\freq, Pexprand(200, 800, inf), \amp, Pwhite(0.1, 0.3, inf), \delta, 0.125, \instrument, \sin).play;
p.stop;
// no sound s.latency = 0.1; p = Pbind(\freq, Pexprand(200, 800, inf), \amp, Pwhite(0.1, 0.3, inf), \delta, 0.125, \instrument, \sin).play;
The text was updated successfully, but these errors were encountered:
[Comment migrated from SourceForge | Submitted by 'cfrb']
Solved as of 3.2 RC1. However, there remains an issue with accuracy of the time-stamps because of _ftime()
Sorry, something went wrong.
Merge pull request #44 from ventosus/patch-1
69e0347
Update systems-interfacing-with-sc.md
improve readme, fix supercollider#44
b103368
No branches or pull requests
[Issue migrated from SourceForge | ID: 1886415 | Submitted by 'jamshark70']
[http://sourceforge.net/support/tracker.php?aid=1886415]
SynthDef(\sin, { |freq = 440, amp = 0.2, out = 0|
Out.ar(out, (SinOsc.ar(freq, 0, amp) * EnvGen.kr(Env.perc(0.01, 0.1),
doneAction: 2)) ! 2);
}).memStore;
// sound
a = Synth(\sin);
// no sound
s.makeBundle(0.2, { a = Synth(\sin); });
// sound
s.latency = nil;
p = Pbind(\freq, Pexprand(200, 800, inf), \amp, Pwhite(0.1, 0.3, inf),
\delta, 0.125, \instrument, \sin).play;
p.stop;
// no sound
s.latency = 0.1;
p = Pbind(\freq, Pexprand(200, 800, inf), \amp, Pwhite(0.1, 0.3, inf),
\delta, 0.125, \instrument, \sin).play;
p.stop;
The text was updated successfully, but these errors were encountered: