Always-on computer music
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
184B

  1. thisProcess.openUDPPort(5005);
  2. n = NetAddr.new("0.0.0.0", 5005)
  3. o = OSCFunc({ arg msg, time, addr, recvPort; [msg, time, addr, recvPort].postln; }, '/block', n);
  4. OSCFunc.trace(true);