We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi there i´m sending a message from one to another sketch and i want the receiving sketch to trigger an function everytime it receives a message.
could i call a void oscEvent that only trigger when a new message comes in? or is it easier to make a kind of if statement within draw?
Answers
If you are working and modifying the canvas, you should do it within draw(). This is the logic I would use:
Where the function your_received_data() refers to the oscEvent() function provided by your OSC session.
Kf