
I might not respond to posts as quickly as usual over the next few days, but will still check the forum and mails every now and then.
Here’s the canvas I used to create this animation: Merry Christmas.json (13.7 KB)
And here’s the project script that makes it blink:
// Changes between red and green every 500ms
while (true) {
setShared("green", !shared("green"));
await sleep(500);
}
// Or, if you'd like to sync it to the beat
onOscChange("/global/beatsPosition", ([beats]) => {
setShared("green", Number(beats) % 2 === 0);
}, true);
I hope you all are enjoying the holidays! ![]()
