Hello everyone,
I’m having problems sending more than one blob in a single OSC message with ofxOscMessage
The blobs contain very small arrays, so size is not the issue.
When I receive the messages (in Unity), after the first Blob, the offset index to the following arguments is corrupted. This occurs with two different OSC libraries on the receiving side (OSCCore and extOSC), which leads me to ask if perhaps it might be a problem with ofxOsc?
(Stepping through the code in ofx, however, I really cant see anything that might be wrong)
Has anyone successfully managed to add arguments to a message after a Blob arg?
e.g.
ofxOscMessage m;
m.addFloatArg(2.3f);
m.addBlobArg(b1);
m.addBlobArg(b2);
m.addIntArg(3);
best,
MM
(Windows 10)
2 posts - 2 participants