How to receive a bundle from Unreal Engine or any OSC Sender

Hi all,

I'm very new to using OpenStage and OSC :slight_smile: But I did get it working with UE. Both sending a single message to OpenStage as well as sending a simple message back to UE from OpenStage. They have 2 plugins for sending/receiving OSC messages.

But UE has a send bundle option, but I don't understand how to receive that bundle in OpenStage. Part of it stems from my limited understanding of bundles (I think it is just an array of information). But how do I access it in a script or custom module? Even if I can just some how print to the console for now would be amazing.

Thank you for the help!

Received bundles are unpacked by the server and the osc messages they contain are transmitted to the clients, there's nothing special to do with them in open stage control.

Ah ok good to know thank you. I appreciate it. I'm just doing some looking now, but do you know how to log all incoming messages in OSC?

Enabling the server's debug option will log all incoming / outgoing messages in the server's console.

Fantastic thank you for the help :slight_smile: