brunoruviaro/A_Gentle_Introduction_To_SuperCollider

Add one more Pbind example

brunoruviaro opened this issue · 0 comments

...to show how to assign two keys as pairs (for example, very useful for pitch and duration)

(
Pbind(
	#[midinote, dur], Pseq([
		[60, 0.75],
		[67, 0.25]
	], inf),
	\amp, 0.1
).play;
)