xxxxxxxxxx
18
const oscPort = new osc.WebSocketPort({
url: "ws://localhost:8081",
});
oscPort.open();
function setup() {
createCanvas(640, 480);
}
function draw() {
background(0,0,0);
oscPort.send({
address: "/frameCount",
args: [frameCount],
});
}