소스 검색

Mucking about with sound

tags/kitchen
Pete Shadbolt 3 년 전
부모
커밋
71ce321255
1개의 변경된 파일7개의 추가작업 그리고 2개의 파일을 삭제
  1. +7
    -2
      audio.scd

+ 7
- 2
audio.scd 파일 보기

@@ -9,8 +9,13 @@ s.waitForBoot {
OSCFunc.trace(true);

// Create the synth definition and load it
module = SynthDef.new("module", { arg hue, saturation, value;
Out.ar(0, SinOsc.ar(MouseX.kr(220, 1000)));
module = SynthDef.new("module", {
arg hue, saturation, value;
var oscillator, noise, filter;
oscillator = SinOsc.ar(MouseX.kr(220, 1000));
noise = WhiteNoise.ar(0.5);
filter = BPF.ar(noise, MouseX.kr(220, 1000), 0.3);
Out.ar(0, filter);
});
module.load(s);


불러오는 중...
취소
저장