Skip to content

Commit d08e883

Browse files
authored
Merge pull request supercollider#4042 from jamshark70/topic/NodeProxyBeatAccurateHelp
Help: NodeProxy beat accurate scheduling help: fix clock/quant
2 parents 0107fc1 + 09385ec commit d08e883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

HelpSource/Classes/NodeProxy.schelp

+1-1
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ code::
711711
a = NodeProxy.audio(s,2);
712712
a.play;
713713

714-
a.clock = TempoClock(2.0).permanent_(true); // round to every 2.0 seconds
714+
a.quant = 2.0; // quantize changes to the next 2.0-beat multiple
715715
a.source = { Ringz.ar(Impulse.ar(0.5, 0, 0.3), 3000, 0.01) };
716716
a[1] = { Ringz.ar(Impulse.ar([0.5, 1], 0, 0.3), 1000, 0.01) };
717717
a[2] = { Ringz.ar(Impulse.ar([3, 5]/2, 0, 0.3), 8000, 0.01) };

0 commit comments

Comments
 (0)