bugfixes
This commit is contained in:
@ -51,4 +51,8 @@
|
|||||||
pwhite { arg repeats=inf;
|
pwhite { arg repeats=inf;
|
||||||
^Pwhite(this[0], this[1], repeats);
|
^Pwhite(this[0], this[1], repeats);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pseries { arg repeats=inf;
|
||||||
|
^Pseries(this[0], this[1], repeats);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -75,7 +75,9 @@ Boot {
|
|||||||
}, Server.default);
|
}, Server.default);
|
||||||
Event.addEventType(\buboEvent, {
|
Event.addEventType(\buboEvent, {
|
||||||
arg server;
|
arg server;
|
||||||
~buf = Bank(~sp)[~n];
|
if (~sp.notNil && ~n.notNil,
|
||||||
|
{ ~buf = Bank(~sp)[~n % Bank(~sp).buffers.size]; }
|
||||||
|
);
|
||||||
~type = \note; // back to note
|
~type = \note; // back to note
|
||||||
currentEnvironment.play;
|
currentEnvironment.play;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -26,7 +26,7 @@ f.vardel = {
|
|||||||
loop:loop, doneAction: 2);
|
loop:loop, doneAction: 2);
|
||||||
sig = sig * amp;
|
sig = sig * amp;
|
||||||
sig = Pan2.ar(sig * env, pan);
|
sig = Pan2.ar(sig * env, pan);
|
||||||
Out.ar(out, sig);
|
OffsetOut.ar(out, sig)
|
||||||
}).add;
|
}).add;
|
||||||
d.sampler = z;
|
d.sampler = z;
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user