25개 이상의 토픽을 선택하실 수 없습니다.
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							 | 
							- SinOsc o1 => Gain m => dac;
 - SinOsc o2 => m;
 - SinOsc o3 => m;
 - 
 - 0.1 => m.gain;
 - 500 => o1.freq;
 - 800 => o2.freq;
 - 900 => o3.freq;
 - 
 - OscRecv orec;
 - 5005 => orec.port;
 - orec.listen();
 - 
 - orec.event("block/update") @=> OscEvent update;
 - 
 - while (true) {
 -     update => now;
 -     <<< "got data" >>>;
 -     //update.getInt() => int i;
 -     //update.getInt() => int h;
 -     //update.getInt() => int s;
 -     //update.getInt() => int v;
 -     //<<< i >>>;
 -     //<<< h >>>;
 -     //<<< s >>>;
 -     //<<< v >>>;
 - }
 
 
  |